I'd like to be able to monitor progress of a macro without a popup message window which gets in the way.
Is there a way I can send messages to the taskbar or systray? All I need is to show a number as it counts upwards. Having this down where the clck is and away from my present work would be really useful.
">message" in taskbar or systray
Moderators: JRL, Dorian (MJT support)
- Dorian (MJT support)
- Automation Wizard
- Posts: 1415
- Joined: Sun Nov 03, 2002 3:19 am
As MSched actions needs the focus, I'm not shure how not to interfere your "present work" ?
What about the "StartButton/Run "commandline"?
VBScript?
Or create a blank HTML page, with included statusbar countdown (javascript/vbscript), shrink it, position it.
So we're back to the focus issue ...
What about the "StartButton/Run "commandline"?
Code: Select all
Let>cd=100
Press CTRL
Press ESC
Release CTRL
Send>r
Label>Countdown
Sub>cd,1
If>cd<1,Exit
SetFocus>Run
Send>%cd%
Wait>0.7
Goto>Countdown
Label>Exit
SetFocus>Run
Press ESC
Or create a blank HTML page, with included statusbar countdown (javascript/vbscript), shrink it, position it.
So we're back to the focus issue ...

What about sound?
Now you only have to create a hundred sound snipets 
or use the OS's ding.wav (=submarine style!)

Code: Select all
Let>sc=101
Label>SpeakItOutLoud
Sub>sc,1
If>sc<1,Exit
Play>C:\MySound\%sc%.wav
Wait>0.7
Goto>SpeakItOutLoud
Label>Exit
Play>C:\MySound\bang.wav
Message>Bang!

or use the OS's ding.wav (=submarine style!)
- Dorian (MJT support)
- Automation Wizard
- Posts: 1415
- Joined: Sun Nov 03, 2002 3:19 am