Is there any way by which I can make my button work, no matter in which scene or frame it is. Is there any way by which i can call that Event Listener to another frame for that particular instance?
for example:
I have a button home_btn
, I want this button to work in all scenes, without changing it's instance name. I already added an Event listener in first scene, but it doesn't work,
In another frame or scene.
Below is the code.
home_btn.addEventListener(MouseEvent.CLICK, process_it);
function process_it(event:MouseEvent):void
{
nextFrame();
}
I don't know how to use dispatch event function for my button. // This only works for that particular frame.