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
Professional Software Development Tools
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
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