Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Powerpoint style thing in Flash - Newbie! need help! 1

Status
Not open for further replies.

Pauly1210

Programmer
May 20, 2003
2
GB
Hi - I urgently need to produce a simple powerpoint style presentation in Flash - you know, a few screens and some buttons linking them all together...

only I hardly know any Flash!

Please please can some kind sole out there provide me with a template or example for me to work with?

any help would greatly appreciated!

thanks!
 
you could do this a number of ways, the easiest is to use a different frame for each information.

on each frame put stop(); in the actions frame.

then make to simple buttons. e.g. previous and next.

then the code for the button would be:

Code:
//previous button

on(press){
    nextFrame();
}

//next button

on(press){
    prevFrame();
}

you put these on every frame that you want to link.

this what you where after?

Regards,

Martin

Gaming Help And Info:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top