Re: [flexcoders] Cairngorm 2 - Event propagation problem

2006-08-17 Thread Thomas Rühl -akitogo-
Hi hemantkamatgi, just a few things I recognized: 1. When dispatching the Cairngorm event, you shouldn't create two instances of the LoginEvent here... just one and pass it! > // { var eventObject : LoginEvent = new LoginEvent(); > // CairngormEventDispatcher.getInstance().dispatchEvent(new L

RE: [flexcoders] Cairngorm 2 - Event propagation problem

2006-08-17 Thread Darren Houle
Have you inlcuded the front controller tag in your login.mxml? You should have a line in login.mxml that looks something like... 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 fi