A plug-in (or plugin) is a set of software components that adds specific abilities to a larger software application. If supported, plug-ins enable customizing the functionality of an application.
0
votes
0answers
4 views
jquery formatCurrency plugin keypress event
I'm using the plugin formatCurrency to make me change the numbers to currency.
and I have this code:
$(".SePresu").keypress(function(){
$(".SePresu").formatCurrency();
});
I applied pugin all ...
0
votes
0answers
10 views
Minecraft Bukkit - How can I use item entities and falling block entities as projectiles?
Sorry about this question, I think I may have asked before but this website is confusing and I just simply can't find it anywhere. I'm a Java plugin developer who is currently in a Data Structures and ...
0
votes
2answers
41 views
Specific URL If statement in PHP
I'm trying to add an if statement that only executes the mobile redirect in this wordpress plugin if the url equals a certain location. I assume it would be placed in the location that determines ...
0
votes
0answers
8 views
How to enable 'Prepare Content' for a Joomla 2.5 Module?
The Prepare Content is in the back-end for Custom HTML Modules. I am familiar with using Prepare Content with Custom HTML Modules in Joomla 2.5, so it allowed embedded plug-ins to work. For example, ...
0
votes
1answer
10 views
Compiling MySQL Plugin for Qt 4.8.1 on Windows with Visual Studio 2010 C++
The Qt project does not provide MySQL database drivers for the Qt SQL module so one would have to use ODBC or compile the plugin manually.
I am trying the latter.
I have been using the pre-built Qt ...
0
votes
1answer
12 views
Maven plugin: copy a file content into another file
I am looking for the appropriate plugin to copy a file content into another file.
My resource.xml has content like this:
<class>my.path.ResourceA</class>
...
-1
votes
0answers
24 views
System Design based on YII framework [on hold]
I am looking to start an open source project and I have selected Yii framework for it as I don't want to reinvent the wheel.
I am learning Yii framework and I am quite comfortable with it. Now I am ...
-3
votes
0answers
13 views
how to create Preroll or post roll advertisement in audio player in wordpress?
i want to use audio player in wordpress in which i can add advertisement in audio format in the beginning of the audio then my main audio comes after the advertisement (Just like the youtube video ...
0
votes
1answer
9 views
Eclipse: Open containing folder for file NOT in the project explorer
I know there are various plugins like StartExplorer or Easy Shell that allow to open the containing folder for files or folders that are selected in the project explorer. What I looking for is to open ...
0
votes
1answer
16 views
building phonegap does not include all plugins
I have a cordova project that works well when I build and run it through eclipse. The project includes some plugins.
But building on the phonegap's building tool(https://build.phonegap.com) does not ...
1
vote
0answers
9 views
Why local SBT and Scala version number is always appended so that module is not found during resolving
I am about to use this SBT plugin from maven repository.
I added the following lines to project\plugins.sbt:
resolvers += "Sonatype OSS Snapshots" at ...
-2
votes
4answers
42 views
Java semi-colon issue
I am getting an annoying error when I type this line into Eclipse for a .java document on the semi-colon:
@Override
public void onEnable() {
PluginDescriptionFile pdfFile = ...
0
votes
0answers
8 views
Soliloquy Slider Plugin (Wordpress) Squashed
I'm trying to create a Horizontal slider above the footer by using the Soliloquy plugin.
The code generated is
....if ( function_exists( 'soliloquy_slider' ) ) soliloquy_slider( '443' );?>
of which ...
0
votes
2answers
44 views
Easier line referencing
I was wondering if anyone knows of a plugin to enable easier line determination.
I have issues quickly scanning to see what line I was to reference in commands such as t and m
See this screenshot:
...
-1
votes
1answer
17 views
Video-JS Prevent click event from propagationinig to child elements
I created a simple video page with Video-JS plugin. videos plays in a popup module. What i'm trying to do is to close this popup whenever the video wrapper is clicked, not the video. But i fail to do ...