2010-09-20 53 views

回答

0

我沒能看到geochallenge遊戲,由於某種原因,我得到一個空的Facebook頁面,但對於一個按鈕來改變它的形狀,你可以創建一個將調用圖形性能

 
var color:uint = 0x990000; 

function clickHandler(event:MouseEvent):void 
{ 
    buttonGraphics(event.target as MovieClip) 
} 

function buttonGraphics(mc:MovieClip):void 
{ 
    mc.graphics.clear; // clear the previous shape 
    mc.graphics.beginFill(color); 
    etc... //make the changes you need 
} 
相關問題