argv
Description
String property that returns the value of an attribute on the <EMBED /> tag for the ScriptXtra plugin.
Syntax
[sAttrVal=] window.external.argv(index);
This is a read-only property. The index may be given as the numeric zero-based index into the array of attributes or as the attribute name.
Applies To
window.external for content displayed in the ScriptXtra window.
Example
var argc = window.external.argc;
var i;
for (i=0; i<argc; i++) {
log("Attribute: [" + window.external.argn(i)
+ "] has value: ["
+ window.external.argv(i) + "]");
}
See also
argc, argn