On Jun 17, 2004, at 3:45 PM, [EMAIL PROTECTED] wrote:
Hi , is there a way to disable a whole stack or all objects of a stack and enable them after that ?
I don't know off-hand if every object has a disabled state but you could try something like this:
on disableAll
repeat with i = 1 to the number of controls
set the disabled of control i to true
end repeat
end disableAllon enableAll
repeat with i = 1 to the number of controls
set the disabled of control i to false
end repeat
end enableAll
Regards,
Howard Bornstein ----------------------- D E S I G N E Q www.designeq.com _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
