#22003/8/5 9:37:50
先取得8个位置的坐标值赋值给数组,如:
temp:=[[10,10],[10,20],[10,30],[10,40],[20,10],[20,20],[20,30],[20,40]] ----当然,可以根据位置规律进一步简化,在此略过
repeat with i:=1 to 8
j:=random(1,listcount(temp),1)
weizhi[1]:=temp[j]
DeleteAtIndex(temp, j)
end repeat
第一个显示图标中的x和y分别设置为:weizhi[1][1]和weizhi[1][2]
其余依此类推