|

楼主 |
发表于 2023-7-20 17:40:31
|
显示全部楼层
我用的是以下代码,可还是不行,不知道问题出在哪?
function on_control_notify(screen,control,value)
if screen==1 --进度条
then
if control==6 and value > 0 --控件‘减’
then
value=get_value(1,4)
if value>0
then
value=value-1
end
if value<0
then
value=0
end
set_value(1,4,value) --设置数值
set_value(1,8,value)
end
if control==7 and value > 0 --控件‘加’
then
value=get_value(1,4)
if value<10
then
value=value+1
end
if value>10
then
value=10
end
set_value(1,4,value) --设置数值
set_value(1,8,value)
end
if control==8 --直接点击进度条
then
value=value
set_value(1,8,value) --设置数值
set_value(1,4,value)
end
end |
|