dwaynek Posted May 10, 2018 Share Posted May 10, 2018 traytip isn't working in windows 10. nothing happens when i use the Traytip command. here's a simple script i used: TrayTip("I'm a title", "I'm the message", 5) i tried changing the registry setting HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced ( which didn't have EnableBalloonTips) and creating a DWORD entry called EnableBalloonTips and setting it to 1 and logging off then back in. that did not resolve the problem. i'm running Windows 10 v1709 b16299.431 Link to comment Share on other sites More sharing options...
BrewManNH Posted May 10, 2018 Share Posted May 10, 2018 Post a runnable script that demonstrates your issue. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
dwaynek Posted June 19, 2018 Author Share Posted June 19, 2018 i just did. that one liner i posted should produce a line appearing at the system tray, should it not? yet it does nothing. Link to comment Share on other sites More sharing options...
BrewManNH Posted June 19, 2018 Share Posted June 19, 2018 (edited) I ran it, works ok for me Edited June 19, 2018 by BrewManNH If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
badcoder123 Posted June 19, 2018 Share Posted June 19, 2018 Works for me... Link to comment Share on other sites More sharing options...
Kloud Posted June 9, 2019 Share Posted June 9, 2019 In case anyone is bothering with this issue, I had to activate notifications again since I had them disabled to fix this *epicfacepalm*. winkey + I -> System -> Notifications & actions -> enable notifications Link to comment Share on other sites More sharing options...
legend Posted July 21, 2019 Share Posted July 21, 2019 I can confirm that traytip is not working here as well, windows 10 x64, new installation. Notifications are enabled. Link to comment Share on other sites More sharing options...
Nine Posted July 21, 2019 Share Posted July 21, 2019 Works for me without doing anything special... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
legend Posted July 22, 2019 Share Posted July 22, 2019 it's working fine on my other win10 pc as well, it's running windows 10 x64 pro, while the one that it isn't working on is running win10 x64 home, but there really should be no difference regarding that.. Link to comment Share on other sites More sharing options...
swcoll Posted March 30, 2020 Share Posted March 30, 2020 I had a similar problem and the solution turn out to be to turn Focus Assist off (winkey + I -> System -> Focus Assist off). Or maybe you can configure it to let your app show notifications specifically. I turned Focus Assist on a whole while ago and have completely forgotten about it. Link to comment Share on other sites More sharing options...
pseakins Posted November 26, 2023 Share Posted November 26, 2023 (edited) I don't know if I should start a new thread but Traytip() does not work on my new Windows 11 Pro 23H2 Mini PC either. Firstly, I have found that, for me, the tray tip will not display at all unless there is some text in the title field. Additionally, the first "properly formatted" tray tip does not display regardless, yet the second and subsequent tray tips do display. My example script below demonstrates what I am talking about. So TT3 is the first to display, TT4 does not display and then TT5 does and of course TT6 displays 5 times. (Yes, I have notifications enabled). ; $TIP_ICONASTERISK (1) = Info icon ; $TIP_NOSOUND (16) = Disable sound TrayTip("TT1", "Dummy. This tip will not be seen.", Default, 17) Sleep(1000) TrayTip("", "This tip will also not be seen.", Default, 17) Sleep(1000) TrayTip("TT3", "This tip will be the first seen.", Default, 17) Sleep(2000) TrayTip("", "Again this tip will be not be seen as it has no title.", Default, 17) Sleep(2000) TrayTip("TT5", "This will be the second tip displayed.", Default, 17) Sleep(2000) For $i = 5 To 1 Step -1 TrayTip("TT6", "Tray tip visible 5 times: (" & $i & ")", Default, 17) Sleep(1000) Next Edited November 26, 2023 by pseakins Added more information. Phil Seakins Link to comment Share on other sites More sharing options...
Andreik Posted November 26, 2023 Share Posted November 26, 2023 Just tested on Win11 22H2 and works fine but it might be something broken in 23H2. Wait for someone to confirm this but anyway it's more a windows related issues. When the words fail... music speaks. Link to comment Share on other sites More sharing options...
pseakins Posted December 1, 2023 Share Posted December 1, 2023 (edited) It wasn't working in 22H2 either. I have found several issues, some bizarre, with AutoIt under Windows 11. I will try to document them on the forum when I find time. Ie, task manager shows the name of running scripts as aut2exe.exe instead of the actual name of the exe. I found it necessary to enter the full name of the target exe into the description field of resource update during compilation. Intermittently, defining an icon for the executable during compilation is ignored. Works on some scripts but not on others. Could it be because the script name starts with "test"? Maybe due to some buffering issue with W11. Setting a compiled script to run at startup via W+R\shell:startup does not work. It does start the exe but it is hiding somewhere in the background and does not actually function, its hotkeys don't work, despite running as administrator and every other trick I can think of. EDIT: The above few items are intermittent. Sometimes it goes away when I reboot, other times, I dunno, it works - it doesn't work. I get confused because 'puters are supposed to be consistent and repeatable and I suspect that dementia may be setting in. Edited December 15, 2023 by pseakins Typo. Phil Seakins 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