Come faccio a fare in modo che Apple Script apra Script Editor e scriva un nuovo script?

3

Ho provato a fare

tell application "Script Editor"
    make new script with properties {name:"this is a test", body:"and 
    more text"}
end tell

ma è venuto fuori con l'errore

'errore "Script Editor ha ricevuto un errore: impossibile creare il file di classe." numero -2710 dal file alla classe "

    
posta Qubu7575 11.03.2018 - 06:46
fonte

2 risposte

3

Questo funziona per me:

tell application "Script Editor"
    make new document with properties {name:"this is a test", contents:"and 
more text"}
end tell
    
risposta data 11.03.2018 - 19:24
fonte
-1

Penso che sia necessario cambiare "Script Editor in un'altra applicazione

tell application "Script Editor"
    make new script with properties {name:"this is a test", body:"and 
    more text"}
end tell
    
risposta data 12.03.2018 - 08:04
fonte

Leggi altre domande sui tag