Log in

View Full Version : Problem with loading to frames in IE



apostle
01-05-2008, 01:45 AM
I have a big problem. I made a navigation bar using flash, with nice animated buttons and all. I used the getUrl, which i placed to the actionscript of my every button (which are movieclips), in this manner:

on (release) {
getURL("http://www.mysite.my", window="mainFrame");

}

I have the navigational bar loading in my topframe, and it should open frames in the mainFrame. And in FireFox this works marvelously. But when i try the same in IE6, the buttons have no effect. The animations do play, but nothing happens when they are being pushed.

Can anybody tell me how can i fix this? :(

Medyman
01-05-2008, 01:52 AM
try this:


on (release) {
getURL("http://www.mysite.my", "mainFrame");
}

apostle
01-05-2008, 12:52 PM
Thanks mate for the quick answer. However, it seems, that my problem went away, when i uploaded the stuff to the net. Somehow IE didnt want to work with me, when i was previewing the site locally, even though FF did.

Medyman
01-06-2008, 03:37 PM
Thanks mate for the quick answer. However, it seems, that my problem went away, when i uploaded the stuff to the net. Somehow IE didnt want to work with me, when i was previewing the site locally, even though FF did.

ahh...the joys of web design. Don't you just love how browsers can be so unpredictable at times. Makes life interesting! ;)