Originally Posted by 'keyclone',index.php?page=Thread&postID=44049#post 44049
Howdy Bob,
let me give a shot at fixing your aspect ratio.. and maybe help the look up/down issue at the same time.
(before trying any of this.. copy your keyclone.ini file and keep it safe... just copy it back, without keyclone running, to reset back to what you have now)
ok.. assuming your screen is 2560 x 1600 (whoa!).. let's see what i can do.
first, to improve the vertical, i'd consider stacking your clones on the right. the trick is, how big would they be. we know the vertical is 1600 tall and there will be 4 clones... that gives us a starting point.
here's the math:
clone: w,h (w,400)
main: w,h (2560 - w, 1600)
clone aspect ratio: w / 400
main aspect ratio: (2560 - w) / 1600
solving for w:
----
w / 400 == (2560 - w) / 1600
4 * w = (2560 - w)
5 * w = 2560
w = 512
----
so... the clones are ( 512,400 ) and your main would be ( 2048, 1600 )
so, your regions would be as follows:
main: x,y (0,0) w,h (2048,1600)
cloneA: x,y (2048,0) w,h (512,400)
cloneB: x,y (2048,512) w,h (512,400)
cloneC: x,y (2048,1024) w,h (512,400)
cloneD: x,y (2048,1536) w,h (512,400)
post a pic and let me see how it comes out.