<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*"
    layout="horizontal" 
    verticalAlign="top" horizontalAlign="center" 
    backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#9D9D9D, #3A3A3A]" 
    viewSourceURL="srcview/index.html">

    <mx:Style source="css/style.css" />
    
    <mx:ButtonBar dataProvider="{stack}" direction="vertical" />
    
    <mx:ViewStack id="stack"  width="340" height="322">
        
        <MediaPlayer label="Base MediaPlayer" width="120" height="67" />
        
        <SoundPlayer source="media/missingit.wav" label="SoundPlayer"  width="200" height="104"/>
        
        <!-- sorry, I don't have an mp3 with album art I can distribute. I don't want to get sued. Put an mp3 in the source property here -->
        <MP3Player source="" label="MP3Player"  width="352" height="210"/>
        
        <VideoPlayer source="media/tileui2.flv" label="VideoPlayer"  width="341" height="320"/>    
    
    </mx:ViewStack>
    
</mx:Application>