Description
String property that returns the name of an attribute on the <EMBED /> tag for the ScriptXtra plugin.
Syntax
1[sAttrName=] window.external.argn(nIndex); This is a read-only property.
[sAttrName=] window.external.argn(nIndex);
This is a read-only property.
Applies To
window.external for content displayed in the ScriptXtra window.
Example
var
argc = window.external.argc;
i;
for
(i=0; i<argc; i++) {
log(
"Attribute: ["
+ window.external.argn(i)
+
"] has value: ["
+ window.external.argv(i) +
"]"
);
}
See also
argc, argv