Hi Everyone

Is it possible to scale on x-axis the hole scene ?
I am making an application on a fullHD system - 1920 x 1080, but it's going on a screen that resizes application to a value that it looks like it's 2560 x 1080. So I need to scale it down (on x), and the monitors will scale it up to a good values.
So the best solution would be (pseudocode)
scene.align = StageAlign.TOP_LEFT;
scene.scaleX = 1920/2560; // scale hole scene on x
(AllObjects).x = (AllObjects).x * (2560/1920) // move all objects to the right
Is it possible to make something like this in Flare?
I tried to change aspectRatio of the camera but it's not that what I want.
Some help? Thanks
