you could look at it that way haha.kerberus wrote:Dallas did notHe politely declined because cos he's too modest to accept all the medals he should get.rudely reject
Centre Ladder rule?
-
- Posts: 198
- Joined: Mon Oct 10, 2016 10:51 pm
-
- Posts: 198
- Joined: Mon Oct 10, 2016 10:51 pm
For anyone who has landed on this and wanting a solution. As "to75ne" suggested, the best way is by creating a script to run on Auto Hot Keys. Here's how...
1. Download Auto Hot Keys.
2. Right click on your desktop, go to "new" and click on "AutoHotKey script".
3. Right click the file and click "Edit"
4. Delete anything already in the file and copy the following text...
#Persistent
SetTimer, PressTheKey, 120000
Return
PressTheKey:
Send, {Enter}
Return
5. Save the file. Double click it and it should run in the background. The "120000" number is the number of milliseconds it waits before pressing the enter key again. I have this set to do it every 2 minutes but you can change it to whatever you like (60000 per minute).
6. Watch as it creates a new paragraph every 2 minutes while you're on a forum and trying to explain to people how to create a script...
1. Download Auto Hot Keys.
2. Right click on your desktop, go to "new" and click on "AutoHotKey script".
3. Right click the file and click "Edit"
4. Delete anything already in the file and copy the following text...
#Persistent
SetTimer, PressTheKey, 120000
Return
PressTheKey:
Send, {Enter}
Return
5. Save the file. Double click it and it should run in the background. The "120000" number is the number of milliseconds it waits before pressing the enter key again. I have this set to do it every 2 minutes but you can change it to whatever you like (60000 per minute).
6. Watch as it creates a new paragraph every 2 minutes while you're on a forum and trying to explain to people how to create a script...