Shoutbox

Flash header - Clicking button reloads whole header :( - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Flash header - Clicking button reloads whole header :( (/showthread.php?tid=77651)

Flash header - Clicking button reloads whole header :( by M73A on 09-21-2007 at 08:08 AM

i've got a flash header for this thing im working on... but when you click one of the buttons it reloads the whole thing from the start...

argh whilst typing this i figured out its because it loads a whole new page... the new page having a new header, is it possible to link the buttons to a frame in flash? ta

the current button code i have is:

code:
on (rollOver) {
    gotoAndPlay("01");
}
on (releaseOutside, rollOut) {
    gotoAndPlay("02");
}
on (release) {
    getURL("index-3.html");
}


what do i need to change so it is the equivalent to <a target="frame" src=http.....>
RE: Flash header - Clicking button reloads whole header :( by YottabyteWizard on 09-21-2007 at 08:18 AM

code:
getURL("index-3.html","_blank");

RE: Flash header - Clicking button reloads whole header :( by M73A on 09-21-2007 at 08:18 AM

thanks! i know NOTHING about flash.. lol