Search found 27 matches

by RunarSF
14 Mar 2018, 07:42
Forum: Ask for Help (v1)
Topic: on minimize
Replies: 2
Views: 626

on minimize

How can I run a script when the minimize button is clicked on a window? (not when a window loses focus)
by RunarSF
22 Feb 2018, 17:58
Forum: Ask for Help (v1)
Topic: Send images Topic is solved
Replies: 4
Views: 1557

Re: Send images Topic is solved

I do have an idea in mind, but I'm not sure I know how to explain it. Anyways, thanks for trying at least ;)
by RunarSF
22 Feb 2018, 17:56
Forum: Ask for Help (v1)
Topic: Crtl gets stuck
Replies: 8
Views: 1372

Re: Crtl gets stuck

Sounds strange, could you send me what you're trying to do?
by RunarSF
22 Feb 2018, 17:54
Forum: Ask for Help (v1)
Topic: Script only works sometimes
Replies: 3
Views: 856

Re: Script only works sometimes

I'm guessing your right alt key is an AltGr key, if that is the case, this code should work. More info on hotkeys can be found in the documentation. #SingleInstance, Force <^>!+7::SendRaw, | !+7::SendRaw, | <^>!7::SendRaw, \ !7::SendRaw, \ Holy crap, that worked! I LOVE YOU <3 But the weird thing i...
by RunarSF
22 Feb 2018, 11:08
Forum: Ask for Help (v1)
Topic: Crtl gets stuck
Replies: 8
Views: 1372

Re: Crtl gets stuck

No problem! Feel free to reply any time, I'll do my best to help you.
by RunarSF
22 Feb 2018, 09:21
Forum: Ask for Help (v1)
Topic: [repost] SendInput, {Shift}{Shift} in IntelliJ is not working
Replies: 6
Views: 1808

Re: SendInput, {Shift}{Shift} in IntelliJ is not working

Can't really test it, as I'm not using IntelliJ, but you should be able to just change the sleep value to change how fast the second shift key is pressed.

Code: Select all

#SingleInstance, Force ; Skips replace dialog
#Z::
	SendInput, {Shift}
	sleep, 50
	SendInput, {Shift}
return
by RunarSF
22 Feb 2018, 09:04
Forum: Ask for Help (v1)
Topic: Switch tabs with holding Ctrl
Replies: 1
Views: 571

Re: Switch tabs with holding Ctrl

Are you thinking of something like this?

Code: Select all

#SingleInstance, Force ; Skip replace dialog.
CapsLock & e::^Tab
CapsLock & q::^+Tab
by RunarSF
22 Feb 2018, 08:47
Forum: Ask for Help (v1)
Topic: Crtl gets stuck
Replies: 8
Views: 1372

Re: Crtl gets stuck

The SingleInstant is so that you won't accidentally run multiple instances of the script. It's not needed, but I highly recommend it.
by RunarSF
22 Feb 2018, 08:16
Forum: Ask for Help (v1)
Topic: Send images Topic is solved
Replies: 4
Views: 1557

Re: Send images Topic is solved

Well my instant messenger is Discord, but I would like the script to work with as many instant messengers as possible, without using an api.
by RunarSF
21 Feb 2018, 22:48
Forum: Ask for Help (v1)
Topic: trigger by text string instead of hotkey, also need help with input Topic is solved
Replies: 2
Views: 1511

Re: trigger by text string instead of hotkey, also need help with input Topic is solved

Your problem was that you had assigned the string "Run in cmd:" to when you typed "cmd- ", the rest of the script won't run because you don't have a trigger for it. You also misplaced the end key for the Input, which would make it take input until you closed the script. Hope this helps! :) #SingleIn...
by RunarSF
21 Feb 2018, 22:30
Forum: Ask for Help (v1)
Topic: Need help with command Topic is solved
Replies: 1
Views: 582

Re: Need help with command Topic is solved

I'm not sure I understand exactly what you mean, the following code will hold down the W key for 128ms.

Code: Select all

SendInput, {W down}
sleep, 128
SendInput, {W up}
by RunarSF
21 Feb 2018, 22:23
Forum: Ask for Help (v1)
Topic: Crtl gets stuck
Replies: 8
Views: 1372

Re: Crtl gets stuck

Here you go.

Code: Select all

#SingleInstance, Force
RControl::AppsKey
by RunarSF
21 Feb 2018, 22:08
Forum: Ask for Help (v1)
Topic: Script only works sometimes
Replies: 3
Views: 856

Re: Script only works sometimes

I'm guessing your right alt key is an AltGr key, if that is the case, this code should work. More info on hotkeys can be found in the documentation.

Code: Select all

#SingleInstance, Force
<^>!+7::SendRaw, |
!+7::SendRaw, |
<^>!7::SendRaw, \
!7::SendRaw, \
by RunarSF
21 Feb 2018, 20:47
Forum: Ask for Help (v1)
Topic: Send images Topic is solved
Replies: 4
Views: 1557

Send images Topic is solved

Is it possible to send a gif stored locally on the machine? (Sending the image to someone through an instant messenger) Or if that's not possible, can you copy a gif to clipboard? I have tried using the GDI+ library, but it would turn my .gif files into .png.
by RunarSF
16 Feb 2018, 10:13
Forum: Ask for Help (v1)
Topic: AHK syntax(?) help Topic is solved
Replies: 2
Views: 716

Re: AHK syntax(?) help Topic is solved

Thank you so much!
by RunarSF
16 Feb 2018, 08:48
Forum: Ask for Help (v1)
Topic: AHK syntax(?) help Topic is solved
Replies: 2
Views: 716

AHK syntax(?) help Topic is solved

While looking at AHK code, I notice a lot of people use "% something", does this have a name, and what does it do?
by RunarSF
03 Dec 2017, 16:39
Forum: Ask for Help (v1)
Topic: Ahk todo list with input- and checkboxes Topic is solved
Replies: 3
Views: 2180

Re: Ahk todo list with input- and checkboxes Topic is solved

I know how to do the ini part, the other part is the difficult one, not really sure how I'm going to do it. #SingleInstance Force #Persistent SetTitleMatchMode 2 SetWorkingDir %A_ScriptDir% DetectHiddenWindows, On #EscapeChar ¤ CoordMode, Mouse, Screen gui: Gui, +AlwaysOnTop +LastFound +Caption Gui,...
by RunarSF
03 Dec 2017, 13:55
Forum: Ask for Help (v1)
Topic: Ahk todo list with input- and checkboxes Topic is solved
Replies: 3
Views: 2180

Ahk todo list with input- and checkboxes Topic is solved

Let's get right to the point; I want to create a todo script/list, the only thing I'm struggling with atm is adding a checkbox and saving it's contents to an .ini file based on what is in an edit box. If I type "Finish todo script" in an edit box, it will create a checkbox with that text and save it...
by RunarSF
11 Nov 2017, 09:07
Forum: Ask for Help (v1)
Topic: Wacom input at finger position
Replies: 7
Views: 1539

Re: Wacom input at finger position

Hi again, I'm not an advanced user of AutoHotkey, so this does seem out of my skill level to understand how to setup. Would you be able to create an example with the files that I need to use and how to use them?
by RunarSF
10 Nov 2017, 06:31
Forum: Ask for Help (v1)
Topic: Wacom input at finger position
Replies: 7
Views: 1539

Re: Wacom input at finger position

Thanks, I'll take a look at it.

Go to advanced search