stack property "float"

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
churchken
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 66
Joined: Sun Apr 15, 2007 2:54 pm

stack property "float"

Post by churchken » Fri Apr 16, 2010 2:34 pm

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
Ken

Klaus
Posts: 14198
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: stack property "float"

Post by Klaus » Fri Apr 16, 2010 2:49 pm

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

Post Reply