Hello everybody,
I probably already know the answer to my question.
on start of layout compare windowsize
if window size > 16:9 goto layout small
if window size = 16:9 goto layout normal
if window size < 16:9 goto layout tablet
does this work? has anybody tried this? In theory it sounds solid.
What is your take on creating multiple screen sizes without making 20 of the exact same app?
Thanks in advanced for any input on this subject matter. Jeremy C.
Update:
and the answer is yes it works. I have not tested on mobile device as of yet.
The code shown was for demo testing. So setting a
16:9, as in 1280x720px
16:10, as in 1680x1050px
5:3, as in 1280x768px
3:2, as in 960x640 (This screen ratio is also used on iDevices.)
4:3, as in 1024x768
ratio in a mobile app is possible without to much extra effort. Basically clone layout re-size to ratio and leave event sheet the same.
update 2:
so this should work with screen orientation also if you have to adjust for landscape/portrait.
on device landscape/portrait. goto layout or switch between active layers.