rasim Posted January 28, 2008 Share Posted January 28, 2008 Hi! Create animated tray looks like possible in AutoIT? Link to comment Share on other sites More sharing options...
Paulie Posted January 28, 2008 Share Posted January 28, 2008 Hi! Create animated tray looks like possible in AutoIT?Create a different image for each frame, and then TraySetIcon the images. Link to comment Share on other sites More sharing options...
rasim Posted January 28, 2008 Author Share Posted January 28, 2008 Thanks Paulie, a know about this solution, but i think, what exist another (pretty) solution. Link to comment Share on other sites More sharing options...
Squirrely1 Posted January 28, 2008 Share Posted January 28, 2008 (edited) Say you used the freeware application called "Icon Developer" which was built by Stardock - you can find it on the web. You would use it to make two icon files, switch tray icons every 600 milliseconds or so, this way: $icon01 = @ScriptDir & "\pic01.ico" $icon02 = @ScriptDir & "\pic02.ico" $switch = False AdlibEnable("SwitchIcons", 600) Func SwitchIcons() If $switch Then TraySetIcon($icon01) Else TraySetIcon($icon02) EndIf $switch = Not $switch; brought to you by forum member - rasim EndFunc ;==>SwitchIcons Edited January 28, 2008 by Squirrely1 Das Häschen benutzt Radar Link to comment Share on other sites More sharing options...
rasim Posted January 29, 2008 Author Share Posted January 29, 2008 Thanks guys. Link to comment Share on other sites More sharing options...
therks Posted January 29, 2008 Share Posted January 29, 2008 Have a look at this. Made it a while ago for fun.http://www.therks.com/autoit/compiled/TrayCritters.zip My AutoIt Stuff | My Github Link to comment Share on other sites More sharing options...
rasim Posted January 29, 2008 Author Share Posted January 29, 2008 Saunders Nice job! I like it! Thank you! 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