Project 1999

Project 1999 (/forums/index.php)
-   Technical Discussion (/forums/forumdisplay.php?f=40)
-   -   EQWndFix - A solution to your full screen woes! (/forums/showthread.php?t=25588)

Ropethunder 01-16-2011 07:26 AM

EQWndFix - A solution to your full screen woes!
 
This tool will sit in your system notification area to prove a quick and reliable solution to entering full screen mode without those nasty "glitch" areas that will send you back to windowed mode.

Executable binary and source code for AutoHoykey is provided.

http://3dfolio.com/files/EQWndFix.zip

http://3dfolio.com/files/eqwndfix.png

Code:

#Persistent
#SingleInstance force

menu, tray, nostandard
menu, tray, add, Exit, tray_exitapp
menu, tray, add
menu, tray, add, Switch to full screen, tray_full_screen
menu, tray, click, 1
current_tray=exists

if (FileExist("rsc\EverQuest.ico")) {
        Menu, Tray, Icon, rsc\EverQuest.ico
}
return

tray_full_screen:
  if WinExist("ahk_class _EverQuestwndclass")
  {
      Width:=A_ScreenWidth
      Height:=A_ScreenHeight
     
      WinActivate,ahk_class _EverQuestwndclass
     
      ; Remove WS_CAPTION and WS_SYSMENU
      WinSet,Style,-0xC00000|-0x80000,ahk_class _EverQuestwndclass
     
      WinMove,ahk_class _EverQuestwndclass,,0,0,Width,Height
      Sleep 500
     
      Send,{lalt down}{enter down}{enter up}{lalt up}
  }
return

tray_reload:
  reload
return

tray_exitapp:
        ExitApp
return


georgee 02-02-2011 12:04 AM

i'm confused how do i use this ? haha i don't know what i'm supposed to do, when i try to do alt-enter to get full screen it crashes

Ropethunder 02-02-2011 01:58 PM

Click on the EQ icon that appears in your system notification area and select "Switch to full screen".


All times are GMT -4. The time now is 02:56 PM.

Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.