van_renier Posted January 23, 2006 Posted January 23, 2006 In the help file for v3.1.1.103, there is a sample script which has the following line: TraySetIcon("warning") The help file shows it as: TraySetIcon ( [iconfile [, iconID] ) the above example only has a 'filename' nothing more. Where is this aboe example pulling the warning icon from? is it defaulting to the shell32.dll ? Is it an internal reference? if so, what other options/values are available? Thanks for your time and assistance. Van
Micha1405 Posted January 23, 2006 Posted January 23, 2006 maybe this sample help you: #Include <Constants.au3> #NoTrayIcon Opt("TrayMenuMode",1) ; Default tray menu items (Script Paused/Exit) will not be shown. $exititem = TrayCreateItem("Exit") TraySetState() $start = 0 While 1 $msg = TrayGetMsg() If $msg = $exititem Then ExitLoop $diff = TimerDiff($start) If $diff > 1000 Then TraySetIcon("Shell32.dll",Random(0,100,1)) $start = TimerInit() EndIF WEnd Exit My TrayToolBar
CyberSlug Posted January 23, 2006 Posted January 23, 2006 Appears to be an undocumented feature. Quick trial and error revealed the following (and I imagine these are the main ones since these are the icons you have have for a MsgBox): stop question warning info Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
van_renier Posted January 23, 2006 Author Posted January 23, 2006 maybe this sample help you:#Include <Constants.au3>#NoTrayIconOpt("TrayMenuMode",1) ; Default tray menu items (Script Paused/Exit) will not be shown.$exititem = TrayCreateItem("Exit")TraySetState()$start = 0While 1 $msg = TrayGetMsg() If $msg = $exititem Then ExitLoop $diff = TimerDiff($start) If $diff > 1000 Then TraySetIcon("Shell32.dll",Random(0,100,1)) $start = TimerInit() EndIFWEndExitNo... that didn't hit the point I was trying to make. the script you specified (which I saw and which made me wonder about the trayseticon("warning") ) actually has a DLL and the icon reference pointer specified. thanks, though.Van
van_renier Posted January 23, 2006 Author Posted January 23, 2006 Appears to be an undocumented feature. Quick trial and error revealed the following (and I imagine these are the main ones since these are the icons you have have for a MsgBox):stopquestionwarninginfoGreat... As long as it's undocumented, I know don't feel half as stupid as I did earlier for not finding it.Thanks.VanP.S. I said... "as I did earlier for 'not finding it.'"
sxmuse Posted January 24, 2006 Posted January 24, 2006 (edited) #Include <Constants.au3> #NoTrayIcon Opt("TrayMenuMode",1) $show_tray = TrayCreateItem("About this Program") ... run dispaly "TrayCreateItem" is Unknown function name help me ! Edited January 24, 2006 by sxmuse
ACalcutt Posted January 24, 2006 Posted January 24, 2006 its hard to read this post...the freaky guy on the side takes my attention Andrew Calcutt Http://www.Vistumbler.net Http://www.TechIdiots.net Its not an error, its a undocumented feature
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