Results 1 to 4 of 4

Thread: Problem with loading to frames in IE

  1. #1
    Join Date
    Jan 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Problem with loading to frames in IE

    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?

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    try this:

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

  3. #3
    Join Date
    Jan 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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.

  4. #4
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by apostle View Post
    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!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •