#52002/6/19 18:39:25
按一下连续执行
if a=1 then
sprite(1).blend=sprite(1).blend-1
a=0
end if
改为
if a=1 and sprite(1).blend>0 then
sprite(1).blend=sprite(1).blend-1
else
a=0
end if
按住连续执行
on mousewithin me
if the mousedown then
sprite(1).blend=sprite(1).blend-1
end if
end
就可以了
编辑历史:[这消息被54zq编辑过(编辑时间2002-06-19 18:41:38)]