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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Flash Button

  • 24-03-2005 10: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, Registered Users 2 Posts: 9,284 ✭✭✭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, Registered Users 2 Posts: 9,284 ✭✭✭RobertFoster


    Ph3n0m wrote:
    or try

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


Advertisement