I'm trying to access non-static methods in a java applet, through javascript.

I access static methods using the Syntax AppletName.Packages.className.methodName(); and it works.

If I try to access a non-static member/method via JavaScript, I get an error "Error calling method on NPObject", but nothing on the Java Console.

Is there a way to access non-static applet methods from Javascript?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You need to instantiate a java object, then you can call your methods.

var myClass = new AppletName.Packages.className();
myClass.methodName();

From here.

link|improve this answer
Thanks! I'll try that out! – anirudh4444 Jun 27 '11 at 14:21
feedback

See Call a Java method from Javascript.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.