Faking Multiple Windows
Posted: Sat Mar 31, 2018 9:25 am
How about being able to display multiple cards in multiple windows?
Can't be done, as such, yet, in LiveCode.
But a "dark night of the soul" yieldeth this:
Can't be done, as such, yet, in LiveCode.
But a "dark night of the soul" yieldeth this:
Code: Select all
on mouseUp
clone stack "STAK"
set the name of the topStack to "STAK2"
set the left of stack "STAK2" to the right of stack "STAK"
set the top of stack "STAK2" to the top of stack "STAK"
go to card 2 of stack "STAK2"
end mouseUp