You know, I find it fascinating that it never seems to work that way on 'nixjacque wrote: Tue Feb 12, 2019 6:08 pm It's possible to collapse whole groups. The basic idea is to lock the screen, set the height of the group to something small, and unlock the screen. You can add an animation effect when unlocking if you want.
The minute I added lock and unlock screen statements, the visual effects went bye-bye altogether, where as when I put just -
Code: Select all
// button shrink code...
on mouseUp
hide group "flowText" with visual effect shrink to top
end mouseUp
// button grow code...
on mouseUp
show group "flowText" with visual effect reveal down
end mouseUp

