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

Quick flash linking question

Options
  • 08-09-2009 7:06pm
    #1
    Registered Users Posts: 3,056 ✭✭✭


    Hey all,

    I enclose a link to my fla file below:
    www.statesidecustom.com/main.fla

    The problem is simple - I cannot add a hyperlink to the four main navigation images...

    The possible problem might be that I am using the head from a full flash template and want to simply add .html page links to the four boxes when clicked on.

    Any help would be very much appreciated!

    To make things a little easier here's the code for one of the buttons - linking to a seperate flash page now, but I want to change the link to a html page:
    on (rollOver) {
        if (_root.link<>1) {
            this.gotoAndPlay("s1");
        }
    }
    on (releaseOutside, rollOut) {
        if (_root.link<>1) {
            this.gotoAndPlay("s2");
        }
    }
    on (release) {
        if (_root.link<>1 and _root.flag_animation1 == 1) {
            _root.flag_animation1 = 0;
            _root.menu["item"+_root.link].gotoAndPlay("s2");
            _root.link = 1;
            _root.scrollPART.gotoAndStop(2);
            _root.scroller.scroller.gotoAndStop(3);
            _root.gates.play();
    


Comments

Advertisement