Package org.apache.flex.swf.types

Examples of org.apache.flex.swf.types.ClipActions


        if (tag.isHasName())
            tag.setName(bitStream.readString());
        if (tag.isHasClipDepth())
            tag.setClipDepth(bitStream.readUI16());

        ClipActions clipActions = new ClipActions();
        clipActions.data = bitStream.readToBoundary();
        tag.setClipActions(clipActions);

        return tag;
    }
View Full Code Here


        if (tag.isHasBlendMode())
            tag.setBlendMode(bitStream.readUI8());
        if (tag.isHasCacheAsBitmap())
            tag.setBitmapCache(bitStream.readUI8());

        ClipActions clipActions = new ClipActions();
        clipActions.data = bitStream.readToBoundary();
        tag.setClipActions(clipActions);
        return tag;
    }
View Full Code Here

TOP

Related Classes of org.apache.flex.swf.types.ClipActions

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.