ending Posted June 3, 2005 Share Posted June 3, 2005 I downloaded this script and it has ths neat WinXP information bubble down by the taskbar. I was wondering if anyone else knows how to do this because I wan't to include it in some of my scripts. Link to comment Share on other sites More sharing options...
GaryFrost Posted June 3, 2005 Share Posted June 3, 2005 Look up TrayTip in the help SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Link to comment Share on other sites More sharing options...
herewasplato Posted June 3, 2005 Share Posted June 3, 2005 (edited) I downloaded this script and it has ths neat WinXP information bubble down by the taskbar. I was wondering if anyone else knows how to do this because I wan't to include it in some of my scripts.<{POST_SNAPBACK}>from the help file on TrayTip:TrayTip("I'm a title", "I'm the message", 5, 1) MsgBox(4096,"", "Press OK to see another tip.") TrayTip("clears any tray tip","",0) TrayTip("", "A different tray tip.", 5) Sleep(5000)edit: too slow again............... Edited June 3, 2005 by herewasplato [size="1"][font="Arial"].[u].[/u][/font][/size] Link to comment Share on other sites More sharing options...
Valuater Posted June 3, 2005 Share Posted June 3, 2005 requires new beta version here ya go #include <GUIConstants.au3> #include <File.au3> #include <Array.au3> TraySetState (@SW_TRAYFLASH) MsgBox(64, "* NOTE * ", "the tray is now flashing", 5) TrayTip("HERE>>>>>>"," is where you will see your message", 5, 1) Sleep(3000) TraySetState (@SW_TRAYNOFLASH) flashing tray, tray tip example Enjoy! Link to comment Share on other sites More sharing options...
ending Posted June 3, 2005 Author Share Posted June 3, 2005 Ah! So thats what its called...a Tray Tip...lol Yeah, it helps if you know the real name of things . Thanks everyone! 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