<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    layout="absolute"
    frameRate="24"
    backgroundColor="#0F7494" 
    backgroundImage=""
    horizontalScrollPolicy="off"
    verticalScrollPolicy="off"
    preloader="Preloader" viewSourceURL="srcview/index.html">
    
    <!--
    
        Preloader Example
        
        Notice I set the framerate above to match the Flash movie's framerate
        as well as set the preloader property to the Preloader class.
        
        jesterxl@jessewarden.com
        http://www.jessewarden.com
        
        This is release under a Creative Commons license. 
        More information can be found here:
        
        http://creativecommons.org/licenses/by/2.5/
    -->
    
    <mx:Box 
        borderStyle="solid"
        backgroundColor="#0F7494"
        borderColor="#0F7494"
        dropShadowEnabled="true" 
        horizontalCenter="0" top="0">
        <mx:SWFLoader 
            source="@Embed(source='/assets/flash/background.swf', symbol='background_water')"
            width="766" height="700" />
    </mx:Box>
    
        
</mx:Application>