考虑到我正在定义一些按钮,如下所示:
-- title button
titleButton = widget.newButton{
label="",
width=265, height=70,
defaultFile = "images/title.png",
overFile = "images/title_clicked.png",
onEvent = handlePlayEvent
}
titleButton:setReferencePoint(display.CenterReferencePoint)
titleButton.x = display.contentWidth / 2
titleButton.y = display.contentHeight / 4
是否可以在从其他功能创建后修改按钮的defaultFile和overFile。
我搜索了文档但找不到任何内容。任何提示将不胜感激
答案 0 :(得分:2)
创建后,您无法更改 defaultFile 和 overFile 。
与display.newImage()
一样,除非是图片,否则您无法直接更改图片。
但您可以使用image sheet作为按钮。您可以随时更改其框架。