PDA

View Full Version : back button ?


sky_doq
01-13-2001, 08:41 PM
I'va a question , how to create a back button with flash yust like the browser has ??

JJ

Strok
01-13-2001, 09:35 PM
So far as i know it is not possible

you can try:

on (release) {
getURL ("javascript:history.back()");
}

But it works just on second click :(

Strok
01-13-2001, 09:39 PM
Sorry
It work now !!! :)


on (release) {
getURL ("javascript:history.back()");
}
on (press) {
getURL ("javascript:history.back()");
}

sky_doq
01-15-2001, 08:46 PM
Thnx for your help, now if people don't want to be on my flashsite they can use my 'go back button' and it also is for my flashbrowser.

JJ