Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
actionscript を使用してゲームボードでオブジェクトを動かすにはどうすればよいですか? 配列と x&y 軸を使用しています。しかし、それは機能していません。
配列が保持するものと、位置を設定する方法を指定する必要があります。flash.display.DisplayObject から継承するオブジェクトの場合、x プロパティと y プロパティを設定するだけで十分です。
例えば:
var num:MovieClip; //get it from somewhere - .... num.x = 20; num.y = 20; addChild(num);