在我的应用程序corona
中,我有一个widget button
移动图像。我能够找到该onPress
方法,但未能找到检查按钮是否仍被按下的方法。这样用户就不必一遍又一遍地点击相同的按钮来移动图像......
代码:
function move( event )
local phase = event.phase
if "began" == phase then
define_robo()
image.x=image.x+2;
end
end
local movebtn = widget.newButton
{
width = 50,
height = 50,
defaultFile = "left.png",
overFile = "left.png",
onPress = move,
}
任何帮助都是可观的......