Window TCPIP System Plugins
Advanced script host (JScript, VBScript).
Examples Install Delete
GUI for script

What's that?

Advanced Script Host(engine.exe) enables you to run scripts from Windows. Engine.exe provides any dialog window for accessing from script. Whether you use WScript.exe or Engine.exe, you still run the scripts in the same manner. The difference is only in the object model. You can use methods and properties four objects: Window, TCPIP, System, Plugins. You will use the extension .w_js(JScript) or .w_vbs(VBScript) for advanced scripts.

To run a script using the advanced engine:
  1. Double clck the script (.w_js or .w_vbs) in Windows Explorer or on the desktop.
  2. Click Start, select Run, and enter the command line:
    engine.exe script.[js|vbs|w_js|w_vbs]

How to Use? more ...

JScript (fast.w_js) VBScript (fast.w_vbs)
Window.width = 200;
Window.height = 100;
Window.title = "Fast Start";

Window.AddControl(8,1,
       10,5,50,10,"Your button");

function WM_COMMAND(id)
{
if (id == 8) 
 Window.MessageBox(Window.title,
        "Butt. id="+id,64);
};
Dim title
    title = "Fast Start"
Window.width = 200
Window.height = 100
Window.title = CStr(title)
Window.AddControl 8,1,10,5,50,10, _
                 "Your button"

Function WM_COMMAND (id)
 Window.MessageBox CStr(title), _
                   CStr(id), 64
End Function

1 2 3 4 5
Creating a GUI

FilesLand.com Free Software and Game Downloads