This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<Graphic xmlns="http://ns.adobe.com/fxg/2008" version="2" | |
scaleGridTop="20" scaleGridBottom="180" | |
scaleGridLeft="20" scaleGridRight="180"> | |
<Rect width="200" height="200" radiusX="9" radiusY="9"> | |
<fill> | |
<LinearGradient rotation="90"> | |
<GradientEntry color="#60a0d0" /> | |
<GradientEntry color="#4f83aa" /> | |
</LinearGradient> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<Graphic xmlns="http://ns.adobe.com/fxg/2008" version="2"> | |
<Rect width="200" height="200"> | |
<fill> | |
<LinearGradient rotation="90"> | |
<GradientEntry color="#60a0d0" /> | |
<GradientEntry color="#4f83aa" /> | |
</LinearGradient> | |
</fill> | |
</Rect> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" | |
xmlns:local="*"> | |
<local:Background left="10" right="10" bottom="10" top="10"/> | |
</s:Group> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx"> | |
<s:Rect left="10" | |
right="10" | |
top="10" | |
bottom="10"> | |
<s:fill> | |
<s:LinearGradient rotation="90"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fxg="skin.fxg.*"> | |
<!-- host component --> | |
<fx:Metadata> | |
[HostComponent("spark.components.ActionBar")] | |
</fx:Metadata> | |
<s:states> | |
<s:State name="normal" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark"> | |
<!-- host component --> | |
<fx:Metadata> | |
[HostComponent("spark.components.MobileApplication")] | |
</fx:Metadata> | |
<s:states> | |
<s:State name="normal" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:MobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
firstView="views.ActionBarSkinExampleHome" | |
skinClass="skin.ApplicationSkin"> | |
</s:MobileApplication> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" title="Home" | |
xmlns:local="*"> | |
<fx:Script> | |
<![CDATA[ | |
import mx.events.FlexEvent; | |
protected function stageWebView_locationChangingHandler(event:LocationChangeEvent):void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.soenkerohde.mobile{ | |
import flash.display.Stage; | |
import flash.events.ErrorEvent; | |
import flash.events.Event; | |
import flash.events.LocationChangeEvent; | |
import flash.geom.Rectangle; | |
import flash.media.StageWebView; | |
import mx.core.UIComponent; |