我嘗試過,嘗試過並嘗試過。但不能讓這個工作。用Corona SDK不能'收集'
所有我有它的main.lua按鈕。然後我想要這個去about.lua。
我main.lua是:
local function about(event)
storyboard.gotoScene("about", {"Fade", 500})
return true
end
local about = widget.newButton
{
top = 280,
width = 320,
height = 66,
defaultFile = "about.png",
overFile = "aboutdown.png",
onRelease = about
}
而且我about.lua是:
local storyboard = require ("storyboard")
local scene = storyboard.newScene()
local widget = require ("widget")
local background = display.newImage("logo.png")
background.x = display.contentCenterX
background.y = display.contentCenterY
請幫幫忙!
你得到什麼錯誤之前? – Fernker
沒有錯誤,沒有任何反應。 – Bittenfleax
您是否閱讀過文檔?你錯過了一些非常基本的東西,比如場景創建/刪除事件,將場景添加到場景等等。你在場景中添加物品到哪裏,在你的代碼中?在發佈前做一些挖掘工作。 – Schollii