बस कुछ छोटा है जो मैंने अपने उद्देश्यों के लिए voodoomsr की टिप्पणी पढ़ने के बाद बनाया है। इसे बाएं कोने में जाने के लिए बनाता है और मेरे पूर्ण रिज़ॉल्यूशन का आकार बदलता है। पहले जैसा था वैसा ही पुनर्स्थापित करता है। एक ही समय में कई ऐप्स के साथ उपयोग नहीं किया जा सकता है।
धन्यवाद voodoomsr
;-Caption
LWIN & LButton::
SetTitleMatchMode, 2
WinGetPos, X, Y, Width, Height, A
WinSet, Style, -0xC00000, A
WinMove,A,,0,0,1920,1080
return
;
;+Caption
LWIN & RButton::
WinSet, Style, +0xC00000, A
WinMove,A,,%X%,%Y%,%Width%,%Height%
Sleep, 1000
Sleep, 1000
return
;
संपादित करें:
टीबीएच मैंने खिड़कियों के लिए कुछ उपयोगी खोजने की कोशिश की, जो आकार नहीं देता है, लेकिन कुछ भी नहीं मिल रहा है (यह कहते हुए कि यह संभव नहीं है, यह वास्तव में मेरी पहली ऑटोहॉट्की स्क्रिप्ट थी)।
किसी भी तरह मैंने अनावश्यक नींद को दूर करने जैसे कुछ ट्विक्स किए, नेल्सन ने जिस शैली का सुझाव दिया और उसे केवल एक बटन के साथ काम किया, इसलिए डबल-क्लिक किए गए सहेजे गए चर को ओवरराइड नहीं करेंगे।
#SingleInstance force
; Exclude the desktop
; Note: Also excludes "My Computer" browsing windows.
; Better detection might be needed to differentiate the parent explorer "ahk_id" from child windows.
; Also seems to disregard accidental Metro interface clicks (Win 8+)
#IfWinNotActive ahk_exe explorer.exe
; Set your resolution (minus decorations like start bars if you wish to leave those on-screen.
w = 1920
h = 1080
w_wasted = 6 ; width used by resize bars
h_wasted = 29 ; width used by caption frame and resize bars
; Window to fullscreen
LWIN & LButton::
SetTitleMatchMode, 2
WinGet Style, Style, A
; 0xC40000 = WS_BORDER (0x800000) + WS_DLGFRAME (0x400000) + WS_SIZEBOX aka WS_THICKFRAME (0x040000)
if(Style & 0xC00000) { ; if has WS_CAPTION. Ignore sizebox value.
WinGetPos, X, Y, Width, Height, A
WinSet, Style, -0xC40000, A ; removes attributes, including sizebox...doesn't do a strict subtraction
WinMove,A,,0,0,w,h
} else {
WinSet, Style, +0xC40000, A
; Note: will set WS_SIZEBOX even if not previously present
if(Width > w - w_wasted) {
Width := %w%-%w_wasted%
}
if(Height > h - h_wasted) {
Height := %h%-%h_wasted%
}
WinMove,A,,%X%,%Y%,%Width%,%Height%
}
WinSet Redraw
Return