سؤال

so any help would be appreciated. How would i go about setting up so a movieClip appears on the stage when a button is clicked?

sppawner_btn.addEventListener(MouseEvent.CLICK, spawnspinkjewel);

function spawnspinkjewel(event:MouseEvent):void
{
//------ ummmm 
}

thanks, I am new to AS3! :-)

هل كانت مفيدة؟

المحلول

Use addChild methos to add an element to stage.

 sppawner_btn.addEventListener(MouseEvent.CLICK, spawnspinkjewel);

    function spawnspinkjewel(event:MouseEvent):void
    {
      var myChild:MC= new MC();
      stage.addChild(myMC)
    }
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top