Home php教程 PHP开发 How to get the length and width of the current window in flex4

How to get the length and width of the current window in flex4

Dec 27, 2016 pm 05:08 PM

In order to implement flex web page adaptive screen size before

The answer I saw online is

Application.application.width

Application.application.height

But this is applicable to <mx:Applicationg/>. After flex4, it is recommended to apply <s:Application/>, and it is found that Application.application no longer exists
this.stage.stageWidth

I made a login interface without using state and made the component PopUp into a new window. This will facilitate repeated use in the future, but I also wanted the new window to look like a new page, so I speculated on how to make the PopUp window The interface size adapts to the screen.

My approach is

&lt;s:BorderContainer xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot; 
xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot; 
xmlns:mx=&quot;library://ns.adobe.com/flex/mx&quot; 
xmlns:local=&quot;*&quot; 
width=&quot;1366&quot; height=&quot;768&quot; 
preinitialize=&quot;loginPreinit()&quot; 
initialize=&quot;loginInit()&quot;&gt;
Copy after login
private function loginPreinit():void 
{ 
this.width=this.stage.stageWidth; 
this.height=this.stage.stageHeight; 
}
Copy after login

This way the PopUp window also adapts to the screen size.


For more articles related to flex4’s method of obtaining the length and width of the current window, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)