我想在屏幕的右下角创建一个透明的计时器。 Gui - Syntax & Usage文档仅显示最左边距和最上边距(xm
,ym
,x0
,y0
)的命令,因此我不知道如何正确设置。
这是我的代码:
#Singleinstance, Force
Gui, Color, white
Gui, Font, S9, Tahoma
Gui, Add, Text, BackgroundTrans vT, 00:00:00
Gui +LastFound +AlwaysOnTop +ToolWindow -Caption
WinSet, TransColor, white
Gui, Show
SetTimer, Update, 1000
Update:
GuiControl,, T, % A_Hour ":" A_Min
Return
答案 0 :(得分:2)
像这样吗?
; 50 is number of pixels from the right of the screen
xval:=A_ScreenWidth-50
; 25 is number of pixels from bottom of the screen
yval:=A_ScreenHeight-25
Gui, Show, x%xval% y%yval%