Examples of ClipActions


Examples of flash.swf.types.ClipActions

        return factory.createActionList(keepOffsets);
    }

    public ClipActions decodeClipActions(int length) throws IOException
    {
        ClipActions a = new ClipActions();
        reader.readUI16(); // must be 0
        a.allEventFlags = decodeClipEventFlags(reader);

        ArrayList<ClipActionRecord> list = new ArrayList<ClipActionRecord>();
View Full Code Here

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

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

        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

Examples of tv.porst.swfretools.parser.structures.ClipActions

    final AsciiString name = parseStringIf(parser, 0x00006, placeFlagHasName, "PlaceObject3::Name");
    final UINT16 clipDepth = parseUINT16If(parser, 0x00006, placeFlagHasClipDepth, "PlaceObject3::ClipDepth");
    final FilterList surfaceFilterList = FilterListParser.parseIf(parser, placeFlagHasFilterList, "PlaceObject3::SurfaceFilterList");
    final UINT8 blendMode = parseUINT8If(parser, 0x00006, placeFlagHasBlendMode, "PlaceObject3::BlendMode");
    final UINT8 bitmapCache = parseUINT8If(parser, 0x00006, placeFlagHasCacheAsBitmap, "PlaceObject3::BitmapCache");
    final ClipActions clipActions = parseIf(parser, version, placeFlagHasClipActions, "PlaceObject3::ClipActions");

    parser.align();

    return new PlaceObject3Tag(header, placeFlagHasClipActions, placeFlagHasClipDepth, placeFlagHasName,
        placeFlagHasRatio, placeFlagHasColorTransform, placeFlagHasMatrix,
View Full Code Here

Examples of tv.porst.swfretools.parser.structures.ClipActions

    final Matrix matrix = MatrixParser.parseIf(parser, placeFlagHasMatrix, "PlaceObject2::Matrix");
    final CxFormWithAlpha colorTransform = CxFormWithAlphaParser.parseIf(parser, placeFlagHasColorTransform, "PlaceObject2::CxFormWithAlpha");
    final UINT16 ratio = parseUINT16If(parser, 0x00006, placeFlagHasRatio, "PlaceObject2::Ratio");
    final AsciiString name = parseStringIf(parser, 0x00006, placeFlagHasName, "PlaceObject2::Name");
    final UINT16 clipDepth = parseUINT16If(parser, 0x00006, placeFlagHasClipDepth, "PlaceObject2::ClipDepth");
    final ClipActions clipActions = parseIf(parser, version, placeFlagHasClipActions, "PlaceObject2::ClipActions");

    return new PlaceObject2Tag(header, placeFlagHasClipActions, placeFlagHasClipDepth, placeFlagHasName,
        placeFlagHasRatio, placeFlagHasColorTransform, placeFlagHasMatrix,
        placeFlagHasCharacter, placeFlagHasMove, depth, characterId,
        matrix, colorTransform, ratio, name, clipDepth, clipActions);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.