TheChiefMeat Posted April 18, 2018 Posted April 18, 2018 I'm trying to figure out how to change the hover taskbar text in Windows 10 (see image below) but I can't figure out with parameter needs to be set. Does anyone here know what I need to do?
orbs Posted April 18, 2018 Posted April 18, 2018 (edited) that frame is called "tooltip", and the text inside is referred to as "tooltip text". to set the default tooltip text for your compiled script, add this line to your script: #AutoIt3Wrapper_Res_Description=required text goes here in SciTE, click Help > SciTE Help from the menu, then browse down to Extra Utilities \ AutoIt3Wrapper \ Directives Available to see what other possibilities are at your disposal. to set the tooltip text at run time, use the function: TraySetToolTip() finally, as far as i recall, to clear the tooltip text so the entire tooltip simply does not appear when hovering over the icon, you can use this (undocumented) method: TraySetToolTip(Chr(0)) Edited April 18, 2018 by orbs Signature - my forum contributions: Spoiler UDF: LFN - support for long file names (over 260 characters) InputImpose - impose valid characters in an input control TimeConvert - convert UTC to/from local time and/or reformat the string representation AMF - accept multiple files from Windows Explorer context menu DateDuration - literal description of the difference between given dates Apps: Touch - set the "modified" timestamp of a file to current time Show For Files - tray menu to show/hide files extensions, hidden & system files, and selection checkboxes SPDiff - Single-Pane Text Diff
TheChiefMeat Posted April 18, 2018 Author Posted April 18, 2018 Hmm, I guess Windows must of been caching the previous tray title in explorer then, because I already had that set xD Thanks anyway, It's working fine now.
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