#32001/11/27 13:07:35
我想用Field来做一个多项选择菜单,但运行起来实在很慢!不知有没有更好的办法来解决?
on enterframe me
Change_CL
end
on Change_CL
repeat with n= 1 to 30 --共有30个文本按钮(30行)
if rollover(1) and the mouseline=n then
set the forecolor of line n of field 18 to 150
else
set the forecolor of line n of field 18 to 0
end if
end repeat
end
on mousedown
go to frame (the mouseline)+10
end
----------------------------------------------------------