How can I make a SplashScreen with Flash CS5.5 or just with AIR/AS3 codes. I need it while the App/Game is loading...
I know that it's possible with Flex 4.5 as:
<?xml version="1.0" encoding="utf-8"?>
<s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
firstView="views.HomeView"
splashScreenImage="@Embed('splashscreen.png')"/>
...
<s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
firstView="views.HomeView"
splashScreenImage="@Embed('splashscreen.png')"/>
...
http://workflowflash.com/98437/air-for-android-splash-screen-with-flex -4-5.php
But I want to do it without Flex. So can I ?
Thank you