Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Flash Button

Options
  • 24-03-2005 11:06pm
    #1
    Closed Accounts Posts: 939 ✭✭✭


    Iv created a flash movie AND menu to gowith it. Problem is i cant get the menu buttons to go to a url. Iv tried using

    on(release) {
    getURL(photo1.htm, "_self");
    }

    This is what i use for one of the buttons but it wont work. Any one tell me whats wrong or advice?


Comments

  • Registered Users Posts: 9,196 ✭✭✭RobertFoster


    Strangely enough, I was working on something similar yesterday. The error it throws up is "missing :" - I think you need to put in the full URL (http://www.yoursite.com/photo1.htm) I did and it worked for me.


  • Closed Accounts Posts: 4,655 ✭✭✭Ph3n0m


    or try

    on(release) {
    getURL("photo1.htm", "_self");
    }


  • Registered Users Posts: 9,196 ✭✭✭RobertFoster


    Ph3n0m wrote:
    or try

    on(release) {
    getURL("photo1.htm", "_self");
    }
    yeah that's the one, forgot the quotation marks :)


Advertisement