Changeset View
Changeset View
Standalone View
Standalone View
support/aphlict/client/src/Aphlict.as
| Show All 36 Lines | public class Aphlict extends Sprite { | ||||
| final protected function error(error:Object):void { | final protected function error(error:Object):void { | ||||
| this.externalInvoke('error', error.toString()); | this.externalInvoke('error', error.toString()); | ||||
| } | } | ||||
| final protected function log(message:String):void { | final protected function log(message:String):void { | ||||
| this.externalInvoke('log', message); | this.externalInvoke('log', message); | ||||
| } | } | ||||
| final protected function setStatus(status:String):void { | |||||
| this.externalInvoke('status', {type: status}); | |||||
| } | |||||
| } | } | ||||
| } | } | ||||