Questions tagged [balloon]
111 questions
0
votes
1 answer
Problem with Ball when it bounces with brick (Arkanoid Game)
I'm building a Breakout Ball game like Arkanoid, and I have a big problem when ball collide with bricks. It happens when ball collide on the corner of brick (brickX,brickX) (brickX,brickX+brickLength) (brickY,brickY) (brickX+brickLength, brickY).…

Hsrtick
- 9
- 4
0
votes
1 answer
How to get the message from a PyQt5 notification message?
I'd like to write an application using PyQt5 that has various notification messages.
Is it possible to get the text from a balloon message when a user clicked on it?
I wrote a sample code that simulate my question. A thread sending signals every 10…

Eqzt111
- 487
- 6
- 17
0
votes
2 answers
Add translation in Twig template from Javascript/Jquery
I am working on my form validation and I want to display different error message according to the error I get. I am using Silex and Twig with the translator component and balloon.css for the tooltip and it works so far.
Now I want to translate this…

Mickaël Leger
- 3,426
- 2
- 17
- 36
0
votes
0 answers
In jquery.balloon.js tip disappears setting offsetX
I am using library jquery.balloon.js, it works fine in general but I have a problem.
When i set the value e.g. "offsetX: 10" the tip disappears.
With "offsetY" there are no problems.
Do you experience the same issue? Have you found a solution ?
-]…

Nicola Mingotti
- 860
- 6
- 15
0
votes
3 answers
C#, Windows Forms: NotifyIcon with ShowBalloonTip in Click event no longer fires the DoubleClick event
When using a NotifyIcon in Windows Forms/C#/.Net Framework 2.0, if I display a Balloon Tip Text in the MouseClick or Click events, none of the DoubleClick or MouseDoubleClick events will fire:
private void notifyIcon_DoubleClick(object sender,…

TechAurelian
- 5,561
- 5
- 50
- 65
0
votes
1 answer
Fit ballon overlay in mapview
I have balloon popups showing in Android MapView when a user tap:s on specific points on the map. Depending on where the user taps the balloon does not always fit insize the MapView. I solve this now by using MapController.animateTo to always have…

per_jansson
- 2,103
- 4
- 29
- 46
0
votes
1 answer
jQuery Balloon plugin position
I'm using jQuery Balloon and I have a few problems with this plugin.
First of all attribute position doesn't work for me properly - it always keeps the balloon on the left top corner of my item, only the arrow changes it's direction. I need to have…

Aviene
- 1
- 2
0
votes
3 answers
jquery balloon not showing with .showBalloon()
I'm trying to have the balloon from the balloon plugin show up on document ready but for some reason the .showballoon method isn't doing anything. I would think it would be as easy as this:
$(document).ready(function() {
var bordercolor;
…

WtFudgE
- 5,080
- 7
- 47
- 59
0
votes
2 answers
Where are tooltip balloons in WPF?
In WinForms you used to be able to do this:
ToolTip hint = new ToolTip();
hint.IsBalloon = true;
as described here: How to show a .NET Balloon ToolTip? to display a balloon, as described by Microsoft here: …

GoldieLocks
- 845
- 7
- 22
0
votes
1 answer
Modify points of interest to have all points / balloons to open first and then ability to close and open again individually
I have this points of interest example: http://codyhouse.co/gem/points-of-interest/
http://codyhouse.co/demo/points-of-interest/index.html
Is it possible every time the page loads, ALL the points/balloons open to show the type and then the user has…

user2343800
- 133
- 1
- 4
- 16
0
votes
1 answer
Components inside a Balloon hint
I'm trying to figure out a way to add a TButton inside a TTrayIcon Balloon Hint.
Is that possible?
Application description and goal:
Basically my software detects when a USB device is connected to the computer
and automatically pops up a balloon…

xaid
- 740
- 6
- 18
0
votes
1 answer
C++ CLI NotifyIcon Show Balloon
C++/CLR Visual Studio
I am using a NotifyIcon which is initialized and is showed with the correct icon and text when I launch my application.
But I want to display a Balloon to the user.
This is however not showing up.
notIcon->BalloonTipText =…

Achille Depla
- 97
- 1
- 10
0
votes
1 answer
Java: How do I check to see if a particular instance of an object is in the world?
Note: I am using the Greenfoot IDE
So I have been tasked to create a Balloon project where objects of a Balloon class float to the top of the screen. Any other details are up to my decision.
So I made it so that my Balloons pop through a pop method,…

Ben Boudreau
- 25
- 1
- 6
0
votes
1 answer
Balloon doesnt show (Jquery balloons plugin)
Have you tried this jquery balloon tooltip plugin?
jquery.balloon.js Demo page
I plan to use this to inform the user that Numbers Only is allowed on a certain textbox.
js code
function isNotDigit(key_event) {
return (key_event.which != 8 &&…

leipzy
- 11,676
- 6
- 19
- 24
0
votes
1 answer
amcharts balloon visiblity when mouse is over it?
How to make amcharts balloon to be visible when mouse is over it? Here is the doc about the balloon http://docs.amcharts.com/2/javascriptcharts/AmBalloon
user3496946