With the new FireMonkey cross-platform tool, how does one create a tray icon? With Delphi it used to be TTrayIcon.

The documentation has nothing, and no other questions seem to answer this. Would appreciate any idea (I can always resort to system programming per platform, but that's just if there really is no such a thing).

link|improve this question
1  
Does osx have an equivalent to notification icon and what is it? – David Heffernan Nov 17 '11 at 18:08
1  
Yes, you can read about it in Stack Overflow question stackoverflow.com/questions/1970876/… – Etamar Laron Nov 17 '11 at 18:11
I've seen non Java apps use the tray icon on the Mac also, like Plex server. The tray on the Mac is upper right corner. It's possible on the platform, but I don't know about FireMonkey. NSStatusItem on Mac OS. – Marcus Adams Nov 17 '11 at 18:38
1  
You must use the NSStatusBar and NSStatusItem classes – RRUZ Nov 17 '11 at 22:21
2  
I know, I just post the OS X alternative to create something like the VCL TTrayIcon. As far i know there is not a cross platform Tray Icon component, but you can write your own implementing the Windows version based in the Shell_NotifyIcon for the Windows side and using the NSStatusItem in OSX. – RRUZ Nov 18 '11 at 6:51
show 1 more comment
feedback

1 Answer

The Apesuite component package for Firemonkey has a TTrayIcon component that works in both Windows and OS X. It's not free but it would solve your problem.

http://arcana.sivv.com/apesuite

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.