Hi,
i have a main application and there i create a popup panel...
from the popup panel i dispacth a custom event like this
var e1:CustomLoadEvent = new CustomLoadEvent("loadModule", true);
dispatchEvent(e1);
where loadModule is the type and the value true stands for bubbles..
then at the creationcomplete event within the main application i
create an eventlisteners for the event
addEventListener("loadModule", loadThisModule);
the loadThisModule function simple trace a string..
but it doesn't work!!Why?
Thanks in advance
Regards Lorenzo