Search found 1259 matches

by Shadowpheonix
11 Nov 2015, 11:39
Forum: Ask for Help (v1)
Topic: Is this possible?
Replies: 6
Views: 1905

Re: Is this possible?

It depends on your particular laptop and how they implemented the FN key. See Special Keys in the AutoHotkey documentation.
by Shadowpheonix
10 Nov 2015, 17:14
Forum: Ask for Help (v1)
Topic: automate cmd
Replies: 12
Views: 3388

Re: automate cmd

For my PUTTY terminal stuff, I send keyboard keys to fill out and to navigate between the fields (IE: Send DataForField1{Down 2}DataForField3).
by Shadowpheonix
10 Nov 2015, 16:50
Forum: Ask for Help (v1)
Topic: automate cmd
Replies: 12
Views: 3388

Re: automate cmd

Assuming I found the correct item ( Rocket BlueZone Passport terminal emulator), I will not be able to download the demo and try anything until this weekend. If someone else is able to do so before then (or is already familiar with the application), please chime in. :) After a quick glance at the sc...
by Shadowpheonix
10 Nov 2015, 10:50
Forum: Ask for Help (v1)
Topic: automate cmd
Replies: 12
Views: 3388

Re: automate cmd

As Exaskryz said, we cannot help you without more information about the program you are using.
by Shadowpheonix
09 Nov 2015, 11:44
Forum: Ask for Help (v1)
Topic: AutoScriptwriter ???
Replies: 2
Views: 1234

Re: AutoScriptwriter ???

For something comparable for AutoHotkey_L, take a look at Pulover's Macro Creator.
by Shadowpheonix
02 Nov 2015, 17:31
Forum: Ask for Help (v1)
Topic: Press 1 button, hold another one, then release 3'rd
Replies: 7
Views: 3908

Re: Press 1 button, hold another one, then release 3'rd

Exaskryz wrote:If you use the second example of Shadow's, I recommend using the KeyWait command instead of the While-loop. That should more precisely send the next couple of keystrokes.
Excellent point. I had completely forgotten about KeyWait. I have updated my previous post to use it.
by Shadowpheonix
02 Nov 2015, 17:20
Forum: Ask for Help (v1)
Topic: Multi lines
Replies: 4
Views: 1604

Re: Multi lines

For those trying to learn AHK, here is a third method to resolve this...

Code: Select all

#a::
Send, Henry Knoll
Send, 10081 103rd St. N.
Send, Stillwater, MN 55082
return
Also, in all of three of these methods, the comma in send, is optional.
by Shadowpheonix
02 Nov 2015, 17:14
Forum: Ask for Help (v1)
Topic: Looking for a way to protect trial software
Replies: 11
Views: 5247

Re: Looking for a way to protect trial software

I would suggest using two registry keys - one containing an encrypted version of the first run date & time, and the other containing an encrypted version of the last run date & time. The use of encryption will prevent casual users from reading or modifying the registry data, and by checking the curr...
by Shadowpheonix
02 Nov 2015, 16:23
Forum: Ask for Help (v1)
Topic: Press 1 button, hold another one, then release 3'rd
Replies: 7
Views: 3908

Re: Press 1 button, hold another one, then release 3'rd

Depending on the application you are using this with, one of these should work (you may need to adjust the Sleep , and may need to use SendPlay or SendInput instead of just Send ... x:: Send a While GetKeyState(x,"p") { Send b Sleep 10 } Send a Return x:: Send a{b down} KeyWait, x Send {b up}a Return
by Shadowpheonix
16 Oct 2015, 13:09
Forum: Ask for Help (v1)
Topic: close explorer-window after paste possible?
Replies: 6
Views: 1479

Re: close explorer-window after paste possible?

OK. This should do what you want... #SingleInstance force #NoEnv MediumSleep = 100 Return Numpad4:: clipboard = Send ^c ClipWait ; Wait for the clipboard to contain text. IfInString, Clipboard, mp3 { msgbox, 4, MeTeach wants to know..., do you want to send this file to usb G ? IfMsgBox, No Return If...
by Shadowpheonix
16 Oct 2015, 09:26
Forum: Ask for Help (v1)
Topic: close explorer-window after paste possible?
Replies: 6
Views: 1479

Re: close explorer-window after paste possible?

This should definitely be doable. Please post the code for your current macro, so that we can help you modify it to do what you want.
by Shadowpheonix
16 Oct 2015, 08:23
Forum: Ask for Help (v1)
Topic: Creating a simple script and launching it
Replies: 13
Views: 8147

Re: Creating a simple script and launching it

Before you actually hire anyone to remote in and do it for you... AutoHotkey comes with a utility called Window Spy. If you run that (easiest way is just right-click the AutoHotkey tray icon and select Window Spy) while both of your EverNote windows are open, does it show a difference between the tw...
by Shadowpheonix
15 Oct 2015, 11:28
Forum: Ask for Help (v1)
Topic: How to control 2 applications simultaneously Topic is solved
Replies: 3
Views: 1303

Re: How to control 2 applications simultaneously Topic is solved

Here is a very basic example of one way to do it... PowerTitle = PowerPoint window title ; Set this appropriately. PrompterTitle = Prompter software window title ; Set this appropriately. !1:: ; Alt+1 WinActivate, %PowerTitle% Send {F1} Return ^1:: ; Ctrl+1 WinActivate, %PrompterTitle% Send {F1} Ret...
by Shadowpheonix
15 Oct 2015, 11:21
Forum: Ask for Help (v1)
Topic: Some help for a beggah-I mean noob
Replies: 8
Views: 3599

Re: Some help for a beggah-I mean noob

Untested... #IfWinActive, ahk_exe TS3W.EXE <:: Send q Return >:: Send e Return #IfWinActive The Q to Quit needs to be disabled inside the Sims 3 itself. It has been too many years since I last played, so I do not remember exactly how to do that, but it can definitely be done (although it may require...
by Shadowpheonix
13 Oct 2015, 16:55
Forum: Ask for Help (v1)
Topic: Move multiple controls at once
Replies: 1
Views: 1120

Re: Move multiple controls at once

I would do it like this... gui,add,button,gRight,Right gui,add,button,gLeft y+10,Left gui,add,button,gUp y+10,Up gui,add,button,gDown y+10,Down gui,add,button,vMove1 x10 y300 h50 w100,Button1 to move gui,add,button,vMove2 x120 y300 h50 w100,Button2 to move gui,add,button,vMove3 x230 y300 h50 w100,Bu...
by Shadowpheonix
12 Oct 2015, 15:06
Forum: Ask for Help (v1)
Topic: Creating a simple script and launching it
Replies: 13
Views: 8147

Re: Creating a simple script and launching it

Here is one method using WinExist. To try it out, just replace EverNoteTitle with the window title of the EverNote window you want it to wait for...

Code: Select all

$^LButton::
SendInput, {LButton}
While !WinExist("EverNoteTitle")
    Sleep 10
SendInput, !{Tab}^w
by Shadowpheonix
09 Oct 2015, 10:25
Forum: Ask for Help (v1)
Topic: Send {somekey down}
Replies: 2
Views: 1050

Re: Send {somekey down}

I'm sorry but I can't figure this out... I want to hold the q key down. So I do a F10:: send {q down} return If I go into Notepad and press F10, in my mind, I should get a never ending series of q. Until I close the script. But I only get one q. Why is that? To be clear. I do not want to spam the q...
by Shadowpheonix
09 Oct 2015, 10:08
Forum: Ask for Help (v1)
Topic: Can a hotkey have a different command upon first press?
Replies: 14
Views: 3448

Re: Can a hotkey have a different command upon first press?

Yep what I want is for the hotkey to do one thing on the first press and then something else on every consecutive press after. Then if another hotkey is pressed, breaking the sequence, and I come back to the hotkey, it is treated like the 'first press' again Several of the suggestions in this threa...

Go to advanced search