argc
Description
Numeric property that returns the number of attributes in the <EMBED /> tag for the ScriptXtra plugin.
Syntax
[nAttrCount=] window.external.argc;
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
argn, argv