<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:xx="com.tartiflop.*" 
    applicationComplete="startup()" 
    layout="absolute"
    backgroundColor="#000000"
    backgroundAlpha="1"
    viewSourceURL="srcview/index.html">

    <mx:Grid top="0" bottom="0" left="0" right="0" width="100%" height="100%" >
        <mx:GridRow width="100%" height="100%">
            <mx:GridItem width="100%" height="100%">
                <xx:PhongExample width="100%" height="100%" id="phongExample">
                </xx:PhongExample>
            </mx:GridItem>
        </mx:GridRow>
    </mx:Grid>

<mx:Script>
<![CDATA[
    
    private function startup():void {
        
        phongExample.setCameraDistance(500);
    
    }

]]>
</mx:Script>
    
</mx:Application>