使用Autohotkey在Win 10上调整Google Hangouts应用的大小

时间:2016-03-28 16:58:45

标签: autohotkey hangout

我需要通过Autohotkey

在Win 10中调整Google Hangouts应用的大小

目前它是260 * 460,我需要它是1150 * 750。

以下是Window间谍数据:

>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
Hangouts
ahk_class Chrome_WidgetWin_1

>>>>>>>>>>>>( Mouse Position )<<<<<<<<<<<<<
On Screen:  901, 600  (less often used)
In Active Window:   -759, 580

>>>>>>>>>( Now Under Mouse Cursor )<<<<<<<<

Color:  0xF0F0F0  (Blue=F0 Green=F0 Red=F0)

>>>>>>>>>>( Active Window Position )<<<<<<<<<<
left: 1660     top: 20     width: 260     height: 460

>>>>>>>>>>>( Status Bar Text )<<<<<<<<<<

>>>>>>>>>>>( Visible Window Text )<<<<<<<<<<<
Chrome Legacy Window

>>>>>>>>>>>( Hidden Window Text )<<<<<<<<<<<

>>>>( TitleMatchMode=slow Visible Text )<<<<

>>>>( TitleMatchMode=slow Hidden Text )<<<<

我尝试了类似下面的内容,但它不起作用:

[code]
#Persistent
Loop
{

WinWaitActive, ahk_class Chrome_WidgetWin_1
WinMove, ahk_class Chrome_WidgetWin_1, , 1150, 750

}

Return
[/code]

2 个答案:

答案 0 :(得分:1)

WinMove命令需要这些参数:

WinMove, WinTitle, WinText, X, Y [, Width, Height, ExcludeTitle, ExcludeText]

参数WinTextXY可以省略,在这种情况下,您将它们留空,但您仍然必须使用逗号来表示它们。

您只将参数WinText留空,而值为1150和750的参数被解释为参数XY

解决方案是添加这两个未使用的参数XY

WinMove, ahk_class Chrome_WidgetWin_1, , , , 1150, 750

例如,如果你想将窗口移动到位置200,100,那么也要使用XY参数:

WinMove, ahk_class Chrome_WidgetWin_1, , 200, 100, 1150, 750

答案 1 :(得分:0)

; WinMove, WinTitle (or) ahk_class WinClass, WinText, X, Y , Width, Height, ExcludeTitle, ExcludeText
WinMove, ahk_class Chrome_WidgetWin_1, , , , 1150, 750