主题:  [求助]如何取得影片中精灵(sprite)的总数?

dylain

职务:普通成员
等级:1
金币:0.0
发贴:10
#12005/1/18 14:49:57
如何取得影片中精灵(sprite)的总数?
比如说我的影片中最后一个精灵(sprite)是15,怎样用lingo取得这个数字。
是用scriptNum吗?



D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
#22005/1/28 14:17:45
repeat with i=999 down to 1
if sprite(i).membernum<>0 then
exit repeat
end if
end repeat
return i



thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#32005/6/3 17:34:37
repeat with i = 1 to the lastchannel
if sprite(i).membernum<>0 then
exit repeat
end if
end repeat
return i



阿璇

职务:普通成员
等级:1
金币:9.0
发贴:131
#42005/6/4 8:32:09
sprite(i).membernum<>0应该是=0吧?再者如果一个通道中有两个以上的sprite时计算不出,Score中所有的sprite总数能计算出吗?一楼好象问的是总数。