checkpoint_basic_scriptability

git-svn-id: svn://10.0.0.236/trunk@241984 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-12-21 20:59:24 +00:00
parent 2173b6695a
commit e04220dccc
4 changed files with 14 additions and 7 deletions

View File

@@ -9,9 +9,15 @@ var embed = document.embeds[0];
function callPluglet()
{
var inArgv = [];
var outArgv = [];
embed.callPlugletMethod("methodName", 0, inArgv, 0, outArgv);
var strs2 = {
value : ["double","me","please"]
};
var strslen2 = {
value : strs2.value.length
};
embed.callPlugletMethod("methodName", strslen2, strs2);
}
</script>