Search found 184 matches

by Oblomov
Apr 21st, ’21, 19:41
Forum: General Discussion
Topic: Is it perhaps possible to repeat one's last command?
Replies: 4
Views: 3129

Re: Is it perhaps possible to repeat one's last command?

Possible but not likely to be implemented soon. What would be the typical usage/need? Gotcha. Off the top of my head, to repeat a macro that didn't go through the first time. I've experienced that selecting something through quick find, doesn't always get executed... this could also apply for e.g. ...
by Oblomov
Apr 21st, ’21, 09:35
Forum: General Discussion
Topic: Is it perhaps possible to repeat one's last command?
Replies: 4
Views: 3129

Re: Is it perhaps possible to repeat one's last command?

Marko wrote: Apr 20th, ’21, 20:40 Currently not. How would you repeat the latest command? By using a special key shortcut?
Yep, that would be ideal 😁
by Oblomov
Apr 19th, ’21, 13:14
Forum: General Discussion
Topic: Is it perhaps possible to repeat one's last command?
Replies: 4
Views: 3129

Is it perhaps possible to repeat one's last command?

Hello,

I was wondering, is it perhaps possible to have some sort of a function, where one would be able to repeat one's last command?

Kind regards,
...
by Oblomov
Apr 17th, ’21, 14:54
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

Marko wrote: Apr 16th, ’21, 18:12 If you would be using several scripts containing guis, they could get in conflict.
Gotcha, thanks again! :D
by Oblomov
Apr 16th, ’21, 17:00
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

I checked the script again. If your intention is just to check the number of days left, then the timer is not needed. I also renamed the gui, not to mix up with other guis you may have. TargetDate := "2021" "04" "28" Gui, dd:Destroy Gui, dd:Font, s12 Gui, dd:Add, Text,...
by Oblomov
Apr 16th, ’21, 08:47
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

Marko wrote: Apr 15th, ’21, 21:12

Code: Select all

~Esc::
SetTimer, UpdateCountdown, off
Gui, Destroy
return
:D
Thanks so much! Hm... for some reason it's still not quite closing through Esc however 😔
I'm so sorry Marko 😢
by Oblomov
Apr 15th, ’21, 11:50
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

Then change it to ~Esc:: SetTimer, UpdateCountdown, off return Escape will keep it's native function. Awesome! Thank you so much Marko! 🎕 The Esc is now working in other applications. Would of course be nice if one could also, still close the AHK window itself with the Esc; but Alt F4 will have to ...
by Oblomov
Apr 15th, ’21, 10:10
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

To add on the prior message, the Esc is now no longer working in other applications, so I'm guessing it's getting sort of locked still 😔
by Oblomov
Apr 15th, ’21, 09:41
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Re: Script for calculating how many days are left til X, which doesn't work 100%...

You should remove Esc::ExitApp line as it exits the script and replace it with Esc:: SetTimer, UpdateCountdown, off return In addition, as last time, you need to add Gui, Destroy line just before the Gui, Show line. Thank you for indicating this! TargetDate := "2021" "04" "...
by Oblomov
Apr 14th, ’21, 21:17
Forum: User Commands and Scripts
Topic: Script for calculating how many days are left til X, which doesn't work 100%...
Replies: 11
Views: 14395

Script for calculating how many days are left til X, which doesn't work 100%...

Hi, So this script: TargetDate := "2021" "04" "28" UpdateCountdown: SetTimer, UpdateCountdown, % 86400000 - 1000 * DateDiff( A_Year A_MM A_DD, A_Now, "s" ) Gui, Show, W250 H50, % DateDiff( A_Now, TargetDate, "d" ) " Days Left" Return Esc::E...