Window management: Difference between revisions

m
Fixed lang tags.
(omit m4)
m (Fixed lang tags.)
Line 7:
 
=={{header|AutoHotkey}}==
<lang AutoHotkey>F1:: ;; when user hits the F1 key, do the following
F1:: ;; when user hits the F1 key, do the following
WinGetTitle, window, A ; get identity of active window into a variable
WinMove, %window%, , 100, 100, 800, 800 ; move window to coordinates, 100, 100
Line 28 ⟶ 27:
}
WinClose, % window
return</lang>
</lang>
 
=={{header|Tcl}}==
Anonymous user