I'm adding a MovieClip with with the following code in the main timeline:
var mcCiclo_01:mc_ciclo=new mc_ciclo;
function ciclo(event:MouseEvent):void{
addChild(mcCiclo_01);
}
I want to use a button inside that movieclip to link to an external web page. I was able to do that with dot notation if the movieclip was "fisically" in the main timeline but this way doesn't work.
I reckon this is the best practice. Any ideas would be appreciated.


Reply With Quote