I have a Spark WindowedApplication
(AIR for Windows Desktop) and I want remove the title bar and borders, this option will be set via cmd line when the application is launched.
How can I do this?
I have a Spark WindowedApplication
(AIR for Windows Desktop) and I want remove the title bar and borders, this option will be set via cmd line when the application is launched.
How can I do this?
You need to made two changes in the "YouApplicationName_app.xml" by setting "systemChrome" and "transparent" properties.
<initialWindow>
<systemChrome>none</systemChrome>
<transparent>false</transparent>
<initialWindow>
And inside your WindowedApplication you have to set these four properties:
backgroundAlpha="0"
showTitleBar="false"
borderStyle="none"
showStatusBar="false"
You can find more information about that on this links: