Fullscreen, slide show option?

Hey gang,

First off, I want to thank all of the contributors here for helping out …I have learned so much.

Now to my question.

I have 10 jpegs.

Client has requested that we have a button that simply launches flash to FULL SCREEN MODE (takeover screen) and then it runs through an automated slide show of the 10 jpegs. Timing between photos could be whatever…say, 5 seconds each?

Any script ideas out there?

Thanks folks!

Kellys

to do fullscreen mode
put an empty movie clip on the main stage (in its own layer … for organizational purposes)

and attach the following script to it.


onClipEvent (load) {
	fscommand("fullscreen", "true");
}

as far as the slideshow.

you should put a preloader on this section and load it as a seperate movie so that the user understands they are loading large images (they should be larger than normal so the quality will be good when they take up the whole screen)

then just put pictures in keyframes and flash will play through them.

you could do an actionscript that counts the seconds and displays the next picture after a certain amount of time … but why

this is simple enough that in my humble opinion you should have a layer called pics and have pics in the keyframes and then put a bunch of frames in between them.

hope this helps =)

Thanks Shuga…this looks like a very simple solution…I’ll give it a try!!

Kellys