Created
August 30, 2009 14:10
-
-
Save aqubi/177982 to your computer and use it in GitHub Desktop.
This file contains 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 function compileErrorTest():void { | |
var timer:Timer = new Timer(1000); | |
timer.addEventListener(TimerEvent.TIMER, function onTick(event:Event):void { | |
var httpService:HTTPService = new HTTPService(); | |
httpService.addEventListener(ResultEvent.RESULT, | |
function http(event:ResultEvent):void { | |
httpService.removeEventListener(ResultEvent.RESULT, http); | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment