Luego de tanto revisar y compilar el codigo no comprendo porque no se visualiza nada en el .swf ya q deberia mostrar las imagenes, aqui dejo el codigo, quiza sea problema de la ruta donde las tengo es: E:\n.design\Flex\trans\img\photos400\ pero en el codigo creo q solo basta con indicar: <String>img/photos400/photo01.jpg</String>

habra alguna diferencia con especificar directorios con '/' en el codigo a diferencia q en las carpetas es con '\' ? en fin. una vez compilado no me sale nada!!
aqui dejo el codigo:

<?xml version="1.0" encoding="utf-8"?>

<Application xmlns="http://www.adobe.com/2006/mxml" xmlns:local="*" height="100%" width="100%" layout="absolute" viewSourceURL="download/index.html">

<Binding source="sel.value" destination="shelf.selectedIndex" />
<Binding destination="sel.value" source="shelf.selectedIndex" />

<Binding source="angle.value" destination="shelf.angle" />
<Binding source="pop.value" destination="shelf.popout" />

<Array id="dataSet">
<String>img/photos400/photo01.jpg</String>
<String>img/photos400/photo02.jpg</String>
<String>img/photos400/photo03.jpg</String>
<String>img/photos400/photo04.jpg</String>
<String>img/photos400/photo05.jpg</String>
<String>img/photos400/photo06.jpg</String>
<String>img/photos400/photo07.jpg</String>
<String>img/photos400/photo08.jpg</String>
<String>img/photos400/photo09.jpg</String>
<String>img/photos400/photo10.jpg</String>
<String>img/photos400/photo11.jpg</String>
<String>img/photos400/photo12.jpg</String>
<String>img/photos400/photo13.jpg</String>
<String>img/photos400/photo14.jpg</String>
<String>img/photos400/photo15.jpg</String>
<String>img/photos400/photo16.jpg</String>
<String>img/photos400/photo17.jpg</String>
<String>img/photos400/photo18.jpg</String>
<String>img/photos400/photo19.jpg</String>
</Array>


<local:DisplayShelf id="shelf" horizontalCenter="0" verticalCenter="0"
borderThickness="10" borderColor="#FFFFFF" dataProvider="{dataSet}" enableHistory="false" width="100%"/>

<VBox horizontalCenter="0" bottom="10"
horizontalAlign="center" verticalAlign="middle" >

<HBox>
<Label text="Angle:" />
<HSlider liveDragging="true" id="angle" minimum="5" value="35" maximum="90" snapInterval=".1" width="400" />
</HBox>

<HBox>
<Label text="Selection:" />
<HSlider liveDragging="true" id="sel" minimum="0" value="0" maximum="{shelf.dataProvider.length}" snapInterval="1" width="400" />
</HBox>

<HBox>
<Label text="pop:" />
<HSlider liveDragging="true" id="pop" minimum="0" value=".43" maximum="1" snapInterval=".01" width="400" />
</HBox>

</VBox>
</Application>