Questions tagged [add-on]

Add-on, a.k.a. Plug-in is a set of components that enhances the existing, or adds new capabilities to a software application.

A plug-in system is very common, because it lets other developers (and maybe users) make small plug-ins to add new features quite easily.

Add-ons are also a good customization tools, because they let users chose which of the features do they want, and which they don't. It also helps to keep the distributive small.

There are specific tags for certain platforms / applications, like

Usually it's better to use the more specific one.

1100 questions
3
votes
0 answers

Visual Studio: Any extensions/addons can custom region painting?

CodeRush can custom region painting in the Code Editor. Any other extensions/addons have this feature? Thanks Edit: Changed title and contents for better description.
user593358
3
votes
2 answers

JSP / Controller not found for custom component in Hybris addon

I’m running Hybris 6.6 and are building a new addon, that is basically a controller and corresponding JSP. During runtime however, Hybris isn’t finding the controller bean and searches for JSP in the storefront folder (it’s not there, since the JSP…
Joao Sousa
  • 491
  • 5
  • 17
3
votes
1 answer

Alfresco-Addon Java

I want to develop a ticket-system Add-On for Alfresco, I am new into Alfresco so I have some troubles getting started I have downloaded maven and set the path var Also for java and javac And now I installed an simple Maven projects with the…
brandart
  • 219
  • 1
  • 9
3
votes
0 answers

Publish Google Sheet Add-on with REST Web Service

I want to have an add-on for Google Sheet which will give us a URL that we can use to push data into Google Sheet which isn't shared with us. Basically from a Java Project, we wish to push data into the users sheet who installed this add-on, but…
3
votes
1 answer

onEdit Simple Trigger not working when Publish Test as Add-on

I have been banging my head on this for awhile now...my document bound google app script works great when testing local to the document. I tried to test as publish > Test as Add-on with another sheet. Although my onInstall() and onOpen() simple…
3
votes
2 answers

How to quickly write a firefox extension?

I'm to make a firefox extension which will inject some js code as well as whole jQuery lib. I want it to happen (the injection) when user pushes the button placed somewhere in the browser. I have read docs form MDC and other tutorials about making…
kaapa
  • 31
  • 1
3
votes
1 answer

visual studio add on

I want to know if this is possible. I have a small piece of software that I have written, that would work well if it can be incorporated into visual studio as an add-on. Is it possible to create an add-on that when the user right clicks on a…
Darren Young
  • 10,972
  • 36
  • 91
  • 150
3
votes
0 answers

Attempting to program an HP bar for a WoW addon (.lua)

I'm in the midst of making a WoW addon for RP'ers and I have come across a bit of a difficult problem. I've written up this addon to have a Health indicator, and a Barrier indicator. The Barrier takes any damage before damage is applied to health,…
Jackal
  • 31
  • 2
3
votes
0 answers

How to use XenForo's caching mechanism in add-on?

I'd like to reuse XenForo's internal caching features within the add-on I've written for it. More precisely, I want to cache some string I am outputting within a 'template_hook' listener code. I tried to let the listener class extend several…
Sebastian Zartner
  • 18,808
  • 10
  • 90
  • 132
3
votes
2 answers

how can i code an addon to read firefox bookmarks

I'm familiar with basic FF addon development and have created a "test" toolbar button. Now when I click on this button I want my addon to read FF bookmarks. As simple as that. Now I've spent 3 days. Have read uncountable tutorials, forums and blogs.…
3
votes
2 answers

How will using the Samsung Galaxy Tab Add-on affect/fetter my Android Market deployments?

I have run my android app against the new build target provided by the add-on mentioned here. This appears to be working correctly in the emulator, but now I am very unsure as to the implications of using this build target when delivering an app to…
el2iot2
  • 6,428
  • 7
  • 38
  • 51
3
votes
1 answer

WoW Addon - Dynamic tooltip while key is pressed

I've got a tooltip and I want it to show more detailed information if the SHIFT key is pressed/held. The following code works so far: function myAddonFrame_OnEnter(self) myAddon_GenerateTooltip(self) end function myAddonFrame_OnLeave(self) …
nehegeb
  • 183
  • 8
3
votes
1 answer

How to determine what is the current amount of damage that will be staggered?

I have been looking through World of Warcraft API to somehow get the value of the current amount of damage that will get staggered when hit (Monk class). So to be clear I do not want to get the current staggered amount by calling UnitStagger but the…
mrVoid
  • 995
  • 7
  • 17
3
votes
1 answer

I want to integrate pubnub with zendesk

is it possible to integrate zendesk to pubnub? I want to create a pubnub channel for each zendesk ticket, and when I respond to a ticket with some message I want to send pubnub api request to record that message at pubnub server. basically, I want…
Ritzor
  • 665
  • 7
  • 26
3
votes
1 answer

Call a function in a class from different class

I am creating an add-on. I am stuck in calling a method of a class from different class. For example... class A(bpy.types.Operator): def execute(self,context): #Code class B(bpy.types.Operator): def execute(self,context): #Code …