Over 10 years of community discussion and knowledge are maintained here as a read-only archive.
Facade.getInstance(masterName);
public function sendApplicationNotificaction(key:String, noteBody:Object):void;
public sendApplicationNotificaction(key:String, noteBody:Object):void{ dispatchEvent(new CustomNoticeEvent(CustomNoticeEvent.NOTICE, key, noteBody);}
hoge.addEventListener(CustomNoticeEvent.NOTICE, onApplicationNotice);private function onApplicationNotice(event:CustomNoticeEvent):void{ sendNotification(event.key, event.noteBody);}