Well I've created quite a basic build script for the Flex Viewer as a starting point but when I try and complie I'm getting error relating to
Error: unable to resolve 'assets/images/cross_cursor.png' for transcoding
I've looked on the internet and most of the results on these errors talk about missing files but I've checked the files and they all seem to be present.The build file is:<project name="Flex Build" basedir=".">
<property name="FLEX_HOME" value="D:\apps\Adobe Flash Builder 4\sdks\4.0.0" />
<property name="project.src.dir" value="${basedir}\src" />
<property name="output.dir" value="D:\CM\Out" />
<property name="debug" value="false" />
<taskdef resource="flexTasks.tasks" classpath="${basedir}\buildLibs\flexTasks.jar" />
<target name="compileApp">
<echo message="About to complie Flex Application" />
<delete dir="${output.dir}" />
<mxmlc file="${project.src.dir}\index.mxml"
incremental="false"
actionscript-file-encoding="UTF-8"
output="${output.dir}\FlexViewer.swf"
debug="${debug}"
keep-generated-actionscript="false">
<load-config filename="${FLEX_HOME}\frameworks\flex-config.xml" />
<compiler.source-path path-element="${project.src.dir}" />
<compiler.library-path dir="${basedir}\libs">
<include name="*.swc" />
</compiler.library-path>
</mxmlc>
<echo message="Complete" />
</target>
</project>
The full logfile is attached.Has anyone seen this error before?ThanksAndrew