Come devo etichettare i tale che il comando do venga ripetuto per tutti i valori di i.
es.
if i =2:
cd /Users/xxx/zTree; wine explorer /desktop=1,640x480 zleaf.exe /language english /name lab1
cd /Users/xxx/zTree; wine explorer /desktop=2,640x480 zleaf.exe /language english /name lab2
Ma in qualche modo questo non funziona, dov'è il mio errore?
display dialog "how many leafs?" default answer ""
set i to the text returned of result as integer
repeat while i > 0
tell application "Terminal"
do script "cd /Users/xxx/zTree; wine explorer /desktop=$i,640x480 zleaf.exe /language english /name lab$i"
set i to i - 1
activate
end tell
end repeat