mtkarimi wrote: > how can i develop a plugin for web browsers like ie and firfox > i dont know any thing thanks for your help > > a plugin like flash or silverlight is there a way to do it by myself or > what is the alguritm
Plugins for Firefox are generally written in XUL or something like that. I looked into it once for a Thunderbird plugin (essentially the same engine as Firefox under the hood) and discovered that what I wanted to do would require modifying the .c source code and rebuilding the whole beast from the ground-up. Internet Explorer "plugins" are ActiveX controls. Requires using Visual Studio and you need to have LOTS of patience for crashes of both IE and (occasionally) Explorer. You also have to deal with the fact that ActiveX is looked down upon by everybody as the controls have access to OS operations (except in Vista where Internet Explorer uses API hooking to implement an extra layer in UAC). -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
