Questions tagged [trayicon]

for questions about creating a tray icon for a software application, customising the behaviour of a tray icon, and adding application control or monitoring to a tray icon. For questions which relate the system notification area or system tray in general, use the notification-area or system-tray tag instead.

About

A tray icon is a small, graphical, interactive icon which remains available in the of a graphical desktop environment such as , , , and , to allow for convenient control, monitoring and/or termination of a running software application.

In desktop environments that support a notification area, the area is easily accessible and always visible, so that tray icons and important notices can be seen immediately. For example, in Windows XP and in KDE 4, the system notification area is nestled alongside the clock on the main taskbar. The system notification area is often known as the system tray, though this is a misnomer.

Tray icons may be permanently visible in the system notification area, or the desktop environment may allow automatic or manual hiding of tray icons which belong to applications which are currently inactive or rarely used.

289 questions
1
vote
1 answer

Tray Icon is working in Debug Mode, Not in Release Mode

I'm Currently Working in Windows Application. I just created a tray Icon while closing the Form, Tray Icon is visible in System Tray. While Left Click the Tray Icon Form is maximized to normal state. Right Click Event is not working in Release Mode,…
Ganesh Pravin
  • 79
  • 1
  • 13
1
vote
1 answer

Anyway to stop Windows bringing app to front when displaying a context menu on tray icon?

We are experiencing this annoying problem where we have a context menu on our tray icon, if we display this context menu we have to SetForegroundWindow and bring it to the front. This is really annoying and not at all what we want. Is there a…
Dan
  • 1,513
  • 1
  • 24
  • 34
1
vote
0 answers

PyInstaller/PyQt4: System tray icon is not loading (blank)

I'm trying to build my app with PyInstaller. When I build it, the system tray icon is blank. It's there, but it's blank. (I'm on windows) Screenshot: It's loading the icon from "logo.gif" in the script code itself. I'm suspecting the problem is…
user1438098
  • 2,239
  • 3
  • 18
  • 14
1
vote
0 answers

Java Textfield in PopupMenu

I am trying to add a TextField to a PopupMenu in Java. (similar to Spotlight Feature in Mac OS X) But i can't add it to as an item because the PopupMenu only accepts MenuItem. Please help me. That's the code I currently have: import…
1
vote
0 answers

Get the Tray Icon to bounce in Mac

I am developing an application that needs to display messages to the user on Mac. The messages always have a yes and no option for the user, and I can display these, but right now, I am forcing something to show up over whatever the user has open,…
BobbyD17
  • 495
  • 5
  • 16
1
vote
2 answers

Resource not found: duke.jpg

So I'm experimenting with the tray menu and I have the line. final TrayIcon trayIcon = new TrayIcon(createImage("duke.jpg", "tray icon")); The method createImage is protected static Image createImage(String path, String description) { URL…
Maple
  • 17
  • 6
1
vote
0 answers

Calling trayIcon.displayMessage() from method

I know below way to show a balloon message: something.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { trayIcon.displayMessage("Tray", "Icon", TrayIcon.MessageType.INFO); } }); But is there any…
ahoj pepiczki
  • 309
  • 1
  • 3
  • 18
1
vote
1 answer

trayicon.ahk functions not working right on 64bit Win7

Been using trayicon functions in my ahk scripts on an XP machine (32bit) ok getting extended trayicon info cannot seem to get trayicon infomation using these functions on a 64bit (win7) machine using ahkL is there a different version of…
1
vote
1 answer

java: TrayIcon right click disabled on Mac OsX

I'm trying to develop a Mac OsX app provided by a system tray icon, so after the first attempt with the simplest code to achieve it I noticed that every apps tray icon's (both system and user apps) on mac osX (10.8) allows to activate the relative…
wiredolphin
  • 1,431
  • 1
  • 18
  • 26
1
vote
1 answer

How can I listen to clicks on a message of TrayIcon

I want to automatically do an action when the user clicks the balloon message which I pop from a TrayIcon with trayIcon.displayMessage(). Is this possible?
Or B
  • 1,675
  • 5
  • 20
  • 41
1
vote
1 answer

Can tray icon application titles be changed at runtime?

In the Control Panel applet for customizing tray icons, the application's name is shown. In a WinForms application, this name may be changed with the AssemblyTitle value at compile time, as shown in the image. Is it possible to change this value…
ladenedge
  • 13,197
  • 11
  • 60
  • 117
1
vote
2 answers

How do I get a PopupMenu to show up when I left-click on a TrayIcon in Java?

Currently, the PopupMenu will show up when I right-click on the TrayIcon in the SystemTray. However, I want it to do the same when I left-click on the TrayIcon. I thought I might accomplish this by using a mouseListener on the TrayIcon, but I don't…
fvgs
  • 21,412
  • 9
  • 33
  • 48
1
vote
0 answers

Click On Option From MenuStrip Control(tray notification icons)

i want do something like: this code opens the tray notification icons window: Dim Shell_TrayWnd As IntPtr = FindWindow("Shell_TrayWnd", "") Dim TrayNotifyWnd As IntPtr = FindWindowEx(Shell_TrayWnd, 0, "TrayNotifyWnd", "") Dim TrayNotifyButtonWnd As…
sthml
  • 47
  • 2
  • 7
1
vote
2 answers

trayicon.displaymessage text size java

This is my first post in this forum and I really hope that it will be answered ASAP. I'm new to Java and loves trying different things often. I thought of making simple balloon message application in Java that pops up at certain time in the system…
J Akhtar
  • 669
  • 1
  • 7
  • 25
1
vote
2 answers

Git repository sniffer

I am looking for application(desktop or chrome extension or firefox extension) that listen to all of the changes that git repository can have, and send push notification status about that changes, in order to notify all the participant in the…
Meir
  • 91
  • 2
  • 6