vote up 0 vote down star

I made one small application using flex . it is working correctly but i want that application icon show on system tray .how wiill i do for that ?

i used

 if (NativeApplication.supportsSystemTrayIcon) {
            NativeApplication.nativeApplication.autoExit = false;
            icon.contentLoaderInfo.addEventListener(Event.COMPLETE, iconLoadComplete);
            icon.load(new URLRequest("icons/AIRApp_16.png"));

            var systray:SystemTrayIcon = 
                NativeApplication.nativeApplication.icon as SystemTrayIcon;
            systray.tooltip = "AIR application";
            systray.menu = iconMenu;
        }

this functions but not use .. so could u refer any another example ?

flag
Can you rephrase your problem and/or question? It is not apparent as to what your problem is. – dirkgently May 2 at 7:33
Are you still looking for a solution to this? – Gabriel May 30 at 7:11

1 Answer

vote up 1 vote down

Google throws up a lot of results. Here is one such.

link|flag

Your Answer

Get an OpenID
or

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