Message 1 of 3
Help a noob pls
Not applicable
05-08-2010
11:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi guys I've been sitting here fixing my script and can no longer see the forest for the trees.
The following code uses two radiobutton to decide to freeze or unfreeze planes
and I can get it freeze them but when I add more code to unfreeze them I get errors
could someone be kind enough to point me in the right direction.......
before I take a chainsaw to those bloody trees :(
Thanks Luke
The following code uses two radiobutton to decide to freeze or unfreeze planes
and I can get it freeze them but when I add more code to unfreeze them I get errors
could someone be kind enough to point me in the right direction.......
before I take a chainsaw to those bloody trees :(
Thanks Luke
on freezeMe pressed do
(
MyArray = ($*_Plane as array)
for i = 1 to MyArray.count do
(
if fFreeze.state == 1 then
select $*_Plane
freeze $*_Plane
else
if fFreeze.state == 2 do
actionMan.executeAction 0 "283" -- Tools: Unfreeze All
unfreeze objects
)
)