0

这是我的代码,我要疯了。我只是按照 Corona Labs 示例中的方式进行操作,但似乎无法正常工作。你能看看吗?

 local try= display.newImage("1.png")

 local function hop(event)
   if(event.phase==began) then
            print "hello"
    end
        return true
 end

 try:addEventListener("touch", hop)
4

1 回答 1

3

你真的很接近,一个小错误 - 你需要在“开始”周围加上引号。

if event.phase == "began" then

这样就可以了。

于 2012-09-14T16:42:39.067 回答