Re: create a slideshow?

Arto Leskinen ((no email))
Mon, 11 Oct 93 23:52:16 EET

>
> Hello,
>
> i want to show all cards of a stack after maybe 5 seconds. I used the
> "wait for 5 seconds"
> "go to next card"
> in the "on openCard" event but it did not work. After waiting 5 seconds the
> next card was showed without showing the card which sended the event.
>
> Can i see the script of a card with the above event in the scipt directly
> (that means without opening the card)?
>
You can put wait in idle handler or in openStack handler
-- Shift key gives you change to modify script or card
on idle
if shiftKey is not down then
wait 5 seconds
go to next card
end if
end idle

on openStack
repeat number of cards
wait 5 seconds
go to next card
end repeat
end openStack

Arto Leskinen
aleskine@cs.hut.fi