keySstroke.tk#__hit_i.e._[1|2],_[F6|F7]…

keySstroke =  hiting 2 keys next to each other, even if they are staggered, with one finger
you can set
→ ~30 keySstrokes with special keys [F5|6] via a •try and error or •double setup
→ ~130 keySstrokes with the printable characters ↓ via a fast advanced setup

vimeo.com/sex/1

Howto
highlight an url path  code or  multilign text
F6
hit you desired ascii key combination  -_-  The other key names  → Help dropdown menu
seperate the output with “space & space”  i.e.  1 & 2
OK

You can use the idn domain ► ↓.tk ◄  ( ↓ typed [ALT] +25 )   or  ►/ks ◄ or   ► keySstroke.tk

4rtist.com/ks.jpg

ahk_L for 64 bit windows

downloads  [ 64.zip * ]  [ 64.exe + 64.ahk * ]   [ latest AHK_L build  ]

surprise: AutoHotKey  + AutoHotKey_L works too on 64bit win.  I tested it on win7.

The developer speaks from a increased performance by using the 64bit ahk build  (  Xp Vista W7 )

Use an download from the header line or download the exe and rename it simular to your .ahk file.  ( →  1-.exe,  s.exe  or s-.exe )

If you intent to create your own scripts compare the downloaded .exe with the newest build → autohotkey.net/~Lexikos/AutoHotkey_L

* 64.ahk is the renamed 1.ahk  -_- 64.exe is the latest AHK_L.exe for 64bit os

 

notes

writes highlighted*  text to notizen.txt in the script dir  (* via the left mouse key)
(creates too a notizen.ini file in the Windows folder)

#Persistent
#SingleInstance Ingore

suspend, on

INI := A_WinDir . “\Notizen.ini”
File := A_ScriptDir . “\Notizen.txt”
ClipBoard =
Zahl = 0
Datum = %A_DD%.%A_MM%.%A_YYYY%
Tag1 = %A_DD%
Monat1 = %A_MM%
Jahr1 = %A_YYYY%

IfNotExist, %INI%
{
Zeile = 0
IniWrite, %Zeile%, %INI%, Zeile, Nummer
}
IfNotExist, %File%
{
Zeile = 0
IniDelete, %INI%, Datum
IniWrite, %Zeile%, %INI%, Zeile, Nummer
}

IniRead, Zeile, %INI%, Zeile, Nummer

MsgBox, 64, Info, Um Text zu kopieren`, markieren sie einfach den gewünschten Textabschnitt.`n`nDer gespeicherte Text kann in “Notizen.txt” nachgelesen werden., 10

suspend, off

$LButton::
Send, {LButton Down}
SetTimer, count, 100
KeyWait, LButton
SetTimer, count, off
Send, {LButton Up}
If (Zahl >= 5)
{
IniRead, Tag2, %INI%, Datum, Tag
IniRead, Monat2, %INI%, Datum, Monat
IniRead, Jahr2, %INI%, Datum, Jahr
Send, ^c
Zeile++
If (Tag2 = Tag1) && (Monat2 = Monat1) && (Jahr2 = Jahr1)
FileAppend, %Zeile% `: %ClipBoard%`n`n, %File%
Else
{
Zeile = 0
Zeile++
FileAppend, %Datum%`n`n%Zeile% `: %ClipBoard%`n`n, %File%
}
IniWrite, %Zeile%, %INI%, Zeile, Nummer
IniWrite, %Tag1%, %INI%, Datum, Tag
IniWrite, %Monat1%, %INI%, Datum, Monat
IniWrite, %Jahr1%, %INI%, Datum, Jahr
ClipBoard =
Zahl = 0
}
Else
return
return

count:
Zahl++
return