Keyboard Ninja: Pop Up the Vista Calendar with a Single Hotkey Keyboard Ninja: Pop Up ang Vista Kalendaryo sa isang Single Hotkey
We've covered how to access the Nasakop namin kung paano ma-access ang Windows Vista Calendar using the keyboard Windows Vista Calendar gamit ang keyboard , but what if you wanted to assign a single keystroke to pop up the calendar? , Ngunit kung paano mo nais na magtalaga ng isang nag-iisang keystroke sa pop up sa kalendaryo? Yeah, sure, you can just click it with the mouse, but where's the geek fun in that? Yeah, sigurado, maaari mong i-click lamang ito sa ang mouse, ngunit kung saan ang geek masaya sa mga iyon?
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). Sa kaso hindi ka sigurado kung ano kami ay tungkol sa pakikipag-usap, maaari mong gamitin Umakit + B, at pagkatapos ay sa kaliwa, at pagkatapos ay ang Enter upang pop up na ito kalendaryo gamit ang keyboard (o maaari mong i-click lamang nang isang beses sa orasan). But we can get that down to a single keystroke with an AutoHotkey script. Ngunit maaari namin na makakuha ng pababa sa isang solong keystroke na may AutoHotkey script.

Note: I came up with this idea after reading an article from Tandaan: ako ay dumating up sa ideya na ito matapos ang pagbabasa ng isang artikulo mula sa Digital Inspiration Digital inspirasyon about launching timedate.cpl with a shortcut. tungkol sa paglunsad timedate.cpl sa isang shortcut.
Using the AutoHotkey Script Gamit ang mga AutoHotkey Script
In order to use this script, you'll need to have Upang gamitin ang script na ito, kailangan mo na magkaroon ng AutoHotkey AutoHotkey installed. naka-install. If you'd rather not do that, there's a compiled version further down. Kung mas gugustuhin mong huwag gawin iyon, may isang naipon na bersyon ng karagdagang pababa.
What we'll do is assign the F12 key to send the keystrokes instead of having to do them manually. Ano ang kailangan namin gawin ay magtalaga ng F12 key upang ipadala ang keystrokes sa halip na konektado sa mga ito nang mano-mano. Create a new file named something.ahk and then paste in the following: Gumawa ng bagong file na pinangalanang something.ahk at pagkatapos ay i-paste ang mga sumusunod:
#InstallKeybdHook # InstallKeybdHook
#Persistent # Persistent
#HotkeyInterval,100 # HotkeyInterval, 100
SetKeyDelay, -1 SetKeyDelay, -1f12:: f12::
{ (
send, {lwin down}b{lwin up} magpadala, (lwin down) b (lwin up)
sleep 10 matulog 10
send, {left} magpadala, (kaliwa)
sleep 10 matulog 10
send, {enter} magpadala, (ipasok)
Return Bumalik
} )
Save the file, and now you can double-click on it to launch it. I-save ang file, at ngayon ay maaari mong i-double click sa mga ito upang ilunsad ito.

At this point you can use the F12 key to pop open the calendar. Sa puntong ito maaari mong gamitin ang F12 susi sa pop buksan ang kalendaryo. If you want to close the script out, there's an icon in the system tray. Kung nais mong isara ang script sa labas, may isang icon sa system tray.
Note: You can substitute another key instead of F12 if you want. Tandaan: Maaari ninyong kapalit ng isa pang key sa halip na F12 kung gusto mo. You could also add #NoTrayIcon to keep it from putting an icon into the system tray. Maaari mo ring idagdag ang # NoTrayIcon upang panatilihin ito mula sa paglagay ng isang icon sa system tray.
Using the Compiled Application Gamit ang mga naipon 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. Ako isinama ang isang naipon. Exe bersyon ng script sa download na maaari mong tumakbo kung wala kang AutoHotkey na naka-install. Just double-click on VistaCalendarHotkey.exe to run it. Basta i-double click sa VistaCalendarHotkey.exe upang patakbuhin ito.

Daily Email Updates Araw-araw na Updates Email
You can get our how-to articles in your inbox each day for free. Maaari kang makakuha ng aming kung-paano na mga artikulo sa iyong inbox sa bawat araw para sa libre. Just enter your name and email below: Ilagay lamang ang inyong pangalan at email sa ibaba:



Now that is just great. Ngayon na lang malaki. I just added it into my other autohotkey script. Ko na lang idinagdag ito sa aking ibang autohotkey script.
Thanks! Salamat!
Another tip: Isa pang tip:
#n::Send {Alt}fwf # n:: Ipadala (Alt) fwf
This will make Win+N create a new folder in the active Explorer window. Ito ay gumawa ng Umakit + N lumikha ng isang bagong folder sa window ng aktibong Explorer. No external tools, just simple native automation Walang mga panlabas na mga kasangkapan, mga lamang simpleng katutubong Automation
Love AHK! Love AHK!
or you could just simply use this code to replace the Windows+B action to launch the calender o ka could makatarungan lamang na gamitin ang code na ito upang palitan ang Windows + B sa aksyon upang ilunsad ang kalendaryo
#b::send, #b{left}{enter} # b:: magpadala, # b kaliwa () (ipasok)
Works in XP too! Mga gawain sa XP too! Thanks for the tip! Thanks for the tip!
In what application should I do the script? Sa anong aplikasyon ang dapat kong gawin ang script?