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
stack property "float"
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: stack property "float"
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:
Best
Klaus
"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
Klaus