i've been stuck making a new flash starting animation for my website for days now,
its meant to play a little animation then when the "enter" button appears you click it and it links to the website,
the problem is that the flash animation won't start with the stop(); command at the start of the action script, even when its on autoplay, if i put a start(); command at the start instead, the animation will start automactically but the "enter" url button will stop working, its doing my head in, been throught loads of online tutorals it its still not working, i've only been using flash for a week so can u help me out?
when the action script looks like this the url will work but it won't auto play and loops aswell, i've changed the publish settings but that doesn't work -
stop();
import flash.events.MouseEvent;
var getAndydesign:URLRequest=new URLRequest(
http://www.andrewconnellydesign.co.uk);
//---B url---\\
B_btn.addEventListener(MouseEvent.CLICK, bClick);
function bClick(event:MouseEvent):void{
navigateToURL(getAndydesign);
}
//---g--\\\
G_btn.addEventListener(MouseEvent.CLICK, gClick);
G_btn.addEventListener(MouseEvent.MOUSE_OUT, gOut);
function gClick(event:MouseEvent):void{
gotoAndStop("getpic");
}
function gOut(event:MouseEvent):void{
gotoAndStop(67);
}