Code: Select all
close card "xxx" of stack "zzz"
What is the exact syntax please ?
Note: I don't want to close the stack "zzz" but only the card "xxx" which is in it.
Thanks,
Regards, J-P.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
close card "xxx" of stack "zzz"
Code: Select all
set the visible of card "xxx" to false
Hi Jean-Paul,
Code: Select all
on mouseUp
go next
end mouseUp
Code: Select all
on mouseUp
go card "K2"
if the mark of card "K2" is true then
go card "K3"
end if
end mouseUp
Code: Select all
on openCard -- it's the card "xxx"
lockScreen
-- init all preferences
go to card "yyy" of this stack
-- close, hide, burn yourself and by by!
unlock screen
Possibly "lockScreen" that should be "lock screen". Not sure if it makes a difference, but it kind of should...
This is a good way to "hide" a card. Go somewhere else.by going to card "yyy" you have already closed card "xxx".