PDA

View Full Version : Activating a slideshow


Jamaica
11-11-2005, 01:10 PM
Hi,

I am a recent owner of 6.0, and I was trying to let a 12-picture slideshow play continuously from slide to slide after the needed page jumps have been inserted. I tried some options, but nothing has worked as of yet. Any help is appreciated!

JA

yosik
11-12-2005, 10:36 AM
Jamaica,

Put your 12 images in the Image directory, and name them pic1.jpg, pic2.jpg, etc...
Put an Image object (named Image1) on your page, then,

In the Page onTimer event, add the following actions:
i=1+1;
if i > 12 then
i=1;
end
Image.Load("Image1", "AutoPlay\\Images\\pic"..i..".jpg");

In the Page onShow event, add the following action:
Page.StartTimer(3000);

Change 3000 (ms) to the value you want for the picture duration on screen.


Good luck

Yossi