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
/** | |
* User: tom | |
* Date: 14/05/12 | |
* Time: 14:46 | |
*/ | |
package { | |
import org.osflash.signals.Signal; | |
import flash.events.TimerEvent; | |
import flash.utils.Timer; |
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
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"); |