0

考虑到我正在定义一些按钮,如下所示:

-- 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。

我已经搜索了文档,但找不到任何东西。任何提示将不胜感激

4

1 回答 1

2

创建defaultFileoverFile后,您无法更改它。

display.newImage(),除非它是图像表,否则您不能直接更改图像本身。

但是您可以将图像表用作按钮。您可以随时更改其框架。

于 2013-08-06T00:49:20.733 回答