runsnake Posted February 22, 2013 Share Posted February 22, 2013 (edited) like following fragment. code: ---------------------------------------------------------------------- If Ping('www.google.com', 500) Then _ChangeTrayIconColor('DefaultColor') Else _ChangeTrayIconColor('GreyColor') EndIf Func _ChangeTrayIconColor($Color) ;.....how to write? EndFunc ----------------------------------------------------------------------- Don't use TraySetIcon(), because my program has only one file: App.exe If using <ModernMenuRaw.au3> to create trayicon, it can change the trayIcon color, please tell me how to do ? Edited February 22, 2013 by runsnake Link to comment Share on other sites More sharing options...
Developers Jos Posted February 22, 2013 Developers Share Posted February 22, 2013 Set a new trayicon with TraySetIcon(). See helpfile for details. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
runsnake Posted February 23, 2013 Author Share Posted February 23, 2013 Set a new trayicon with TraySetIcon(). See helpfile for details.JosI saw the help of TraySetIcon() again and again, but i could not find a way to achive it.please give a example code. tks! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted February 23, 2013 Moderators Share Posted February 23, 2013 runsnake, Try running this: #include <File.au3> ; Get path to Autoit installed icons $sIconPath = StringReplace(@AutoItExe, "AutoIt3.exe", "Icons\") ; List icons $aIcon_List = _FileListToArray($sIconPath, "*.ico", 1) ; Loop through the icon list For $i = 1 To $aIcon_List[0] ; Allow time to see the icon Sleep(2000) ; Change the icon TraySetIcon($sIconPath & $aIcon_List[$i]) Next Clearer now? M23 HamidZaeri 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now