Search found 13 matches

by TimeHorizon
13 Aug 2017, 13:35
Forum: Ask for Help (v1)
Topic: script to hold shift down when w key is held down?
Replies: 4
Views: 3235

Re: script to hold shift down when w key is held down?

Could be a better way to do this.. only thing is if you want to use shift with normal function, you won't be able.

Code: Select all

Loop
{
GetKeyState, KeyState, s

If (KeyState = "D")
{
	Send, {ShiftDown}
}
else If (KeyState = "U")
{
Send {ShiftUp}
}
}
return
by TimeHorizon
13 Aug 2017, 12:27
Forum: Ask for Help (v1)
Topic: Active screens?
Replies: 4
Views: 1150

Re: Active screens?

It could be that you need to add more delay. Give a generous 3 second delay between clicks and adjust as needed, as if you were doing it manually. Another option would be adding "WinWaitActive" to the script. comment out a few lines to see how the script is behaving, step at a time. #t:: Click ; I a...
by TimeHorizon
13 Aug 2017, 12:19
Forum: Ask for Help (v1)
Topic: Execute a program 30 minutes after startup Topic is solved
Replies: 2
Views: 1197

Re: Execute a program 30 minutes after startup Topic is solved

There may be a more elegant way to do this, but this will work. Put the script in your startup menu.

Code: Select all

sleep, 60000*30
run, programname.exe

Edit:

you may take a look at windows "Task Scheduler". AutoHotKey may not be a requirement.
by TimeHorizon
12 Aug 2017, 19:34
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6172

Re: Check if a box is checked in an other program

You might also try image search.
by TimeHorizon
12 Aug 2017, 19:22
Forum: Ask for Help (v1)
Topic: AutoHotKey with Remote Desktop (RDP)
Replies: 5
Views: 5392

Re: AutoHotKey with Remote Desktop (RDP)

If the RDP is connected to a network drive, can you have a script running

On the RDP that does;
Hotkey::
FileAppend, VolUp, mydoc.txt

on your PC that does

Loop
fileread, mydoc.txt

If In string, X
volUp


just an idea :P
by TimeHorizon
12 Aug 2017, 19:19
Forum: Ask for Help (v1)
Topic: What is Wrong With My Simple Test?
Replies: 10
Views: 2183

Re: What is Wrong With My Simple Test?

to clarify, do any scripts work on the laptop? Maybe try running as administrator? umm... hmm..

Edit: maybe try F keys instead of the modifier keys?
by TimeHorizon
12 Aug 2017, 16:25
Forum: Ask for Help (v1)
Topic: What is Wrong With My Simple Test?
Replies: 10
Views: 2183

Re: What is Wrong With My Simple Test?

works fine here, you may need to look through the rest of your code Title = Hello there return !y:: MsgBox The active window is "%Title%". return Also worked for me. I think it's his laptop that doesn't respond to it. I wonder if his alt requires a combo press of a fn key, like some do to use F keys.
by TimeHorizon
12 Aug 2017, 16:24
Forum: Ask for Help (v1)
Topic: Sending finger press instead of mouse Topic is solved
Replies: 3
Views: 1021

Re: Sending finger press instead of mouse Topic is solved

You may try looking at key history. have any script running, do your finger tap, then "open" the script (double click on the icon in the tray) and push control+k or find key history in the view menu.

https://www.autohotkey.com/docs/KeyList.htm#SpecialKeys
by TimeHorizon
12 Aug 2017, 16:13
Forum: Ask for Help (v1)
Topic: Understanding COM better Topic is solved
Replies: 1
Views: 823

Re: Understanding COM better Topic is solved

I'm sorry, i misread. I thought you were looking for a property list. i didnt see background color. Looks like at least in windows 7, it's not an option with out changing all of your computer colors. https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/changing-the-color-of-windows-me...
by TimeHorizon
12 Aug 2017, 16:10
Forum: Ask for Help (v1)
Topic: Sending finger press instead of mouse Topic is solved
Replies: 3
Views: 1021

Re: Sending finger press instead of mouse Topic is solved

I would think it just registers as a Lbutton or Rbutton depending on the gesture.
by TimeHorizon
12 Aug 2017, 16:07
Forum: Ask for Help (v1)
Topic: What is Wrong With My Simple Test?
Replies: 10
Views: 2183

Re: What is Wrong With My Simple Test?

Code: Select all

!y::
WinGetTitle, Title, a ;a = active window
MsgBox The active window is "%Title%".

Go to advanced search