Anrich Conradie
Anrich Conradie

Reputation: 9

Can java detect windows 7 notifications

Is it possible for java code to detect when another program notification(the orange flicker on the task bar) appears?

http://community.skype.com/skypec/attachments/skypec/Windows_archive/124867/1/Skype%20Notifcation.jpg

Upvotes: 0

Views: 122

Answers (1)

Andremoniy
Andremoniy

Reputation: 34900

This is impossible via standard java API, but it is possible via JNI. You have to write your own wrappers under Windows API (some own DLL for export special API fucntions) to catch such events.

A little googling gives us several links about this theme:

Making Windows API calls from JAVA

Making Native Windows API calls from within a Java Application

Upvotes: 1

Related Questions