Keyboard Ninja: Pop Up the Vista Calendar with a Single Hotkey Keyboard Ninja: Pop Up Vista Koledar z enotno pomočjo aktivne tipke
We've covered how to access the Smo zajeti, kako priti do Windows Vista Calendar using the keyboard Windows Vista koledar preko tipkovnice , but what if you wanted to assign a single keystroke to pop up the calendar? , Ampak kaj, če si hotel, da določite eno keystroke za pop up koledar? Yeah, sure, you can just click it with the mouse, but where's the geek fun in that? Ja, seveda, lahko samo kliknite z miško, ampak kje je geek zabava v tem?
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). V primeru, da niste prepričani, kaj smo govoriš, lahko uporabite Win + B, nato pa levo, nato pa Vnesite pojaviti se ta koledar s tipkovnico (ali pa samo kliknite enkrat na uro). But we can get that down to a single keystroke with an AutoHotkey script. Lahko pa, da bomo prišli do enotnega keystroke z AutoHotKey scenarij.

Note: I came up with this idea after reading an article from Opomba: sem prišel s to idejo po branju članka od Digital Inspiration Digital Inspiration about launching timedate.cpl with a shortcut. o izstrelitev timedate.cpl z bližnjico.
Using the AutoHotkey Script Uporaba AutoHotKey Script
In order to use this script, you'll need to have Da bi lahko uporabljali ta skript, boste morali imeti AutoHotkey AutoHotKey installed. nameščen. If you'd rather not do that, there's a compiled version further down. Če raje ne bi storil, da je prevod zbrati še navzdol.
What we'll do is assign the F12 key to send the keystrokes instead of having to do them manually. Kaj bomo storiti, je dodeliti tipko F12 za pošiljanje tipkanja, namesto da bi se jih ročno. Create a new file named something.ahk and then paste in the following: Ustvari novo datoteko z imenom something.ahk in nato prilepite v naslednje:
#InstallKeybdHook # InstallKeybdHook
#Persistent # Obstojna
#HotkeyInterval,100 # HotkeyInterval, 100
SetKeyDelay, -1 SetKeyDelay, -1f12:: F12::
{ (
send, {lwin down}b{lwin up} spodbuda, lwin navzdol) (b) (lwin up
sleep 10 spanje 10
send, {left} poslati,) (left
sleep 10 spanje 10
send, {enter} poslati,) (vpišite
Return Return
} )
Save the file, and now you can double-click on it to launch it. Shranite datoteko in sedaj lahko dvokliknete na to, da začne to.

At this point you can use the F12 key to pop open the calendar. Na tej točki lahko uporabite tipko F12 za pop odprete koledar. If you want to close the script out, there's an icon in the system tray. Če želite zapreti skript jasno, da je ikona v sistem pladenj.
Note: You can substitute another key instead of F12 if you want. Opomba: lahko nadomesti drugo ključno namesto F12, če želite. You could also add #NoTrayIcon to keep it from putting an icon into the system tray. Lahko tudi dodate # NoTrayIcon, da bi preprečil dajanje ikona v sistem pladenj.
Using the Compiled Application Uporaba skupljevati Application
I've included a compiled .exe version of the script in the download that you can run if you don't have AutoHotkey installed. Sem vključen zbrati. Exe verzija skript v travnato gričevje, da boste lahko zagnali, če nimate AutoHotKey nameščen. Just double-click on VistaCalendarHotkey.exe to run it. Samo dvakrat kliknite na VistaCalendarHotkey.exe teči to.

Daily Email Updates Dnevni Email Updates
You can get our how-to articles in your inbox each day for free. Lahko dobite našo kako do člankov v vašo mapo »Prejeto vsak dan brezplačno. Just enter your name and email below: Preprosto vpišite vaše ime in e-pošto spodaj:



Now that is just great. Zdaj, ko je res super. I just added it into my other autohotkey script. Pravkar sem doda, da v svoj drugi AutoHotKey script.
Thanks! Hvala!
Another tip: Še en nasvet:
#n::Send {Alt}fwf # n:: Pošlji (Alt) FWF
This will make Win+N create a new folder in the active Explorer window. To bo Win + N ustvariti novo mapo v aktivnem oknu Explorerja. No external tools, just simple native automation No zunanja orodja, samo preprosto native avtomatizacija
Love AHK! Love AHK!
or you could just simply use this code to replace the Windows+B action to launch the calender ali si lahko samo preprosto uporabite to kodo nadomestiti Windows + B ukrepov za začetek koledar
#b::send, #b{left}{enter} # b:: send, # b (levo) (vpišite)
Works in XP too! Dela na XP tudi! Thanks for the tip! Hvala za nasvet!
In what application should I do the script? In kaj naj storim uporabi scenarij?