I wonder if this is possible.
I am trying to construct my card 1 to minimize the size of my app.
So i want to show / hide certain groups (menu) on the mid transition of the flip effect.
What i have here, gives the user a dodgy look at the menu switching out.
If i could run the two lines that show the new menu and hide the old, right in the middle of the flip effect. It would look like there was an actual card change.
Code: Select all
on mouseUp
visual effect flip right
go card 1
wait 500 milliseconds -- deos not work as the wait does not begin until after transition
hide group "UploadMenu" -- i want to run these two lines mid transition
show group "MainMenu"
put "Upload was canceled" into field "timeStamp"
end mouseUp
Kind regards
Gary