使用 AIR 移动子状态后如何设置状态大小?
在我的空中项目中,我使用的当前状态尺寸是 width="441" height="358" 。 我有像 Singin 这样的链接按钮,然后移动到 singin 状态(currentstate='singin'),
<mx:State name="signin">
<mx:SetProperty name="height" value="616"/>
<mx:SetProperty name="width" value="919"/>
因此应用程序大小调整为 616,919 。 该函数完成后,移动到当前状态,如(currentstate=''),但大小不会改变。 如何设置当前状态的大小?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定是否有可供您使用的
标记(如果有的话)。 如果您可以获得 NativeWindow 的引用,您可以使用动作脚本设置其宽度/高度的大小。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.