due to heavy spamming in the forum you need seven postings before you can post links and attachments.
And if you want to post your stack here, please ZIP it first.
In the meantime you could show us your script(s).

Best
Klaus
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Really? Me? No surely not?heavy spamming
Why, forbye?I am still trying to implement a single control that, when held down, flips through all the cards in a stack.
Despite claims LiveCode is NOT modern HyperCard, it has dumped somethings that are outmoded and, frankly, inefficient.the original Hypercard stack
Since you use SEND IN TIME, make sure your MOUSEUP deletes any remaining SEND messages.if I held the mouse down the card flipping continued but on mouseUp it was not stopping the animation once it got going
Code: Select all
on mouseUp
put 2 into KARD
repeat until KARD >10
go to card KARD
wait 15 ticks
add 1 to KARD
end repeat
go to card 1
end mouseUp