I've got 16 or so images that I want shown at, say, 5 tick intervals.
Images are named "c1.jpg", "c2.jpg", etc.
Hi Judy,
The most straightforward approach:
repeat with x = 1 to the number of images show image x wait 5 ticks hide image x end repeat
For those who eschew "wait":
on showAnImage
constant waitingPeriod=5 -- play with interval here
local imageNumber=0
lock screen
if imageNumber > 0 then hide image imageNumber -- maybe you want the last image to remain visible?
add 1 to imageNumber
if imageNumber <= the number of images then
show image imageNumber
send showAnImage to me in waitingPeriod ticks
end if
unlock screen
end showAnImage
--
Rob Cozens CCW, Serendipity Software Company http://www.oenolog.net/who.htm
"And I, which was two fooles, do so grow three; Who are a little wise, the best fooles bee."
from "The Triple Foole" by John Donne (1572-1631) _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
