apple script studio

loriscoutin

Membre actif
23 Août 2001
795
3
Visiter le site
dans mon application apple script studio je n'arrive pas à lancer une application par un script
quand je compile j'ai cette super erreur:
No user interaction allowed. (-1713)
comment faire pour appeler une application??
 
Pour lancer Opéra par exemple :
<pre><font class="small">code:</font><hr>
tell application "Opera"
Activate
end tell
</pre><hr>

ou bien

<pre><font class="small">code:</font><hr>
tell application "Opera"
launch
end tell
</pre><hr>

Voilà, c'est tout...

++