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.....>