proper layout on multiple screen sizes
I have an app created at iPhone4 screen res (640x960)![]()
Now I want it to scale properly on an android tablet (800x1200).
this looks good
stage.scaleMode = StageScaleMode.NO_BORDER;
But how to I query the size for my buttons?
I use the capabilities class to get the screen dpi and layout the button sizes based on pixels, works good
however StageScaleMode.NO_BORDER, it appears I am just scaling the whole swf, thus making my buttons too large.
thanks
