balloon

How to Show Ballon tooltip when mouse stops

[edit] So I used one of the javascript tooltips suggested below. I got the tips to show when you stop and hide if you move. The only problem is it works when I do this: document.onmousemove = (function() { var onmousestop = function() { Tip('Click to search here'); document.getElementById('MyDiv').onmousemove = fun...

How to Disable Wireless Network Connection Notification Balloon?

I want to programmatically disable the notification I get when I connect to a wireless network. I know there is a way to disable ALL notifications (see here) but is there a way to only disable the one issued by Windows wireless Manager (i.e. wlanapi.dll). Many thanks! ...

Recommended lightweight balloon javascript library

Looking for small and light popup balloon JS library. (not part of other lib such as jquery) Must be cross browser. I found several. Any recommended one? ...

Accessing balloon tips from VBA

How do you access balloon tips in the task tray area using VBA? I'm looking to find some simple methods to display and possibly even interact with the user. I am using Windows XP and MS Access 2003. ...

Why aren't Shell_NotifyIcon balloon tips working?

According to everything I've seen, the following C++ program should be displaying a balloon tool tip from the tray icon when I left-click in the application window, yet it's not working. Can anyone tell me what I'm missing? This is on XP with version 6.0 of Shell32.dll (verified with DllGetVersion). Thanks! #include "stdafx.h" #inc...

How to hide a taskbar balloon at will?

It's very easy to force a taskbar icon to display a balloon tooltip: all I need to do is set the NIF_INFO flag when calling Shell_NotifyIcon( NIM_MODIFY, ... ), and the balloon appears, no problem. Now, I want to be able to hide the balloon when I no longer need it, as well, but I can't find a way to do that. I tried clearing the NIF_IN...

How can I tell if a Balloon tip in the system tray has closed?

I have an application that uses a NotifyIcon in the tray to hide/restore the application, as well as pop up notices to the user of application events. My application has a notification queue, and I use the NotificationIcon.BalloonTipClosed event to determine when to reset the balloon and show the next notification (if there's one in the ...

TrayIcon balloon does not show up

Hello, I compiled my trayicon utility c++ code in visual studio 2005 express edition and tray icon balloons showed up successfully but later I deleted my firewall, switched on to windows firewall and now I am on another firewall software. Now i ran my same project and balloons showed up successfully but when i rebuilt it, i can't see bal...

single instance and notify in system tray

Hi All, I am working on the application (C# 2.0). I have implemented single instance in it. Everything is fine. If i run the application again, it shows messagebox saying "instance is already running". Actually i don't want to show the message through messagebox. I want to show this message using Balloon tip of already running instan...

Custom system tray icon "balloon tooltips" for Qt?

I know that in the .NET framework there are a handful of alternative third-party controls for normal system tray icon "balloon tips", that allow you to change the colors and add some styling to the balloon. I was wondering if there is something similar for Qt, which allows for better customization of the look, style, and feel of the bal...

Balloon-widget for GWT

I'm searching for a balloon-like widget for a GWT application, e.g. like the balloons Google Maps shows when displaying search results on a map. When searching I only found Javascript widgets, but aren't there any widgets to use in GWT? ...

C#: Set position of the arrow in a ToolTip Balloon?

Is it possible to change the location of the Arrow / Stem in a Balloon Tooltip? Reason to change is because of a Button, located in the top of the screen, should have a tooltip below it. Above is the situation right now, I only need the arrow to be on the top-left side of the balloon. ...

Redraw balloon tip and tooltip in C#?

I wrote a C# application that is a simple countdown timer. I use it myself to keep track of cooking time (not to forget about boiling pasta) and other purposes. It works in the tray. When hovering the icon it shows remaining time as a tooltip. When clicked it shows remaining time in a balloon tip. I would like displayed time to be "tick...

Zend + Pop Up's balloons on Server Problem

Dear Friends from Stackoverflow, Please help me with a problem that i'm having when uploading my project to the server. I'm using pop up's balloons (http://mckay.cshl.edu/balloons.html) for a project using Zend FW and it works fine on my localhost. (I'm using MAMP on MacOSX) but when I upload the webpage to the server, the text inside...

Android Google map balloon over overlayitem

I am using google map, displaying overlayitems on the google map. To create balloon effect, i am using customize view and using geopoints with MapView.LayoutParams to display it at particular location. overlayitem's icon and baloon both having same geopoint thats why they both are overriding eatch other. I want to display baloon over ...

C# NotifyIcon ShowBalloonTip timeout

Hi, In my c# (2.0 framework) application I'm using notify Icon control. I want to show from this control a balloon tip. but the "showBalloonTip" event i slimite to a timeout and I want to show this balloon forever. I've tried to use a timer that will show the balloon again and again but in vista there is a fading effect for balloons and...

NotifyIcon.BalloonTipClicked event and mouse buttons

I've got a NotifyIcon that signals downloadable application updates. I want the download page to open on a Left Click on the NotifyIcon and on a Left Click on the NotifyIcon balloon (on screen for 10 seconds). However, when I handle the BalloonTipClicked event I can't figure out if it was a Left or a Right click. Thus, while the balloon...

Hide Balloons from google maps routes

Hi, I need to hide the green balloons that google earth creates for each point when I create a route using loadFromWaypoints. I need to create routes and put some custom pins, but I have too many points on the route and too many balloons with "A", "B", "C"... descriptions hidding my custom pins. I need to hide or replace the ballons. ...

Tooltip Balloon Disappears After 5 Seconds

I have the property "AutoPopDelay" set to 60000, but every time I hover over an associated element, the balloon only stays open for 5 seconds even when my mouse pointer stays over stationary over the element. Any ideas on what could be causing this? Edit: I am using WinForms ...