<%@ LANGUAGE = "TclScript" %>
<%
Response.Write "Hello world!"
%>In Internet Explorer:
<html>
<head>
<title>TclScript Test</title>
<script language="TclScript">
proc setText {newValue} {
text1 value $newValue
}
</script>
</head>
<body>
<input id="text1" name="text1" disabled="1">
<p>
<input type="button" id="button1" name="button1" value="Hello"
onclick="setText hello">
<input type="button" id="button2" name="button2" value="World"
onclick="setText world">
</body>
</html>In Windows Script Host:
WScript Echo "Hello world!"MHo any additional examples or links to any documentation???
MG Do these methods only allow for ActiveScript-enabled applications to run Tcl scripts, or is there some way to access ActiveScript (and allow people to run scripts written in other languages) from a Tcl application?

