9 lines
203 B
ActionScript
9 lines
203 B
ActionScript
import flash.external.*;
|
|
|
|
returnToTitleButton.addEventListener("click", this, "ReturnToTitle");
|
|
function ReturnToTitle()
|
|
{
|
|
// Disconnect from the server
|
|
ExternalInterface.call("f2c_Logoff");
|
|
}
|