Hi All I'm starting on a new project today and my setting up my environment.
The project I am working on uses ANT to compile language swfs for localisation but the main swf is built using the usual built in flex compiler. The project is also published to a local server htdocs folder. My flex build path is: http://localhost/company/ezine/bin/ but when the browser opens it always opens at http://localhost/xerox/ezine/bin/Application.swf which doesn't work. I then have to go to http://localhost/company/ezine/bin/ manually but then of course debugging doesn't work. I'm a bit confused with how this works TBH. I just want Flex to open the correct url in the browser so that I can debug it properly. Can anyone help? This code in the build.xml file looks like it might be something relevent: <target name="optimise" depends="properties"> <java jar="${flex3sdk.base.dir}/lib/optimizer.jar" fork="true" failonerror="true"> <arg line="'${bin.dir}/Application.swf' -output '${bin.dir}/Application.swf' -load-config '${flex3sdk.base.dir}/frameworks/flex-config.xml' " /> </java> </target> What does this do? I tried removing the Application.swf but it doesn't work then. Many thanks

