主题:  请问高手

5D蚂蚁

职务:普通成员
等级:2
金币:1.0
发贴:355
#12001/11/26 17:06:38
请问高手:在使用Field时为何那么慢?
甚至没有直接用图片文字速度快,请问这是怎么回事?



草原风

职务:版主
等级:5
金币:13.0
发贴:3489
#22001/11/26 17:41:02
字体太大且用了消除锯齿功能



5D蚂蚁

职务:普通成员
等级:2
金币:1.0
发贴:355
#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

----------------------------------------------------------