Page 1 of 1

stack property "float"

Posted: Fri Apr 16, 2010 2:34 pm
by churchken
Hi,

Is it possible to change the stack property, "float above", after the stack is loaded?

For example, a checkbox that would allow the user to turn this property "on" or "off" while the stand alone executable is running. If there is a "set property" value for this stack feature, I've certainly come up dry trying to find it in the documentation.

Thanks in advance for any ideas.

Regards,
Ken

Re: stack property "float"

Posted: Fri Apr 16, 2010 2:49 pm
by Klaus
Hi Ken,

"the systemwindow of stack XYZ" is the property you want to set.
This can be true or false, so very well suited for a checkbox!

Like this in the script of the checkbox:

Code: Select all

on mouseup
  set the systemwindow of stack "XYZ" to the hilite of me
end mouseup
Best

Klaus