Advertisement
Deozaan

Torchlight 1 Fullscreen Windowed Mode

Jul 13th, 2012
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Torchlight noborder windowed option
  2. ; Last Updated:
  3.  
  4. #Persistent
  5. #SingleInstance, Force
  6. #NoEnv
  7.  
  8. SetBatchLines, -1
  9. SetTitleMatchMode, 2        ; partial match
  10. SetWorkingDir, %A_ScriptDir%
  11. SendMode, Input
  12. DetectHiddenWindows, Off    ; they're hidden for a reason.
  13. trayicon=%ProgramFiles%\Steam\steamapps\common\torchlight\Torchlight.ico
  14.  
  15. Menu, Tray, NoStandard
  16. Menu, Tray, Tip, Torchlight noborder
  17. IfExist, %trayicon%
  18.   Menu, Tray, Icon, %trayicon%
  19. Menu, Tray, Add, Launch Torchlight, InitCheck
  20. Menu, Tray, Default, Launch Torchlight
  21. Menu, Tray, Add,
  22. Menu, Tray, Standard
  23.  
  24. GoSub, InitCheck
  25. Loop
  26. {
  27.     WinWait, Torchlight ahk_class OgreD3D9Wnd, , 50000 ; 50 Seconds
  28.     IfWinExist
  29.     {
  30.     WinSet, Style, -0xC00000 ; remove the titlebar
  31.     WinSet, Style, -0x800000 ; hide thin-line border
  32.     WinSet, Style, -0x400000 ; hide dialog frame
  33.     WinSet, Style, -0x40000 ; hide thickframe/sizebox
  34.         WinMove, , , 0, 0       ;;move the window to 0,0
  35.     }
  36.     Sleep 50000 ; 50 Seconds
  37. }
  38. Return
  39.  
  40. InitCheck:
  41. MsgBox, 36, Torchlight Launcher, Do you want to launch Torchlight now? `nThis message will exit in 10 seconds otherwise., 10
  42. IfMsgBox Yes
  43.     {
  44.       Text= Launching Torchlight...
  45.       SplashImage, Torchlight_header.jpg, B1 ZX0 ZY0 CTWhite CW000000 FS18, %Text%. ; b = border ; zx, zy = margin of width and height
  46.       Run, %ProgramFiles%\Steam\Steam.exe -applaunch 41500
  47.       Sleep, 3000
  48.       Splashimage, Off
  49.     }
  50. Else IfMsgBox No
  51.     ;Do nothing
  52.     Return
  53. Else IfMsgBox Timeout
  54.     Return
  55. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement