2017-08-01 78 views
-1

我正在創建一個圖像匹配程序,它隨機在頂部顯示圖像。用戶需要從一系列選項中選擇一個匹配的圖像,並在匹配良好時顯示一條消息,並在不匹配時結束遊戲。如何將按鈕與圖像匹配?

如何確定Elegir1按鈕是否與persoanje 1匹配?

截圖:

Card Game

代碼:

DiabloB.addEventListener(MouseEvent.CLICK,Elegir1) 
this.addEventListener(Event.ENTER_FRAME, Caida) 

function Caida(e: Event) { 
    T++ 
    if (T == 10) { 
     T = (Math.random() * 4 + 1) 

     //this is the random IMG "Personaje 1, Personaje 2 , Personaje 3 , Personaje 4" 
     refClass = getDefinitionByName("Personaje " + T) as Class; 
     ref = new refClass() 
     ref.y = -250 
     addChild(ref) 
     T = -500 
     enemigos.push(ref) 
     trace(enemigos.length) 
     setTimeout(function() { 
      removeChild(ref); 
     }, 20500); 
    } 
} 

// this is the button 
function Elegir1(e: MouseEvent) { 

} 
+0

英語似乎不是作者的母語。清理了代碼的格式,嵌入了共享的圖像,並在問題中添加了描述性語言(將其從標題中刪除)。還增加了一個更簡潔的標題。 – Atriace

回答