09-15-2005, 07:44 AM
ARRAY(POINT) a.create(8 8) ;;create 8x8 array
int i j
for i 0 8
,for j 0 8
,,mes- "Click %c%i" "" "OC" 'A'+i j+1 ;;message box
,,wait 0 ML ;;wait for mouse click
,,xm a[i j] ;;get the coordinates into the array
;display what is in the array
for i 0 8
,for j 0 8
,,out "%c%i: x=%i y=%i" 'A'+i j+1 a[i j].x a[i j].y