plugins

How to offer uninstall of a web browser plugin on the Mac?

We have a browser plugin that has recently been ported to the Mac. During early testing, some customers experienced problems with it and wanted to uninstall. The procedure we had to give them was "Browse to /Library/Internet Plug-Ins in Finder and trash the bundle.". Obviously this is not a workable approach for non-technical users. H...

NPN_ScheldueTimer call brings firefox to crash (Mac OS X)

How I use it: NPNetscapeFuncs* NPNFuncs; // ... timerID = NPNFuncs->scheduletimer(GetNPPInstance(), Interval, 1, Function); At the same time, my plugin work properly both in Safari and Google Chrome. Firefox version: 3.6.9 Mac OS X version: 10.6.4 Crash report: http://crash-stats.mozilla.com/report/index/d1b471c6-4a03-...

QuickTime plugin hotkeys

Hello, I'm using the QuickTime plugin to play audio on a webpage but the player keeps stealing the keyboard focus even though controller is set to false. This is annoying since I don't want the space bar to keep triggering the player, but I can't find any way to disable the damn hot keys for it. This doesn't happen in IE8, but I've had ...

OSGI Manifest in eclipse plugin

How do I include an OSGI Manifest in an eclipse plugin easily? Thanks. ...

C# WinForms program with ability to make C++ plugins for it

I am creating a C# winforms application targeting the .NET 3.5 framework. I want this program to be able to have plugins. Hopefully the plugins can be created in unmanaged C++. If there is no direct way to make a plugin in C++, then i would like the know the easiest plugin framework that would allow me to make a simple C# wrapper for ...

How to install Vim scripts / plugins using viper-mode in emacs

I'm using viper-mode in emacs, and I'd like to use the Vim-LaTeX plugin with it (http://vim-latex.sourceforge.net/index.php). How do I install the plugin to use in viper-mode? ...

Custom background using Quicktime Plugin to play video... Possible?

I want an efficient way to send clients a link to see a video that I have stored on my webhost and this causes the video to open in the quicktime plugin. This is boring. Can I change the background color or even add a logo? If so, where is this done? ...

Extension/plugin development tools - integrated into the IDE or separate?

Part of our application is a fairly extensive plugin development kit allowing third parties to write extensions and add-ons that can be added to the product. In addition to the standard libraries, project templates etc, there are a number of tools that are shipped that speed up development. For instance a custom resource editor that al...

Is it possible to use two different plugin folders in symfony?

In symfony the default plugin folder is /plugin, I'm wondering if there is a way to use more than one folder to categorize different types of plugins? There is a sf_plugin_dir but I'm not sure that can be configured to be an array, something like array( '/plugin-folder1/..', '/plugin-folder2/..', ) and still keeps everything wor...

In GWT 2.1.0.M2 the options "-style pretty" couldn't be recognized

I am using GWT eclipse plugin and try to add option "-style pretty" inside arguments tab of debug configuration window in eclipse. But after click debug it just prompts "Unknown argument: -style". I used to use webcreator to create gwt app. this is my first time to use plugin and i am not sure i put it into the right place or gwt 2.1.0.M...

Netbeans PHP - add/remove curly braces plugin/shortcut

I love short if statements without braces (PHP) like if ($x === $y) echo $z; If I want to add a few lines (maybe just temporary for debugging) I have to manually add the braces. Is there a plugin for netbeans that does that via shortcut, something like "toggle (add/remove) previous statement braces"? ...

All frontend languages/solutions

Are these all the languages/solutions you could use in frontend? javascript+html+css flash java silverlight (c#, ruby, python etc) And what is a plugin for Safari and Firefox written in? Is it low-level languages like C++? ...

Latex and Vim usage

How can I use Latex effectively in VIM? Is there a way to configure compile errors by highlighting the line in vim? I have syntax highlight. What are other recommended add-ons? Is a makefile the recommended way to compile a latex file to pdf? TexWorks lets you open and replace the opened pdf everytime it's recompiled. Is there a plug...

Launch java program in eclipse plugin failed

Hi all, I try to launch a java program in a eclipse plugin, but failed. What I try to do is to let the example from "Contribution to eclipse" to work. In the example, the plugin contribute an menu item to eclipse, when you select a test class, you can use the menu to run test cases in the class. To run the test case, there are two cla...

oocalc plugin - development step by step guide available?

I want to develop plugin for OoCalc Open Office, is there any good resource or link will help to start working on it. any existing article like step by step guide for developer would be great !! I want to develop the plugin based on Python Programming Language. ...

Essential Java IDE Plugins?

Until JetBrains released IntelliJ 8 or 9 I went nuts without the Identifier Highlighter plugin (highlight other uses of the identifier at your current caret placement), I also went to a talk last night where John Smart recommended Infinitest (runs relevant unit tests whenever you alter a file) which seems like a great plugin. Not sure i...

ASP.Net webforms application with pluginable architecture problem

Hello, It was told me to make a pluginable web app. with webforms. The idea is to have one base web application with a plugin host that will load any plugins and related to them web pages. As an example, I have my MyHostApplication with master page and a default.aspx file. When it is compiled, basically the project will have the files ...

jquery address plugin interferring with scrollTo values

Hi! I've built an ajax-based website that utilizes the address jquery plugin for back forward button browser compatibility. However, since pages are fetched via ajax page conventional page refresh is not obvious and rather disorienting in terms of user navigation etc. User clicks a link, ajax fetches the page, although successful and pa...

Configuring Grails Plugins with Nexus Repository

Hi, I'm searching for a longer time, but without any solution. My problem: I configured my Grails project (1.2.4) with Maven and my own Nexus Repo. That seems to be working well. But can I also put the Grails plugins, which I am using, also to the Nexus Repo? At the momement the plugin dependencies are resolved over the Grails Plugin...

Get a file location in Eclipse Plugin

I am writing an Eclipse plugin where I want to read a file within the project and do something on it. For example the file is located under : Project testplugin and path : com/flow/FlowMain.java I want to programmatically read this file and add some code in it. What I trying is : String base = Platform.getBundle(config.getPluginId())...