Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; remove the titlebar and border(s) for Lotro
- Loop
- {
- If (GetKeyState("ScrollLock","T")) ; if ScrollLock is on then don't activate Lotro window
- {
- Continue
- }
- Else
- {
- WinWait, ahk_class Turbine Device Class
- IfWinExist
- {
- IfWinNotActive
- {
- WinActivate, ahk_class Turbine Device Class
- WinSet, Style, -0xC00000 ; remove the titlebar and border(s)
- WinMove, , , 0, 0, %A_ScreenWidth%, %A_ScreenHeight%
- Tooltip, Width = %A_ScreenWidth%`, Height = %A_ScreenHeight%
- }
- }
- }
- Sleep 15000 ; 15 Seconds
- }
- Return
Advertisement
Add Comment
Please, Sign In to add comment