Package org.apache.flex.swf.tags

Examples of org.apache.flex.swf.tags.EnableDebugger2Tag


    }

    private EnableDebugger2Tag readEnableDebugger2()
    {
        bitStream.readUI16();
        return new EnableDebugger2Tag(bitStream.readString());
    }
View Full Code Here


        if (backgroundColor != null)
            writeTag(new SetBackgroundColorTag(backgroundColor));

        // EnableDebugger2 tag       
        if (enableDebug)
            writeTag(new EnableDebugger2Tag("NO-PASSWORD"));

        // ProductInfo tag for Flex compatibility
        ProductInfoTag productInfo = swf.getProductInfo();
        if (productInfo != null)
            writeTag(productInfo);
View Full Code Here

TOP

Related Classes of org.apache.flex.swf.tags.EnableDebugger2Tag

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.