SCÉNARIO |
Objectif : | Exécuter un script à l'aide d'un moteur Active Scripting |
Format: | SCRIPT [/E moteur] [nom de fichier ...] |
moteur | Le nom du moteur de script |
Usage:
Si vous ne spécifiez aucun argument, SCRIPT affichera les moteurs installés.
Vous pouvez appeler l'interne TCC commandes à partir de n’importe quel langage Active Scripting en utilisant l’interface tcommand() créée par SCRIPT. Par exemple, créez un fichier JavaScript nommé testjs.js:
var d1 = "Premier message" ;
var d2 = "écho du deuxième message" ;
var d3 = "dir /w" ;
TakeCommand.msgbox(d1);
TakeCommand.tcommand(d2);
TakeCommand.tcommand(d3);
Vous pouvez ensuite passer testjs.js au SCRIPT :
script testjs.js
Voir aussi @SCÉNARIO fonction variable.
Options: