A button that clicks on any layer even with filters on top?
Hey guy. Im new to actionscript. The button click works, but the current project I have is colored by overylays on top. Apparently the AS code only works if there aren't any layers on top so far.
Is there a way to tell it to code on the top or any layer?
Im using this code BTW.
stop();
instanceName.addEventListener(MouseEvent.CLICK, functionName);
function functionName(event:MouseEvent):void
{
play();
}
