Have you inlcuded the front controller tag in your login.mxml? You should have a line in login.mxml that looks something like...
<control:ApplicationFrontController id="applicationFrontController" /> Without this line your program would still compile, but there wouldn't be a front controller to "hear" the cairngorm events. Other than that your code looks fine. Darren >From: "hemantkamatgi" <[EMAIL PROTECTED]> >Reply-To: [email protected] >To: [email protected] >Subject: [flexcoders] Cairngorm 2 - Event propagation problem >Date: Thu, 17 Aug 2006 05:20:25 -0000 > >Hi, > >I am trying to use Cairngorm 2 framework with Flex 2. >This issue is that the event (login) does not seem to reach the >FrontController. >I am listing my application files with the significant code snippets: >I have been struggling with this for the past 2 days but aint seem to >figure out the problem. > >1) ApplicationFrontController.as > >// addCommand("login", LoginCommand); > >2) LoginCommand.as //implements Command > >//public function execute(event:CairngormEvent):void > >3) LoginEvent.as //extends CairngormEvent > > //public function LoginEvent() > //{ > //super("login"); > //} > >4) Login.mxml > >// public function doLogin():void >// { var eventObject : LoginEvent = new LoginEvent(); >// CairngormEventDispatcher.getInstance().dispatchEvent(new LoginEvent()); >// } -- 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/

