HelloKitchenSync
NOTE: This
♥0 |
Line 15 |
Modified 2010-01-21 16:57:10 |
MIT License
archived:2017-03-10 17:43:56
ActionScript3 source code
/**
* Copyright mimshwright ( http://wonderfl.net/user/mimshwright )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/dnCs
*/
// NOTE: This
package {
import flash.display.Sprite;
import org.as3lib.kitchensync.KitchenSync;
import org.as3lib.kitchensync.action.KSTrace;
[SWF(width="500", height="500", frameRate="50", backgroundColor="#FFFFFF")]
public class HelloKitchenSync extends Sprite {
public function HelloKitchenSync()
{
super();
KitchenSync.initialize(this);
var action:KSTrace = new KSTrace ("Hello, world! Sorry I'm late.", 5000);
action.start();
}
}
}