In AppleScript Editor posso vedere che source_code ha contenuto di script ma la riga 2 non riesce per qualche motivo.
set source_code to load script (POSIX file "/path/to/script.scpt")
word 2 of source_code
Questo non funziona. Provo a leggere i file AppleScript sulla variabile.
Non provo a eseguire questo codice caricato ma ho bisogno di ottenerlo come stringa.
Sembra fallire perché source_code è «script» non stringa. Come può essere risolto? Grazie
set source_code to load script (POSIX file "/path/to/script.scpt")
word 2 of (source_code as string) -->error "Can’t make «script» into type string." number -1700 from «script» to string
word 2 of source_code -->error "Can’t get word 2." number -1728 from word 2