On Oct 26, 2011, at 10:05 AM, Windmiller wrote:
>            vv.AddJavascriptInterface(new Java.Lang.Object(instance), 
> "Testaren");

The string "Testaren" is the name of the JavaScript object that you're adding, 
but...

> <html>
> <head>
> <title>Ruhuset</title>
> 
> </head>
> <body onclick="javascript:getNumb();" id="body">
> Test page!
> </body>
> </html>

You're not using the `Testaren` object in your HTML.

Instead, try:

        <body onclick="javascript:Testaren.getNumb()" id="body">

 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to