Just one noob question. How to make high resolution pictures in NfsW. For example 4000x2000 ? Can anyone explain it ? Thanks !
You have autoHotkey or autoIT? If you don't, download it. Then compile this code:Quote:
Just one noob question. How to make high resolution pictures in NfsW. For example 4000x2000 ? Can anyone explain it ? Thanks !
;autoIT
Global $width = 4000
Global $height = 2000
If WinExists("NEED FOR SPEED™ WORLD") Then
WinMove("NEED FOR SPEED™ WORLD", "", Default, Default, 4000, 2000, 1)
EndIf
;autoHotkey
global width := 4000
global height := 2000
IfWinExist, NEED FOR SPEED™ WORLD
{
WinGetPos, X, Y
WinMove, NEED FOR SPEED™ WORLD, %X%, %Y%, %width, %height%
}
This code is interesting, I am trying to use the code to change windows size for another game. I've installed AutoIT program, then copy your code, save as .au3... etc..Quote:
You have autoHotkey or autoIT? If you don't, download it. Then compile this code:
Code:;autoIT Global $width = 4000 Global $height = 2000 If WinExist("NEED FOR SPEED™ WORLD") Then WinMove("NEED FOR SPEED™ WORLD", "", Default, Default, 4000, 2000, 1) EndIf ;autoHotkey global width := 4000 global height := 2000 If WinExist, NEED FOR SPEED™ WORLD { WinGetPos, X, Y WinMove, NEED FOR SPEED™ WORLD, %X%, %Y%, %width, %height% }
delete all from autohotkeyQuote:
This code is interesting, I am trying to use the code to change windows size for another game. I've installed AutoIT program, then copy your code, save as .au3... etc..
In the code I only change window name/game name, and the Width and Height numbers.
When compiling I get thiserror, and I am a noob so I don't know what to do with it...
:confused:
[Only registered and activated users can see links. Click Here To Register...]
If you know the reason for error please correct me, It's probably my fault some where...
Thanks.
;autoIT
Global $width = 4000
Global $height = 2000
If WinExist("NEED FOR SPEED™ WORLD") Then
WinMove("NEED FOR SPEED™ WORLD", "", Default, Default, 4000, 2000, 1)
EndIf
function is not WinExist ... it is WinExistsQuote:
[Only registered and activated users can see links. Click Here To Register...]