// heritrix: flags size changed in swf version 6
clipEventFlags = mFlashVersion < 6 ? in.readUI16() : in.readSI32();
}
SWFActions actions = mTagtypes.tagPlaceObject2(isMove, clipDepth,
depth, charId, matrix, cxform, ratio, name, clipEventFlags);
if (hasClipActions && actions != null) {
int flags = 0;
// heritrix: flags size changed in swf version 6
while ((flags = mFlashVersion < 6 ? in.readUI16() : in.readSI32()) != 0) {
in.readUI32(); // length
actions.start(flags);
ActionParser parser = new ActionParser(actions, mFlashVersion);
parser.parse(in);
}
actions.done();
}
}