Andrew Westberg
unread,Nov 19, 2009, 4:26:00 PM11/19/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Swiz Framework
In my mediator, I'm trying to pass along a property that's type
Object. Inside the mediator, instead of the raw Object, I get a copy
of the event itself. Any idea what's going on?
[Mediate(event="WorkstationStatusEvent.WORKSTATION_STATUS_UPDATED",
property="workstationInfo")]
public function handleWorkstationStatusUpdates
(workstationInfo:Object):void
{
//in here, workstationInfo is of type WorkstationStatusEvent instead
of the workstationInfo Object property ON the event
}
-Andrew