I have a screen where a user can click an item in a List which pops
open a TitleWindow containing a form to update and save the data of
the items clicked. When the user clicks "Save"...the dispatched event
never reaches the FrontController (with the code like so):

// MyEvent extends CairngormEvent
var event : MyEvent = new MyEvent ( eventVO );
dispatchEvent( event );

HOWEVER...it does work if I do this. 

var event : MyEvent = new MyEvent ( eventVO );
Application.application.dispatchEvent( event );

It seems like the core Application can't pick up events dispatched
from a TitleWindow. Is this a known issue or am i missing something??

Thanks.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to