Skip to content

Instantly share code, notes, and snippets.

@tdavies
Created March 14, 2012 16:37
Show Gist options
  • Save tdavies/2037708 to your computer and use it in GitHub Desktop.
Save tdavies/2037708 to your computer and use it in GitHub Desktop.
Flash asset mediator
public class ExampleMediator extends Mediator{
[Inject]
public var view:Asset;
private var _viewController:ViewController;
override public function onRegister():void {
_viewController = new ViewController(view);
_viewController.setTitle("test");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment