views:

25

answers:

1

In my air project i used current state size is width="441" height="358" . i have link button like Singin then move to singin state (currentstate='singin')

 <mx:State name="signin">
         <mx:SetProperty name="height" value="616"/>
         <mx:SetProperty name="width" value="919"/>

So application resize into 616,919 . After that function finished move to current state like(currentstate='') But size not be changed . How can i set the size for current state?

A: 

I'm not sure of an <mx> tag for you to use, if there is one. If you can get a reference to the NativeWindow, you can set it's size with the width/height using actionscript.

grey