This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[EventHandler( event="UserEvent.*", properties="user" )] | |
public function handleUserEvents( user:User ):void | |
{ | |
// do stuff | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Inject Bean Property (The property named "userCollection" from the bean named "userModel" is injected) | |
[Inject( source="userModel.userCollection" )] | |
public var users:ListCollectionView; |
NewerOlder