Abulafia: »Hast du das Passwort?«

Fr, 29.01.10 

Bullet AutoHotkey und Google Mail

· 06:01 ·

Mit AutoHotkey alle Mails in Google Mail (GMail) als gelesen markieren:

; GMail alle gelesen markieren
#a::
SetTitleMatchMode 2
IfWinActive, gmail
{
Send, {*}{A}{I}{*}{n}
}
return,

Cool!

Mit Strg+Shift+v einen markierten Link im FF im neuen Tab öffnen:

; Firefox: Neuer Tab mit Link aus der Zwischenablage
^+v::
SetTitleMatchMode 2
IfWinActive, Firefox
{
Send, {Control down}{c}{Control up}{Control down}{t}{Control up}{Control down}{v}{Enter}
}
return,

Update: return, fehlte zum Abschluss der if...-Konstruktion.

Leave a Reply

authimage

16 queries. 1.271 seconds. Powered by WordPress 3.0
Design angelehnt an »Toni« von Chris M (http://aphotolog.com)