Search found 7774 matches

by Rohwedder
23 Apr 2017, 11:35
Forum: Ask for Help (v1)
Topic: ::btw::by the way not working when I enter bt (backspace)w
Replies: 3
Views: 830

Re: ::btw::by the way not working when I enter bt (backspace)w

One have to write the code for every conceivable mistype possibility.
So sorry, but we must live with it!
by Rohwedder
23 Apr 2017, 08:00
Forum: Ask for Help (v1)
Topic: Hotkey intercepts other input
Replies: 3
Views: 1039

Re: Hotkey intercepts other input

Hallo,
perhaps?

Code: Select all

^+::^NumpadAdd
~^!+:: ;tilde
by Rohwedder
23 Apr 2017, 03:07
Forum: Ask for Help (v1)
Topic: Command for set .doc file as clipboard/transfer area for text, running in the background Topic is solved
Replies: 6
Views: 1574

Re: Command for set .doc file as clipboard/transfer area for text, running in the background Topic is solved

Hallo, not in the background, but needs only one word Run, winword WinWaitActive, ahk_class OpusApp WinGet, WordId, ID WinMinimize, ahk_id %WordID% Return ^#c:: ClipBoard = Send ^c ClipWait, 1 SendMode, Input WinRestore, ahk_id %WordID% WinWaitActive, ahk_id %WordID% Send ^v sleep 1200 ClipBoard = S...
by Rohwedder
22 Apr 2017, 04:38
Forum: Ask for Help (v1)
Topic: files save as
Replies: 2
Views: 583

Re: files save as

Hallo,

Code: Select all

FileAppend , %ClipBoard%, D:\work\text_%Nr%.txt
Nr++
by Rohwedder
22 Apr 2017, 02:08
Forum: Ask for Help (v1)
Topic: Script suggestion - Inactive window Topic is solved
Replies: 1
Views: 484

Re: Script suggestion - Inactive window Topic is solved

Hallo, the script must be started before the windows. #Persistent GroupAdd, DoNotCloseThisWindows, ahk_class Progman GroupAdd, DoNotCloseThisWindows, ahk_class Shell_TrayWnd LiveTime = 60000 ;Live Time in ms TestInterval = 2000 Nr = 1 NrMax := 10 + LiveTime//TestInterval ;10 = tolerance SetTimer, Te...
by Rohwedder
21 Apr 2017, 04:52
Forum: Ask for Help (v1)
Topic: [Need Help] Click 2 times = Shift stops holding
Replies: 1
Views: 484

Re: [Need Help] Click 2 times = Shift stops holding

Hallo, little example: SetTimer, ShowKeyState Return ^q:: KeyWait, q Send {q down} ;press and hold q Return ^w:: KeyWait, w Send {w down} ;press and hold w Return ~LButton:: ;press left mouse button twice within 500 ms If (A_PriorHotkey = "~LButton" And A_TimeSincePriorHotkey < 500) { Send, {q up} ;...
by Rohwedder
19 Apr 2017, 12:36
Forum: Ask for Help (v1)
Topic: I could use some help
Replies: 1
Views: 450

Re: I could use some help

Hallo,
add:

Code: Select all

^j::
	Suspend
	Pause,,1
Return
by Rohwedder
18 Apr 2017, 02:20
Forum: Ask for Help (v1)
Topic: How to use this function? (about median)
Replies: 1
Views: 622

Re: How to use this function? (about median)

Hallo, ;Median function ;Returns Median in a set of numbers ;list must be comma delimited Numbers = 1,303,99,44 ;use comma as delimiter MsgBox, % "Median of Numbers: "Median(Numbers) Return Median(List) { Sort, List, N D, ; Sort numerically, use comma as delimiter. ;Create Array StringSplit, Set, Li...
by Rohwedder
17 Apr 2017, 23:28
Forum: Ask for Help (v1)
Topic: Shortcut with Windows key
Replies: 3
Views: 867

Re: Shortcut with Windows key

Hallo,
https://autohotkey.com/docs/Hotkeys.htm
When the hotkey fires, its key's native function will not be blocked (hidden from the system)...
by Rohwedder
17 Apr 2017, 02:24
Forum: Ask for Help (v1)
Topic: Shortcut with Windows key
Replies: 3
Views: 867

Re: Shortcut with Windows key

Hallo,
perhaps?

Code: Select all

~#LButton::Ctrl
by Rohwedder
16 Apr 2017, 09:13
Forum: Ask for Help (v1)
Topic: Detecting clipboard for english language content
Replies: 1
Views: 568

Re: Detecting clipboard for english language content

Hallo,
measure the Ascii Character portion?

Code: Select all

!a::
	Text = %ClipBoard%
	Ascii_characters =
	Loop, Parse, Text
		Ascii_characters += (Asc(A_LoopField) < 256)
	Ascii_character_portion := 100*Ascii_characters/StrLen(Text)
	MsgBox, % "Ascii character portion: "Ascii_character_portion "%"
Return
by Rohwedder
14 Apr 2017, 09:55
Forum: Ask for Help (v1)
Topic: Replacing : with :0
Replies: 2
Views: 672

Re: Replacing : with :0

Hallo,
perhaps

Code: Select all

$+;::Send, {:}0
I can not test it with my German keyboard.
by Rohwedder
14 Apr 2017, 00:30
Forum: Ich brauche Hilfe
Topic: Fenster finden und aktivieren Topic is solved
Replies: 3
Views: 2498

Re: Fenster finden und aktivieren Topic is solved

Hallo,
mit

Code: Select all

SetTitleMatchMode, 2
kann der Fenstertitel die angegebenen 10 Zeichen an beliebiger Stelle enthalten, mit

Code: Select all

SetTitleMatchMode, RegEx
gilt dies auch für die Fensterklasse.
by Rohwedder
10 Apr 2017, 04:17
Forum: Ich brauche Hilfe
Topic: alte Adressen von Forumbeiträgen konvertieren Topic is solved
Replies: 4
Views: 1203

Re: alte Adressen von Forumbeiträgen konvertieren Topic is solved

Danke für den Hinweis!
Funktioniert wirklich wieder. Mußte nur den Browser-Cache lehren.
by Rohwedder
08 Apr 2017, 04:46
Forum: Ich brauche Hilfe
Topic: alte Adressen von Forumbeiträgen konvertieren Topic is solved
Replies: 4
Views: 1203

alte Adressen von Forumbeiträgen konvertieren Topic is solved

Hallo, Google gab mir mal mal wieder einen Link auf einen uralten (2015) Forumbeitrag: http://ahkscript.org/boards/viewtopic.php?f=5&p=55440 leider wird man umgeleitet auf https://autohotkey.com/?f=5&p=55440 muß dort auf search gehen: https://autohotkey.com/search , nach f=5&p=55440 suchen und kommt...
by Rohwedder
07 Apr 2017, 05:17
Forum: Ask for Help (v1)
Topic: How to make optional key?
Replies: 1
Views: 432

Re: How to make optional key?

Hallo,

Code: Select all

LCtrl & 1::
LCtrl & 2::
LCtrl & 3::
	ToolTip, LCtrl & (1|2|3)
	Sleep, 1000
	ToolTip
Return
by Rohwedder
05 Apr 2017, 03:35
Forum: Gaming Help (v1)
Topic: Script is not working
Replies: 3
Views: 887

Re: Script is not working

Hallo,
try this:

Code: Select all

~LButton::
	Send {Home down}
	Keywait, LButton
	Send {Home up}
Return
by Rohwedder
05 Apr 2017, 01:25
Forum: Gaming Help (v1)
Topic: Script is not working
Replies: 3
Views: 887

Re: Script is not working

Hallo,
you Send {Home down}, but never Send {Home up}!
by Rohwedder
04 Apr 2017, 23:44
Forum: Ich brauche Hilfe
Topic: Kann man auch Buchstaben hochzählen?
Replies: 1
Views: 927

Re: Kann man auch Buchstaben hochzählen?

Hallo,
am einfachsten wohl mit dem ASCII-Code
Großbuchstaben:

Code: Select all

Loop, 26
{
	Buchstabe := Chr(64 + A_Index)
	Nummer := Asc(Buchstabe) - 64
	ToolTip, % Nummer " : " Buchstabe
	Sleep, 500
}
Kleinbuchstaben: 96 statt 64
by Rohwedder
04 Apr 2017, 08:12
Forum: Ask for Help (v1)
Topic: Winactivate not working
Replies: 1
Views: 625

Re: Winactivate not working

Hallo,
Epicor.exe has Admin rights and AutoHotkey.exe not?

Go to advanced search