作者dowbatw (Dowbatw)
看板EZsoft
标题Re: [请益] MAC有一个萤幕热点的功能
时间Thu Apr 17 03:02:48 2008
※ 引述《dowbatw (Dowbatw)》之铭言:
: MAC有一个萤幕热点的功能
: 只要滑鼠快速移动到萤幕的某个角落
: 就可以执行某些特定动作
: 像是开启expose,dash board,回到桌面等等
: 请问各位高手在windows之下有没有支援这样功能的软体?
我自己参考了一下各处的文章
发现AutoHotkey应该可以符合我的要求
写了以下的程式:
#Persistent
SetTimer, WatchCursor, 100
return
WatchCursor:
CoordMode, mouse, Screen
MouseGetPos, xpos, ypos
if (xpos > 1000) and (ypos = 0) {
Run C:\Program Files\Windows Sidebar\sidebar.exe
sleep, 0
}
if (xpos = 0) and (ypos = 0) {
Send #{d}
sleep, 1000
return
}
上面的功能是只要滑鼠移到左上角就会回到桌面
移到右上角就会开启Windows资讯看板
是个很好用的软体
可是程式没学过实在不好写更进阶的功能@@
---
题外话
现在微软的sidebar gadget 还真的不是普通的烂
他本身是不错的
可是没有实用的小工具
我想要一个可以像MAC里面的Oxford辞典的Gadget该去哪里找?
然後所有上面Google Search Gadget全部都是用IE开启网页,令我傻眼!
--
"The primary and necessary object of all existence is to be happy, but
happiness cannot be obtained individually; it is useless to expect isolated
happiness; all must partake of it or the few will never enjoy it."
- Robert Owen (1771-1858)
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.119.196.145
※ 编辑: dowbatw 来自: 140.119.196.145 (04/17 03:13)
※ 编辑: dowbatw 来自: 140.119.196.145 (04/17 04:17)
※ 编辑: dowbatw 来自: 140.119.196.145 (04/17 04:17)
※ 编辑: dowbatw 来自: 140.119.196.145 (04/17 04:25)
1F:推 tonyhome:可以改预设浏览器吧 04/18 21:49
2F:→ dowbatw:我本来的预设就是firefox,很多全部都用IE开 05/03 23:17