Ok so I'm designing a site for a band
it looks like this at the moment: link if you're using Safari you'll noticed it works fine.. any other browser though including IE and firefox and the flash button links will open links in new windows and NOT in the iframe where i want them.
does anybody know what I have to do to make ie and firefox understand i want the target to be "iframe" not "_blank" or whatever it's doing now?
in flash the buttons have this action:
on (release) {
getURL("members.html", "iframe");
} which only works in safari
my news button however has this action:
button.onPress = function(){
getURL("news.html", "iframe");
} (as suggested for another person who had the same problem at a different forum) which gives an output error and does nothing in any browsers
thanks in advance.
EDIT: Nevermind i wasn't specifiying iframe name="iframe", problem solved.
it looks like this at the moment: link if you're using Safari you'll noticed it works fine.. any other browser though including IE and firefox and the flash button links will open links in new windows and NOT in the iframe where i want them.
does anybody know what I have to do to make ie and firefox understand i want the target to be "iframe" not "_blank" or whatever it's doing now?
in flash the buttons have this action:
on (release) {
getURL("members.html", "iframe");
} which only works in safari
my news button however has this action:
button.onPress = function(){
getURL("news.html", "iframe");
} (as suggested for another person who had the same problem at a different forum) which gives an output error and does nothing in any browsers
thanks in advance.
EDIT: Nevermind i wasn't specifiying iframe name="iframe", problem solved.