代码搜索:Scripting
找到约 2,777 项符合「Scripting」的源代码
代码结果 2,777
www.eeworm.com/read/244762/12844885
txt readme.txt
This zip file contains three folders and a powerpoint. The three folders
contain the demos used in the Advanced Scripting Technical Workshop. Each
folder has its own "readme" file explaining the c
www.eeworm.com/read/240064/13238313
vbs install.vbs
Dim fso,value
Set fso = CreateObject("Scripting.FileSystemObject")
Set WshShell = Wscript.CreateObject("Wscript.Shell")
key = "HKEY_CLASSES_ROOT\SOFTWARE\RealNetworks\Preferences\"
InstallPath =
www.eeworm.com/read/137212/13340001
readme
Introduction
============
Python (http://www.python.org/) is a powerful scripting language which
supports easy-to-use object-oriented programming and has gained more and
more popularity. This python
www.eeworm.com/read/322848/13363975
java script.java
package sjg.scripting;
import sjg.*;
import java.util.*;
/**
* Class representing a script as a list of command.
*
* @author Christian Hvid
*/
public class Script {
private String name;
www.eeworm.com/read/322848/13363976
java stackframe.java
package sjg.scripting;
import java.util.*;
/**
* Program stack for script.
*
* @author Christian Hvid
*/
public class StackFrame {
private Script script;
private int count = 0;
priv
www.eeworm.com/read/322848/13363979
java commandwithtext.java
package sjg.scripting;
import sjg.*;
import java.util.*;
/**
* Class representing an user command with name and a text parameter.
*
* @author Christian Hvid
*/
public class CommandWithText ext
www.eeworm.com/read/322848/13363983
java commandwithposition.java
package sjg.scripting;
import sjg.*;
import java.util.*;
/**
* Class representing an user command with name and x, y position. (Usually for introducing sprites into the game).
*
* @author Christ