#22002/9/2 16:14:25
on randomlist num
listold=[]
listnew=[]
pcount=num
repeat with i= 1 to num
listold.add(i)
end repeat
repeat with h=1 to pcount
i=random(num)
set listprop= getAt(listold,i)
listold.deleteAt(i)
listnew.add(listprop)
num=num-1
end repeat
return listnew
end
----------------------------------------
on exitFrame me
-- 得到一个随机的list
set hlist=randomlist(8)
go to the frame +1
end