Search found 186 matches

by Oblomov
May 9th, ’21, 19:19
Forum: General Discussion
Topic: A shortcut not working, without the window field...
Replies: 2
Views: 2678

Re: A shortcut not working, without the window field...

This cannot be, are you sure the Window field is empty? If the problem persists, please contact our support mail. Mhm... I tried looking this up (should've done this in the first place, my bad tbh 😔) and e.g.: https://autohotkey.com/board/topic/89174-send-ctrlw-to-chrome-browser-no-send-method-work...
by Oblomov
May 5th, ’21, 11:56
Forum: General Discussion
Topic: A shortcut not working, without the window field...
Replies: 2
Views: 2678

A shortcut not working, without the window field...

Hello,

I've got the following shortcut:
Image

Which works fine, but if you empty the window field, it stops working altogether... I have no other shortcuts that start with 'CTRL + W'. I've also tried removing and adding this shortcut back

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

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: 3164

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: 3164

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: 14520

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: 14520

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: 14520

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: 14520

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: 14520

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 😔