Package flex.ant

Examples of flex.ant.HtmlWrapperTask


        ((NestedAttributeElement)mxmlcTask.createDynamicElement("load-config")).setDynamicAttribute("filename", flexConfigPath);
       
        mxmlcTask.setProject(project);
        target.addTask(mxmlcTask)
       
        HtmlWrapperTask htmlTask = new HtmlWrapperTask();
        htmlTask.setTaskName("html-wrapper");
        htmlTask.setTitle( mxmlFile+ " Flex Application");
        htmlTask.setFile(mxmlFile +".html");
        htmlTask.setHeight("100%");
        htmlTask.setWidth("100%");
        htmlTask.setApplication(mxmlFile + " app");
        htmlTask.setSwf(mxmlFile);
        htmlTask.setOutput(mxmlFileLocation);
       
        htmlTask.setProject(project);
        target.addTask(htmlTask);
    }
View Full Code Here

TOP

Related Classes of flex.ant.HtmlWrapperTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.