Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

I wish to load an external swf file from the internet- in a cloud storage- into my animate as3 gameo

New Here ,
May 11, 2020 May 11, 2020

I wish to load an external swf file from the internet- in a cloud storage- into my animate as3 gameo

TOPICS
ActionScript , Code , How to , Import and export , Missing feature , Other , Performance
652
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 11, 2020 May 11, 2020
LATEST

use the loader class:

 

var loader = new Loader();

loader.load(new URLRequest("http:// etc to your swf file.swf"));

addChild(loader();

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines