Keyboard Ninja: Pop Up the Vista Calendar with a Single Hotkey Tastatura Ninja: Pop Up Calendar Vista cu un Hotkey Single
We've covered how to access the Ne-am acoperit modul de accesare a Windows Vista Calendar using the keyboard Windows Vista Calendar utilizând tastatura , but what if you wanted to assign a single keystroke to pop up the calendar? , Dar ce se întâmplă dacă ai vrut să atribuiţi o singură apăsare de tastă pentru a pop sus calendarul? Yeah, sure, you can just click it with the mouse, but where's the geek fun in that? Da, sigur, puteţi să faceţi clic pe ea doar cu mouse-ul, dar în cazul în care e distractiv geek în asta?
In case you aren't sure what we're talking about, you can use Win+B, then Left, then Enter to pop up this calendar with the keyboard (or you can just click once on the clock). În cazul în care nu sunteţi sigur ce despre care vorbim, puteţi utiliza Win + B, apoi stânga, apoi Enter pentru a pop sus acest calendar cu tastatura (sau puteţi să faceţi clic doar o dată pe ceas). But we can get that down to a single keystroke with an AutoHotkey script. Dar ne poate ajunge ca în jos la o singură apăsare de tastă, cu un script de AutoHotkey.

Note: I came up with this idea after reading an article from Notă: am venit cu această idee după ce citiţi un articol de la Digital Inspiration Digital Inspiration about launching timedate.cpl with a shortcut. Despre timedate.cpl lansarea cu o comandă rapidă.
Using the AutoHotkey Script Utilizarea Script AutoHotkey
In order to use this script, you'll need to have Pentru a utiliza acest script, veţi avea nevoie pentru a avea AutoHotkey AutoHotkey installed. instalat. If you'd rather not do that, there's a compiled version further down. Dacă preferaţi să nu faci asta, exista o versiune compilat mai jos.
What we'll do is assign the F12 key to send the keystrokes instead of having to do them manually. Ceea ce vom face este de a aloca F12-cheie pentru a trimite intrarile de la tastatura în loc de a avea de a le face manual. Create a new file named something.ahk and then paste in the following: Creaţi un nou dosar numit something.ahk şi apoi lipiţi în următoarele:
#InstallKeybdHook # InstallKeybdHook
#Persistent # Persistente
#HotkeyInterval,100 # HotkeyInterval, 100
SetKeyDelay, -1 SetKeyDelay, -1f12:: F12::
{ (
send, {lwin down}b{lwin up} a trimite, (LWIN jos) b (LWIN până)
sleep 10 somn 10
send, {left} a trimite, (left)
sleep 10 somn 10
send, {enter} a trimite, (intra)
Return Întoarceţi -
} )
Save the file, and now you can double-click on it to launch it. Salvaţi fişierul, şi acum aveţi posibilitatea să faceţi dublu-clic pe acesta pentru a lansa aceasta.

At this point you can use the F12 key to pop open the calendar. În acest moment, puteţi utiliza tasta F12 pentru a deschide pop calendar. If you want to close the script out, there's an icon in the system tray. Dacă doriţi să închideţi script-afară, există o pictogramă în bara de sistem.
Note: You can substitute another key instead of F12 if you want. Notă: Puteţi înlocui o altă tastă în loc de F12, dacă doriţi. You could also add #NoTrayIcon to keep it from putting an icon into the system tray. Ai putea adăuga, de asemenea, # NoTrayIcon să-l păstraţi de la a pune o pictogramă în bara de sistem.
Using the Compiled Application Cu ajutorul aplicatiei colectivă
I've included a compiled .exe version of the script in the download that you can run if you don't have AutoHotkey installed. Am inclus o compilate. Exe versiune a descărca script-ul în care se pot executa în cazul în care nu aveţi instalat AutoHotkey. Just double-click on VistaCalendarHotkey.exe to run it. Doar dublu-clic pe VistaCalendarHotkey.exe pentru a alerga it.

Daily Email Updates Daily Actualizări de email
You can get our how-to articles in your inbox each day for free. Aveţi posibilitatea să obţineţi modul nostru de-a articole în Inbox în fiecare zi pentru drum liber. Just enter your name and email below: Doar introduceţi numele dvs. şi e-mail de mai jos:



Now that is just great. Acum, că este doar o mare. I just added it into my other autohotkey script. Tocmai am adăugat-o în script-ul meu AutoHotkey altele.
Thanks! Mulţumesc!
Another tip: Un alt tip de:
#n::Send {Alt}fwf # N:: Trimite (Alt) fwf
This will make Win+N create a new folder in the active Explorer window. Acest lucru va face Win + N crea un folder nou în fereastra activă Explorer. No external tools, just simple native automation Nu instrumente de externe, doar simple de automatizare nativ
Love AHK! Love AHK!
or you could just simply use this code to replace the Windows+B action to launch the calender Sau ai putea pur şi simplu utiliza acest cod pentru a înlocui Windows + B de acţiune pentru a lansa calendarul
#b::send, #b{left}{enter} # B:: trimite, # b (stânga) (intra)
Works in XP too! Lucrări în XP too! Thanks for the tip! Multumesc pentru pont!
In what application should I do the script? În ceea ce aplicaţie ar trebui să fac script-ul?