Package org.apache.flex.swf.tags

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


            writeTag(new MetadataTag(metadata));

        // SetBackgroundColor tag
        final RGB backgroundColor = swf.getBackgroundColor();
        if (backgroundColor != null)
            writeTag(new SetBackgroundColorTag(backgroundColor));

        // EnableDebugger2 tag       
        if (enableDebug)
            writeTag(new EnableDebugger2Tag("NO-PASSWORD"));
View Full Code Here


        return new ScriptLimitsTag(bitStream.readUI16(), bitStream.readUI16());
    }

    private SetBackgroundColorTag readSetBackgroundColor()
    {
        return new SetBackgroundColorTag(
                bitStream.readUI8(),
                bitStream.readUI8(),
                bitStream.readUI8());
    }
View Full Code Here

TOP

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

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.