hmaster
Senior Member
Posts: 716 Reputation: 24
33 / /
Joined: Nov 2004
|
RE: Starting an application
quote: Originally posted by tobias
P.S. I know you don't like people using ! commands, but I can't figure out how to get my commands on the / list.
code: function OnGetScriptCommands(){
var ScriptCommands = '<ScriptCommands>';
ScriptCommands += '<Command>';
ScriptCommands += '<Name>purple</Name>';
ScriptCommands += '<Description>Makes the window purple</Description>';
ScriptCommands += '</Command>';
ScriptCommands += '<Command>';
ScriptCommands += '<Name>green</Name>';
ScriptCommands += '<Description>Makes the window green</Description>';
ScriptCommands += '</Command>';
ScriptCommands += '</ScriptCommands>';
return ScriptCommands;
}
This post was edited on 01-07-2007 at 02:42 PM by hmaster.
|
|