Also (excusing my ignorance here...


Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
...
set the iconic of stack "xyz" to true
...
Title bar...tut!control/name/window bar (what is it's official name?!)
Code: Select all
on preOpenStack
set the decorations of this stack to "minimize"
hide title
end preOpenStack
Code: Select all
--in the stack script
on uniconifyStack
set the decorations of this stack to empty
end uniconifyStack
Code: Select all
--in the minimise button script
on mouseUp
lock screen --I still see a momentary animation of the window frame shrinking to the taskbar even so
set the decorations of this stack to Title --or default
set the iconic of this stack to true
end mouseUp
They were the days! (Or not, depending how you look at it...You must be about my generation there gyro!
Code: Select all
on mouseUp
set the iconic of this stack to true
end mouseUp