While working with Oefter, I found a limit for my application
. My application can not be maximized more than 2880×2880 pixels. Yeah, it’s more than sufficient for a normal user, still I consider it as a limit on AIR based applications because other window applications can stretch more than this size limit (curious reader can find this link useful for knowing more on this. I never expect my application to be so big- that’s why I am happy till now, and sitting idle. To know how to produce this limit you can write the line of code shown below in your AIR application, and see the result.
-
//put this code inside any method
-
Alert.show(stage.nativeWindow.maxSize().toString());
Similarly to get the min size, use the below code.
-
//put this code inside any method
-
Alert.show(stage.nativeWindow.minSize().toString());
