AutoHotkey - Motivation With AHK - Random Events

preview_player
Показать описание
Lets use AHK to make a motivation tool that will display random events during current times of the day and as long as your active at your computer.

CODE:
Рекомендации по теме
Комментарии
Автор

I actually liked this motivational AHK tool! Seems easy to use and entertaining! This tool really can work like some kind reminder for things which are not important, but nice to know or be distracted for a few seconds from casual work. Great idea!

rimantasdanilevicius
Автор

As always, great stuff and very informative. I used to have a work appropriate ‘gif of the day’ that my employees could pull from a context menu. But that took me inserting a different link in the script each morning. It was too manual so I stopped doing it. Im sure there is a better way to do that also.

bartrouge
Автор

15 likes and comments lol (it was 14, and I knew that if I commented this, it would make there be 15 comments, so I liked)

Trokumukum
Автор

Can u make auto hotkey multiple window automation running at same time

laigrimmie
Автор

I’d like to assign Q and W to switch tabs left and right in chrome, BUT send “Q” and “W” as normal when I am in a text field (search boxes etc.). Is this possible?

skripnigor
Автор

Hello, was thinking of using the 'random' logic to make dad jokes appear in a current gui that already appears from another script. But I don't know enough about the below code to alter it. Do you know how to change this from a message box to a variable that I can place in a gui?

FileRead, list, dj.txt ; Load the list from a text file
obj := [] ; Create original obj to clone from
Loop, Parse, list, `n`r
(Mod(A_Index, 2) = 0) ? (obj.Push(Line1 . "`n" . A_LoopField)) : (Line1 := A_LoopField)
if (!o.length())
o := obj.Clone() ; Clone orignal obj when o is empty or not created yet.
random, r, 1, % o.length() ; generates a random number between 1 and the current length of the array of words
msgbox, ;% o.removeAt(r) ; remove the word from the given random position in the array returning it

bartrouge
Автор

I know I asked this on the last video I wanted to ask if you know how to fix the problem saying 71 hot keys received in the last 1483ms because I was playing a game and I was pressing a lot of buttons because it was a rhythm game and it popped up so do you know any solution

cookiecrust