views:

47

answers:

1

I have written a script that on execution lets the user record a message by accessing their microphone and stores it.

I want to make this script useable over my website, which will require me to write a plug-in for the browser. Is there a good tutorial that will teach me how to write this plug in and set it up. is there another way.

A: 

You'll definitely want to look at:

https://developer.mozilla.org/en/Plugins

and

http://code.google.com/chrome/extensions/npapi.html

That were from the post Ignacio linked: How to write a browser plugin?

Wayne Werner