argn

Description

String property that returns the name of an attribute on the <EMBED /> tag for the ScriptXtra plugin.

Syntax

[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;
var i;
for (i=0; i<argc; i++) {
   log("Attribute: [" + window.external.argn(i)
      + "] has value: [" 
      + window.external.argv(i) + "]");
}

See also

argc, argv