Cze,
Mam problem z animacja mouseover, out. Zerknijcie tu: http://www.elbr.pl/flash.html . Po szybkim przejechaniu przez obszar 'hit' animacja zatrzymuje sie, ja chcialbym aby dochodzila do konca. Macie moze jakies pomysly jak ten problem rozwiazac?
ActionScript 3.0
//doswietlacze//
btn_1.addEventListener(MouseEvent.MOUSE_OVER,btnover);
btn_1.addEventListener(MouseEvent.MOUSE_OUT,btnout);
btn_1.addEventListener(MouseEvent.CLICK,btnclick);
function btnover(event:MouseEvent):void{
mc_1.gotoAndPlay (11);
}
function btnout(event:MouseEvent):void{
mc_1.gotoAndPlay (20);
}
function btnclick(event:MouseEvent):void{
navigateToURL(doswietlacze, "_self");
}