GMXeon 0 Posted October 2, 2007 How would I use something like TrayCreateItem, so I can see it when I right click the icon in the bottom right, show a string then text? All I could think of was this.... $VAR = 0 $VARTemp = TrayCreateItem ( "TEXT " + $VAR, 1 ) Which would...er, want to show up as "TEXT 0" with pause and exit below it. Share this post Link to post Share on other sites
evilertoaster 3 Posted October 2, 2007 (edited) $VAR = 0 $VARTemp = TrayCreateItem ( "TEXT " & $VAR, 1 ) That's my understanding of your question at least. Might just be me but it seemed to be worded very...unusually... Edited October 2, 2007 by evilertoaster Share this post Link to post Share on other sites
GMXeon 0 Posted October 2, 2007 Oh, so simple...So much for being good at coding Java and C++ >_> Share this post Link to post Share on other sites
evilertoaster 3 Posted October 2, 2007 I used to make the same mistake alot Share this post Link to post Share on other sites