Search found 1317 matches
- Apr 19th, ’21, 05:20
- Forum: General Discussion
- Topic: removing pop up when hovering mouse on top of screen
- Replies: 1
- Views: 14
Re: removing pop up when hovering mouse on top of screen
Preferences/Start Menu - Show menu on: None.
- Apr 16th, ’21, 18:12
- Forum: User Commands and Scripts
- Topic: Script for calculating how many days are left til X, which doesn't work 100%...
- Replies: 11
- Views: 98
Re: Script for calculating how many days are left til X, which doesn't work 100%...
If you would be using several scripts containing guis, they could get in conflict.
- Apr 16th, ’21, 16:43
- Forum: User Commands and Scripts
- Topic: Script for calculating how many days are left til X, which doesn't work 100%...
- Replies: 11
- Views: 98
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,, % DateDiff( A_Now, TargetDate...
- Apr 15th, ’21, 21:12
- Forum: User Commands and Scripts
- Topic: Script for calculating how many days are left til X, which doesn't work 100%...
- Replies: 11
- Views: 98
Re: Script for calculating how many days are left til X, which doesn't work 100%...
Code: Select all
~Esc::
SetTimer, UpdateCountdown, off
Gui, Destroy
return

- Apr 15th, ’21, 10: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: 98
Re: Script for calculating how many days are left til X, which doesn't work 100%...
Then change it to
Escape will keep it's native function.
Code: Select all
~Esc::
SetTimer, UpdateCountdown, off
return
- Apr 15th, ’21, 07:45
- Forum: User Commands and Scripts
- Topic: Script for calculating how many days are left til X, which doesn't work 100%...
- Replies: 11
- Views: 98
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
In addition, as last time, you need to add Gui, Destroy line just before the Gui, Show line.
Code: Select all
Esc::
SetTimer, UpdateCountdown, off
return
- Apr 14th, ’21, 14:56
- Forum: Announcements
- Topic: Video Tutorials Released
- Replies: 0
- Views: 63
Video Tutorials Released
We have recently released a series of FastKeys video tutorials. The series focuses on how to use FastKeys to automate your daily computer activities and save hours of typing. In the first series of the videos we explain FastKeys main features available to you and give the examples on how to easily c...
- Apr 5th, ’21, 18:08
- Forum: Suggestions
- Topic: Scroll page
- Replies: 6
- Views: 86
Re: Scroll page
I tried and it always works for me, it must be something else.
- Apr 4th, ’21, 20:02
- Forum: User Commands and Scripts
- Topic: Script for calculating the difference between two dates, which doesn't work 100%...
- Replies: 4
- Views: 59
Re: Script for calculating the difference between two dates, which doesn't work 100%...
Just before first Add:
Code: Select all
...
HowLongAutoExec:
Gui, SpanCalc:Destroy
Gui, SpanCalc:Add, Text, , Enter Date One:
Gui, SpanCalc:Add, DateTime, vDate1, LongDate
...
- Apr 4th, ’21, 09:19
- Forum: User Commands and Scripts
- Topic: Script for calculating the difference between two dates, which doesn't work 100%...
- Replies: 4
- Views: 59
Re: Script for calculating the difference between two dates, which doesn't work 100%...
If you are using Type: Command you need to Add this before creating a Gui (Gui, Add): Gui, SpanCalc:Destroy and remove the following last couple of lines, as they have impact on all scripts: ; Enable mousewheel in AutoHotkey GUIs #If MouseIsOver("ahk_class AutoHotkeyGUI") WheelUp::Send {Up} WheelDow...