Files
SLikeNet/Samples/RoomsBrowserGFx3/Resources/GlobalNotifications.as
2025-11-24 14:19:51 +05:30

9 lines
275 B
ActionScript

import flash.external.*;
ExternalInterface.addCallback("c2f_NotifyServerConnectionLost", this, c2f_NotifyServerConnectionLost);
function c2f_NotifyServerConnectionLost(reason:String):Void
{
trace("Server connection lost. Reason=" + reason);
gotoAndStop("Main");
}