High resolution

10/17/2014 15:34 Rocket_Bunny#1
Just one noob question. How to make high resolution pictures in NfsW. For example 4000x2000 ? Can anyone explain it ? Thanks !
10/17/2014 16:47 berkay2578#2
Quote:
Originally Posted by Rocket_Bunny View Post
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:
Code:
;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%
}
10/18/2014 09:55 KlaxxusFett#3
Quote:
Originally Posted by berkay2578 View Post
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%
}
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.
10/18/2014 12:12 Malware442#4
Quote:
Originally Posted by KlaxxusFett View Post
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.
delete all from autohotkey
in autoit put only this(from berkay):
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
the other thinks are from autohotkey,not autoit

Alose read this:
[Only registered and activated users can see links. Click Here To Register...] and look carefully at example from bottom of the page
10/18/2014 12:13 berkay2578#5
You should use the section until [;autoHotkey] for autoIT. So just remove the autoHotkey stuff and you are done!

Also get the new code, had some typos.
10/18/2014 12:51 Rocket_Bunny#6
[Only registered and activated users can see links. Click Here To Register...]
10/18/2014 13:45 Malware442#7
Quote:
Originally Posted by Rocket_Bunny View Post
[Only registered and activated users can see links. Click Here To Register...]
function is not WinExist ... it is WinExists

Man try to search on google too ... what is winexist,what is winmove ...stuffs like that ... .you see that there is un error of winexist function .. lol
10/18/2014 21:37 KlaxxusFett#8
It works! Thanks.
10/19/2014 07:23 lingo1244#9
BRO BRO I got you. :D [Only registered and activated users can see links. Click Here To Register...]