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

What is the substitute as3 codde for "on (release) { loadMovie ("MLA.swf",this);"

New Here ,
Oct 12, 2015 Oct 12, 2015

What is the substitute as3 codde for "on (release) {   loadMovie ("MLA.swf",this);"

TOPICS
ActionScript
217
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
Enthusiast ,
Oct 12, 2015 Oct 12, 2015
LATEST

Something like:

myButton.addEventListener(MouseEvent.MOUSE_UP, buttonClicked, false, 0, true);

var ldr:Loader = new Loader();

function buttonClicked(e:MouseEvent):void

{

    ldr.load(new URLRequest("MLA.swf""));

     addChild(ldr);

}

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