-1
我正在創建一個圖像匹配程序,它隨機在頂部顯示圖像。用戶需要從一系列選項中選擇一個匹配的圖像,並在匹配良好時顯示一條消息,並在不匹配時結束遊戲。如何將按鈕與圖像匹配?
如何確定Elegir1
按鈕是否與persoanje 1
匹配?
截圖:
代碼:
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) {
}
英語似乎不是作者的母語。清理了代碼的格式,嵌入了共享的圖像,並在問題中添加了描述性語言(將其從標題中刪除)。還增加了一個更簡潔的標題。 – Atriace