Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 01-16-2011, 07:26 AM
Ropethunder Ropethunder is offline
Developer


Join Date: May 2010
Posts: 396
Default 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

[You must be logged in to view images. Log in or Register.]

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
Last edited by Ropethunder; 01-16-2011 at 07:32 AM..
Reply With Quote
  #2  
Old 02-02-2011, 12:04 AM
georgee georgee is offline
Skeleton

georgee's Avatar

Join Date: Feb 2011
Posts: 18
Default

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
Reply With Quote
  #3  
Old 02-02-2011, 01:58 PM
Ropethunder Ropethunder is offline
Developer


Join Date: May 2010
Posts: 396
Default

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


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:41 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.