Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.Can I use AppleScripts in a web application?

Answer: Yes, but they run on the server, not on the client.
Example
dim a as new AppleScriptMBS

// query my application name
a.Compile "tell application ""System Events"" to return name of current application"

// run
a.Execute

// show result
label1.text = a.Result

// shows something like "My Application.fcgi.debug"

This can be useful to control the server from remote, if and only if the your sever is running Mac OS X.


The biggest plugin in space...