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

How to create a GUI in the bottom right corner of the screen?

我想在屏幕右下角创建一个透明计时器。 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

是这样的吗?

; 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%