0

I created a NPAPI plugin, but want to know which all methods in NPClass gets invoked in the below mentioned javascript code for line2 .

Also I want to know the method to access array index in the plugin .

  1. var tst = document.getElementById('test');
  2. var name1 = tst[1];
Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236

1 Answers1

1

It will call your GetProperty method; the NPIdentifier will either be an IntIdentifier with the value of i or a normal StringIdentifier with the numeric string matching i.

Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236
taxilian
  • 14,229
  • 4
  • 34
  • 73