最近才新安裝Autohotkey這隻程式版本是1.1然後會出現「cannot jump from inside to outside」這樣的錯誤訊息原來之前大大寫得Script不支援最新版本的Autohotkey,安裝成任意1.0版本就可以使用了!特別在此篇有用的文章內留下參考資料。另外有沒有大大可以幫忙製作PrtScr在空的F5 F6上面呢?這樣真的就完美了!感謝啦!!
增加下面即可; fn+F5 = PrtScr ;$F5::hotkeyF5()hotkeyF5() {global fnPressedif (fnPressed = 1) {Send {PrintScreen}}else{Send {F5}}}Return