checkpoint_basic_scriptability

git-svn-id: svn://10.0.0.236/trunk@241972 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-12-21 20:19:57 +00:00
parent 5ea884ad2f
commit 70f5f4a32c
10 changed files with 63 additions and 17 deletions

View File

@@ -3,5 +3,21 @@
<body>
<EMBED type="application/x-simple-pluglet" name="test"
src="index.html" width=400 height=200>
<script>
var embed = document.embeds[0];
function callPluglet()
{
var inArgv = [];
var outArgv = [];
embed.callPlugletMethod("methodName", 0, inArgv, 0, outArgv);
}
</script>
<form name="formname">
<input type=button value="Call Pluglet" onclick='callPluglet()'> </input>
</form>
</body>
</html>