<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                layout="absolute"
                backgroundColor="0x000000"
                width="640"
                height="240"
                xmlns:test="com.coconnut.test.*" viewSourceURL="srcview/index.html">
    <mx:Script>
        <![CDATA[
            import flash.net.navigateToURL;

            private function onClick():void
            {
                navigateToURL(new URLRequest("http://www.coconnut.com/blog"), "_blank");
            }
        ]]>
    </mx:Script>

    <mx:HBox>
        <test:VideoLoopFlex/>
        <test:VideoLoopAS3/>
    </mx:HBox>
    <mx:HBox width="100%">
        <mx:Label text="video loop FLEX"
                  textAlign="center"
                  color="0xffffff"
                  width="100%"/>
        <mx:Label text="video loop AS3"
                  textAlign="center"
                  color="0xffffff"
                  width="100%"/>
    </mx:HBox>
    <mx:Label bottom="0"
              width="100%"
              textAlign="center"
              text="coconnut blog"
              color="0xffffff"
              click="onClick()"
              mouseChildren="false"
              useHandCursor="true"
              buttonMode="true"/>

</mx:Application>