Search found 1259 matches

by Shadowpheonix
05 Sep 2016, 17:36
Forum: Ask for Help (v1)
Topic: Bind with Alt key causes issues?
Replies: 6
Views: 2271

Re: Bind with Alt key causes issues?

Without seeing the actual code you are using, we can only offer vague suggestions such as adding Send {Alt Up} just before the Return.
by Shadowpheonix
05 Sep 2016, 17:21
Forum: Ask for Help (v1)
Topic: Windows 10
Replies: 1
Views: 656

Re: Windows 10

It works just fine. No fix needed on my systems.

What is the exact problem you are having with it?
by Shadowpheonix
05 Sep 2016, 17:20
Forum: Ask for Help (v1)
Topic: sololy Swap ctrl and alt Topic is solved
Replies: 1
Views: 682

Re: sololy Swap ctrl and alt Topic is solved

I do not believe this directly possible. The best option I can think of would be to swap the two keys, and then create hotkeys for the specific commands you still want to function as they used to. Something like...

Code: Select all

Ctrl::Alt
Alt::Ctrl
$!c::Send ^c
$!v::Send ^v
by Shadowpheonix
05 Sep 2016, 16:59
Forum: Ask for Help (v1)
Topic: on key PRESS, PRESS another key
Replies: 2
Views: 26848

Re: on key PRESS, PRESS another key

If you want Left Alt to press the shift key down and never release it, then a standard remap will not work. Instead, you will need to do the following...

Code: Select all

LAlt::
Send {Shift Down}
Return
by Shadowpheonix
05 Sep 2016, 16:57
Forum: Ask for Help (v1)
Topic: Help with an autoclicker
Replies: 2
Views: 778

Re: Help with an autoclicker

Try this (untested)... ; <COMPILER: v1.1.24.00> Hotkey, *lbutton, On ; Change this to Off if you want the LButton repeat disabled by default. ~E:: ~\:: Hotkey, *lbutton, Toggle Return ~Esc::Hotkey, *lbutton, Off *lbutton:: While GetKeyState("lbutton", "P") { Send,{lbutton} Random, delay, 35, 110 Sle...
by Shadowpheonix
05 Sep 2016, 16:48
Forum: Ask for Help (v1)
Topic: Creating A Script
Replies: 1
Views: 650

Re: Creating A Script

Try this (untested)...

Code: Select all

D := True
$F11::
Loop {
	Send, ^d
	WinWaitActive, , Are you sure
	Send, {Enter}
	If D = False
		Break
	}
$F12::
D := False
Return
by Shadowpheonix
05 Sep 2016, 16:44
Forum: Ask for Help (v1)
Topic: Need Help with binding two keys to one key?
Replies: 1
Views: 637

Re: Need Help with binding two keys to one key?

f1::#i (hitting F1 on your keyboard instead presses Windows+I)? Or do you mean #i::f1 (hitting Windows+I instead presses F1)?
by Shadowpheonix
05 Sep 2016, 16:40
Forum: Ask for Help (v1)
Topic: Make caps behave like alt while held down
Replies: 8
Views: 1886

Re: Make caps behave like alt while held down

Try this...

Code: Select all

CapsLock::
Send {Alt Down}
KeyWait, CapsLock
Send {Alt Up}
SetCapsLockState, Off
Return
by Shadowpheonix
05 Sep 2016, 16:22
Forum: Ask for Help (v1)
Topic: Extract text from a file/clipboard
Replies: 6
Views: 1492

Re: Extract text from a file/clipboard

Odd. It is dropping that first letter from several city names for me, not just the ones starting with D. However, this variation seems to be more reliable for me... Loop, Parse, Clipboard, `n, `r { IsCustomer := RegExMatch(A_LoopField, "O)^(\d{1,2}/\d{1,2}/\d{1,4}) (\w+) (\w+) ([^\d]+) ([\d.,]+) ([\...
by Shadowpheonix
02 Sep 2016, 17:52
Forum: Ask for Help (v1)
Topic: Converting two lines clipboard to one line with a space between two lines
Replies: 10
Views: 2073

Re: Converting two lines clipboard to one line with a space between two lines

Which is pretty much exactly what I meant when I said... That pretty much wasn't exactly clear to me. As far as I can tell, clip .= A_LoopField " " is all that is needed, due to the following lines above the ternary operation in the original script... If (A_LoopField = ) continue You are mistaken, ...
by Shadowpheonix
02 Sep 2016, 17:29
Forum: Ask for Help (v1)
Topic: How to remove specific values from clipboard?
Replies: 14
Views: 4286

Re: How to remove specific values from clipboard?

Thanks dear shadowpheonix for making me understand all these things in so easy way. sir as i want to remove all the numeric digits i.e. 70,000.00 14,700.00 3,000.00 from the above series and want to keep only these values- 12-08-16 12-08-16 12-08-16 12-08-16 DL10587 DL10575 DL11318 DL2514 DL8526 DL...
by Shadowpheonix
02 Sep 2016, 16:16
Forum: Ask for Help (v1)
Topic: Extract text from a file/clipboard
Replies: 6
Views: 1492

Re: Extract text from a file/clipboard

Updated for the new criteria... Loop, Parse, Clipboard, `n, `r { IsCustomer := RegExMatch(A_LoopField, "O)^(\d{1,2}/\d{1,2}/\d{1,4}) (\w+) (\w+)(\s\w?)\s?([^\d]+) ([\d.,]+) ([\d.,]+) ([\d.,]+)", CustomerData) If IsCustomer { If CustomerData.6 > 0 NewCustomers .= CustomerData.3 . " " . CustomerData.2...
by Shadowpheonix
02 Sep 2016, 15:47
Forum: Ask for Help (v1)
Topic: Converting two lines clipboard to one line with a space between two lines
Replies: 10
Views: 2073

Re: Converting two lines clipboard to one line with a space between two lines

In this case, it works out to something like this... No, it means this: if A_LoopField clip.= A_LoopField " " else ; This is not needed clip.= "" ; This is not needed Which is pretty much exactly what I meant when I said... That having been said, I am not sure what the point of that comparison is -...
by Shadowpheonix
02 Sep 2016, 12:18
Forum: Ask for Help (v1)
Topic: Extract text from a file/clipboard
Replies: 6
Views: 1492

Re: Extract text from a file/clipboard

Try this... Loop, Parse, ClipBoard, `n, `r { IsCustomer := RegExMatch(A_LoopField, "O)^(\d{1,2}\/\d{1,2}\/\d{1,4}) (\w+ \w+) ([^\d]+) ([\d.,]+) ([\d.,]+) ([\d.,]+)", CustomerData) If IsCustomer { If CustomerData.4 > 0 NewCustomers .= CustomerData.2 . " - CD - " . CustomerData.3 . "`r" Else If Custom...
by Shadowpheonix
02 Sep 2016, 11:28
Forum: Ask for Help (v1)
Topic: Converting two lines clipboard to one line with a space between two lines
Replies: 10
Views: 2073

Re: Converting two lines clipboard to one line with a space between two lines

That line is using a Ternary operation, which is a shorthand version of If/Else. In this case, it works out to something like this... If A_LoopField = A_LoopField clip1 .= A_LoopField . " " Else clip1 .- A_LoopField That having been said, I am not sure what the point of that comparison is - I would ...
by Shadowpheonix
02 Sep 2016, 10:20
Forum: Ask for Help (v1)
Topic: Ctrl+z+enter spam help
Replies: 1
Views: 677

Re: Ctrl+z+enter spam help

I am afraid I do not really understand what you are asking for... Are you wanting to press Ctrl+Z+Enter all at the same time, and have that paste the clipboard? Ctrl & Z & Enter::SendInput ^v Are you wanting NumPad1 to press Ctrl+Z and then press Enter? NumPad1::SendInput ^z{Enter} Are you wanting N...
by Shadowpheonix
02 Sep 2016, 10:09
Forum: Ask for Help (v1)
Topic: How can I simplify the directions on my macro?
Replies: 2
Views: 929

Re: How can I simplify the directions on my macro?

I have never used Pulover's Macro Creator myself, so cannot offer suggestions specific to it. Hopefully I can get you going in the right direction anyway. The first thing you need to define is when you want to prompt the user to click the location... If you want to prompt them as soon as they launch...
by Shadowpheonix
01 Sep 2016, 16:53
Forum: Ask for Help (v1)
Topic: How to rename all folders, sub folders and files?
Replies: 4
Views: 1481

Re: How to rename all folders, sub folders and files?

For what you want to do, you will need to rename the files & folders one at a time. However, you can use a file-pattern loop to do so.
by Shadowpheonix
01 Sep 2016, 16:45
Forum: Ask for Help (v1)
Topic: Telephone number parser
Replies: 7
Views: 2722

Re: Telephone number parser

AHK can definitely do that...

Code: Select all

f12::
CurrentClip := ClipboardAll
Clipboard =
Send ^c
ClipWait
Clipboard := RegExReplace(Clipboard, "^.*(\d{3})[^\d]*(\d{3})[^\d]*(\d{4})$", "$1.$2.$3", 1)
Sleep 25
Send ^v
Sleep 250
Clipboard := CurrentClip
Return

Go to advanced search