Code: Select all
on openStack
palette me
end openStack
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on openStack
palette me
end openStack
try:richmond62 wrote: ↑Thu Apr 25, 2024 4:41 pmI should like a main stack to appear as a palette, but this in the stack script does nothing:Code: Select all
on openStack palette me end openStack
Code: Select all
on openStack
palette this stack
end openStack
Code: Select all
on mouseUp
palette me
end mouseUp
Code: Select all
on mouseUp
palette me
end mouseUp
I’ve always useddunbarx wrote: ↑Thu Apr 25, 2024 8:19 pmWell, more complicated than I thought.
If your handler is in the stack script, it does not work. The openStack handler fires but nothing happens. But if it is this in the stack script:it work fine if you click on the card window.Code: Select all
on mouseUp palette me end mouseUp
Craig
Code: Select all
Set the style of this stack to “palette”
Best of all, the style property is persistent. Set it once, save it, and that's the mode it'll open in forever.stam wrote: ↑Fri Apr 26, 2024 5:58 amI’ve always usedand it always works fine in preOpenStackCode: Select all
Set the style of this stack to “palette”
FourthWorld wrote: ↑Fri Apr 26, 2024 6:39 amBest of all, the style property is persistent. Set it once, save it, and that's the mode it'll open in forever.
Code: Select all
if the optionKey is not down then…