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!

back forward history buttons in flash

Status
Not open for further replies.

mjay1

Technical User
Sep 25, 2004
2
GB
Can anyone help?

been up all night trying to sort this out.

Im trying to make history buttons (Back/Forward) in swf files and want to link them to my dreamweaver pages.

been looking around and have found someone talking about (history.go)...! Im a bit new to thi,s so I think I need things spelt out.

Hope someone can help
Cheers
Matt
 
if you have a button:

to go back:

Code:
on(press){
    getURL("javascript:history.go(-1);","_self");
}

to go forward:

Code:
on(press){
    getURL("javascript:history.go();","_self");
}


Regards,

Martin

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

Part and Inventory Search

Sponsor

Back
Top