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

equivalent as3 code not working. Memoria1 = _root.attachMovie("Memoria", "side", 16, {_x: 0, _y: 250});

Contributor ,
Mar 01, 2016 Mar 01, 2016

Memoria1 = _root.attachMovie("Memoria", "side", 16, {_x: 0, _y: 250});

i converted like this . but not working

  var Memoria1 : Memoria = new Memoria();

  backmain.x=0;

  backmain.y=250;

  addChild(Memoria1);

TOPICS
ActionScript
209
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 ,
Mar 02, 2016 Mar 02, 2016
LATEST

use:

  var Memoria1 : Memoria = new Memoria();

Memoria1.x=0;

  Memoria1.y=250;

  addChild(Memoria1);

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