// 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(); } } } HelloKitchenSync