2013-08-06 31 views
0

我有一個這樣的形象:是否可以在與Lua國防時改變日冕中的圖像?

myImage = display.display.newImage("/images/resources/res.png") 
myImage.x = 100; myImage.y = 100; myImage.property = "local"; 

,並根據事件的,是可以改變「myImage」的形象爲其他的SRC沒有其他變量?

myImage = display.newImage("/images/resources/res2.png") 
+0

出於某種原因,在當地事件原因的變量取像空值,但是,當我改變像全球性的,價值功能更新被接受 – MrMins

+0

如果你使用本地函數的對象,你必須把對象的頂部功能,因爲它不會看到下面的功能 – DevfaR

回答

0
chosen1pic = "selectCharacter.png" 

chosen1 = display.newImage(chosen1pic) 
    chosen1.x = display.contentWidth *.75 
    chosen1.y = display.contentHeight *.75 

choice1 = display.newImage("choice1.png") 
    choice1.x = display.contentWidth /8 
    choice1.y = display.contentHeight /6 

local function removeImagea() 
    chosen1: removeSelf() 
    end 

local function choicea() 
    removeImagea() 
    chosen2pic = "AVTR1.png" 
    chosen2 = display.newImage(chosen2pic) 
    chosen2.x = display.contentWidth *.2 
    chosen2.y = display.contentHeight *.75 
    end 

choice1: addEventListener("tap", choicea) 
相關問題