GlobalNotifications.as 275 B

12345678
  1. import flash.external.*;
  2. ExternalInterface.addCallback("c2f_NotifyServerConnectionLost", this, c2f_NotifyServerConnectionLost);
  3. function c2f_NotifyServerConnectionLost(reason:String):Void
  4. {
  5. trace("Server connection lost. Reason=" + reason);
  6. gotoAndStop("Main");
  7. }
粤ICP备19079148号