Simple Flash linking issue (I think!) - Help!

Status
Not open for further replies.

sticker

New Member
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:

Code:
     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();
 
Status
Not open for further replies.
Top