www.soshow.org/bbs/dispbbs.asp?boardID=55&ID=8313&page=1是转这里吧
在director里面建一个文本演员。然后将下面的行为赋给他,就行了。
property curtime,pcount,pfrate,ptime
on beginsprite me
curtime=_system.milliseconds
pcount=0
end
on exitframe me
ptime=(_system.milliseconds-curtime)/1000+1
pfrate=integer(pcount)/ptime
pcount=pcount+1
sprite(me.spritenum).member.text=string(pfrate)
end
这样。我们就简单的做好了一个帧速率监测器。