miao8yu5 Posté(e) le 6 novembre Posté(e) le 6 novembre (modifié) https://aramallo.itch.io/dino-safari LD56_DinoSafari  LDJam_DinoSafari  Modifié le 6 novembre par miao8yu5 5
nosoucy62 Posté(e) le 7 novembre Posté(e) le 7 novembre hi ! i make an AHK file to launch in 1920x1080 and restaure resolution in 2560x1440 (my pc resolution) i take the AHK files by miao8yu5 of sierra 7 to modified for this game change in AHK file your resolution if you don't have 2560x1440 the only problem is that the taskbar remains displayed at the bottom. if anyone has a solution? use lossless scaling perhaps ?  newWidth := 1920 newHeight := 1080 SysGet, originalWidth, 2560 SysGet, originalHeight, 1440  #NoEnv SendMode Input SetWorkingDir %A_ScriptDir%銆� Run, % "QRes.exe /x:" 1920 " /y:" 1080 Run, LD56_Dinos.exe sleep 1000  Esc:: OnExit, RestoreResolution RestoreResolution: Run, % "QRes.exe /x:" 2560 " /y:" 1440 ; CHANGE YOUR PC RESOLUTION IN 1920x1080 IF YOU HAVE NOT 2560x1440 Process, Close, AutoHotkey.exe Run,taskkill /im "AutoHotkey.exe" /F Process, Close, LD56_Dinos.exe Run,taskkill /im "LD56_Dinos.exe" /F ExitApp return  Dino Safari Launcher resolution.ahk 2
miao8yu5 Posté(e) le 7 novembre Auteur Posté(e) le 7 novembre 4 hours ago, nosoucy62 said: hi ! i make an AHK file to launch in 1920x1080 and restaure resolution in 2560x1440 (my pc resolution) i take the AHK files by miao8yu5 of sierra 7 to modified for this game change in AHK file your resolution if you don't have 2560x1440 the only problem is that the taskbar remains displayed at the bottom. if anyone has a solution? use lossless scaling perhaps ?  newWidth := 1920 newHeight := 1080 SysGet, originalWidth, 2560 SysGet, originalHeight, 1440  #NoEnv SendMode Input SetWorkingDir %A_ScriptDir%銆� Run, % "QRes.exe /x:" 1920 " /y:" 1080 Run, LD56_Dinos.exe sleep 1000  Esc:: OnExit, RestoreResolution RestoreResolution: Run, % "QRes.exe /x:" 2560 " /y:" 1440 ; CHANGE YOUR PC RESOLUTION IN 1920x1080 IF YOU HAVE NOT 2560x1440 Process, Close, AutoHotkey.exe Run,taskkill /im "AutoHotkey.exe" /F Process, Close, LD56_Dinos.exe Run,taskkill /im "LD56_Dinos.exe" /F ExitApp return  Dino Safari Launcher resolution.ahk 488 B · 3 downloads The following lines of code retrieve the current screen's width and height in pixels:   SysGet, originalWidth, 78: This line retrieves the width of the current screen in pixels. SysGet, originalHeight, 79: This line retrieves the height of the current screen in pixels. Without needing to modify 78 and 79, this code can be used across different devices to obtain and save the current resolution.  1
Messages recommandés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant