can someone point me to a example of how to pass data in a cairngorm type event?  I'm trying the below with

package com.mycompany.events
{
    import com.adobe.cairngorm.control.CairngormEvent;
   
    public class LoadScorecardEvent extends CairngormEvent
    {   
        public static var EVENT_LOAD_SCORECARD: String = 'LoadScorecardEvent';
         public var scorecardId:Number;
        /**
         * The constructor,
         */
        public function LoadScorecardEvent( )
        {
            super( EVENT_LOAD_SCORECARD );
           
        }
       
    }
   
}

then in a view dispatching like so
var devent : LoadScorecardEvent = new LoadScorecardEvent(  );
                devent.scorecardId = 5;
                    CairngormEventDispatcher.getInstance().dispatchEvent( devent );

and in the command I have

public function execute( eventHere : CairngormEvent ) : void
       {
          var del : MainDelegate = new MainDelegate( this );
          del.getScorecard( eventHere.scorecardId );
         
       }

But this bombs out with a error about scorecardId not in eventHere.

DK


--
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it? __._,_.___

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





SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS




__,_._,___

Reply via email to