如何在屏幕的右下角创建GUI?

时间:2019-04-13 12:01:05

标签: user-interface screen autohotkey

我想在屏幕的右下角创建一个透明的计时器。 Gui - Syntax & Usage文档仅显示最左边距和最上边距(xmymx0y0)的命令,因此我不知道如何正确设置。

这是我的代码:

#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

1 个答案:

答案 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%