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
//No easing is called "Linear" | |
Tweenlite.to(target, 1, {param:value, ease:Linear.easeNone}); |
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
import flash.events.Event; | |
import flash.net.URLLoader; | |
import flash.net.URLRequest; | |
import flash.display.Loader; | |
private var myXML:XML; | |
// pass the path to the xml, and the function to execute once it's loaded | |
private function loadXML (path:String, nextFunc:Function):void | |
{ |
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
foreach(var kvp in delegateLookup){ | |
Debug.Log("<color=yellow>" +kvp.Key +"</color>"); | |
Debug.Log("<color=yellow>" +kvp.Value +"</color>"); | |
} |