関数メソッドにスプライトを送信しようとしています。Flash AS3スプライトの幅が関数で正しく送信されない
しかし、私はスプライトの幅、高さを得ることができませんでした。なぜこれが問題になるのか分かりません。
私にこれに関するアドバイスをいただけますか?
function mouseClick(evt:MouseEvent) { // click event
var s:Sprite = new Sprite();
s.width = 595;
s.height = 842;
s.x = s.y = 0;
addChild(s);
dothis(s);
}
function dothis(s:Sprite){
trace("s.width : "+s.width + "/s.height : "+s.height);
// s.width and s.height returns 0 value always..
}
ご覧のとおり、スプライトの幅と高さの結果は常に0です。
なぜこれが私に起こりますか?
おそらく複製http://stackoverflow.com/questions/5134347/as3-setting-width-and-height-of-a-sprite-container –