Page 1 of 1
Display your text in the status bar and change the custom button icon
Posted: 26 Apr 2024 08:10
by zakoul
There is a button with this script:
Code: Select all
if (copier() == "") {
copier("TeraCopy|%ProgramW6432%\TeraCopy\TeraCopy.exe");
msg "TeraCopy", , , "Copy Handler";
}
else {
copier("");
msg "XYcopy", , , "Copy Handler";
}
How can I output information to the status bar instead of "msg" ?
Re: Display your text in the status bar
Posted: 26 Apr 2024 08:13
by jupe
status
Re: Display your text in the status bar
Posted: 26 Apr 2024 08:17
by zakoul
jupe wrote: ↑26 Apr 2024 08:13status
Thank you!
Re: Display your text in the status bar
Posted: 26 Apr 2024 08:27
by zakoul
One more question: Is it possible to somehow change the icon of the user button in the script depending on the state of "copier()" ?
If copier() = "" then button icon = xycopy.ico, else button icon = teracopy.ico
Re: Display your text in the status bar
Posted: 26 Apr 2024 08:29
by jupe
ctbicon
BTW these cmd names are pretty self explanatory if you look.
Re: Display your text in the status bar
Posted: 26 Apr 2024 08:36
by zakoul
jupe wrote: ↑26 Apr 2024 08:29
ctbicon
BTW these cmd names are pretty self explanatory if you look.
Thank you!