In Windows I can raise my app to stay on top of other apps.
i.e. if I set an api in windows for my app to "stay on top" no other app can cover it or move in front of it.
Is there a way to do this with LiveCode on Mac OS X Lion?
I've used the RaiseWindows which kind of pulls all the related stacks in my LiveCode project to the front until another app moves in front.
I'd like to RaiseWindows permenantly.
tia
Just found an old app with a tick box labled Palette This Stack
Code: Select all
on mouseup
if the mode of this stack is 4 then -- 1 = editable window 4 = palette
toplevel this stack -- Opens a stack in an editable (LiveCode IDE) window.
else
palette this stack -- Display a stack in a palette window
end if
end mouseup