Just for info, here is the error I am getting in the console with the Ant Build.xml file run:

Buildfile: /Users/julian/Documents/files/workspace/MTASC_learning/build/build.xml
compile:
    [mtasc] Compiling 3 source files.
    [mtasc] mtasc -swf /Users/julian/Documents/files/workspace/MTASC_learning/deploy/Main.swf -header 500:500:31:666666 -cp /Users/julian/Documents/files/workspace/MTASC_learning/src -main -cp /Users/julian/Documents/files/workspace/MTASC_learning/src Main.fla

BUILD FAILED
/Users/julian/Documents/files/workspace/MTASC_learning/build/build.xml:31: error running mtasc compiler

Total time: 3 seconds

and here is the build file itself:

<?xml version="1.0"?>
<!-- ======================================================================
     Nov 10, 2005 3:42:29 PM                                                       

        

     description

                  

     julian                                                               
     ====================================================================== -->
<project name="Main" >
    <description>
            description
    </description>
    <!-- Declares references to needed directories. -->
            <property name="src.dir" location="../src/"/>
            <property name="build.dir" location="../deploy/"/>
    <!-- Properties for the output movie -->
            <property name="width" value="500"/>
            <property name="height" value="500"/>
            <property name="framerate" value="31"/>
            <property name="bgcolor" value="666666"/>
    <!-- =================================
          target: default             
         ================================= -->
    <!-- Define the MTASC ant task -->
            <taskdef name="mtasc" classname="org.as2lib.ant.Mtasc" classpath="/Applications/eclipse/plugins"/>

           

            <!-- Target that uses the MTASC Ant Task. -->
            <target name="compile" description="builds sample swf">
                    <mtasc srcdir="${src.dir}" classpath="${src.dir}" swf="${build.dir}/${ant.project.name}.swf"
                           main="true" header="${width}:${height}:${framerate}:${bgcolor}"/>
            </target>

   


</project>

any help is appritiated. cheers, Julian



_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to