Copy link to clipboard
Copied
hi
I publish my app from adobe animate with ads
I want all users to be required to connect to the internet to start the application.
thanks
Copy link to clipboard
Copied
load something from your server.
Copy link to clipboard
Copied
thanks
how can I do
Copy link to clipboard
Copied
use a loader and complete listener. don't start your app until/unless the complete listener function is called.
Copy link to clipboard
Copied
can you give me example
Copy link to clipboard
Copied
var ldr:Loader = new Loader();
var ldr_info:LoaderInfo = ldr.contentLoaderInfo;
ldr.load(new URLRequest("https://www.wikihow.com/images/thumb/f/fc/Get-the-URL-for-Pictures-Step-1-Version-6.jpg/aid597183-v4..."));
ldr_info.addEventListener("complete",completeF);
function completeF(e:Event){
// start your app
}