Tag Info Tag Structure:
struct swf_placeobject2 { /* and swf_placeobject3 */swf_tag f_tag; /* 26 or 70 */
/* NOTE: the following flags can be read as one or two bytes also */
if(version >= 8) {
unsigned f_place_reserved : 5;
unsigned f_place_bitmap_caching : 1;
unsigned f_place_blend_mode : 1;
unsigned f_place_filters : 1;
}
if(version >= 5) {
unsigned f_place_has_actions : 1;
}
else {
unsigned f_place_reserved : 1;
}
unsigned f_place_has_clipping_depth : 1;
unsigned f_place_has_name : 1;
unsigned f_place_has_morph_position : 1;
unsigned f_place_has_color_transform : 1;
unsigned f_place_has_matrix : 1;
unsigned f_place_has_id_ref : 1;
unsigned f_place_has_move : 1;
unsigned short f_depth;
if(f_place_has_id_ref) {
unsigned short f_object_id_ref;
}
if(f_place_has_matrix) {swf_matrix f_matrix;
}
if(f_place_has_color_transform) {swf_color_transform f_color_transform;
}
if(f_place_has_morph_position) {
unsigned short f_morph_position;
}
if(f_place_has_name) {
string f_name;
}
if(f_place_has_clipping_depth) {
unsigned short f_clipping_depth;
}
/* 3 next entries since v8.0 */
if(f_place_filters) {
unsigned char f_filter_count;swf_any_filter f_filter;
}
if(f_place_blend_mode) {
unsigned char f_blend_mode;
}
if(f_place_bitmap_caching) {
/* WARNING: this is not defined in the Macromedia documentation
* it may be that it was part of the blend mode whenever the person
* who defined this byte was testing (I copied that from somewhere else!).
*/
unsigned char f_bitmap_caching;
}
/* since v5.0 */
if(f_place_has_actions) {
unsigned short f_reserved;
if(version >= 6) {
unsigned long f_all_flags;
}
else {
unsigned short f_all_flags;
}swf_event f_event[<variable> ];
if(version >= 6) {
unsigned long f_end; /* always zero */
}
else {
unsigned short f_end; /* always zero */
}
}
}; This tag will be used to specify where and how to place an object in the next frame. The PlaceObject is much different and is presented separately.
The f_depth field is used to indicate at which depth the character is inserted in the current frame. There can be only one object per depth value (thus a maximum of 65536 objects can appear on a single frame).
The f_place_has_move and f_place_has_id_ref flags are used to indicate what to do at the given depth. The following table presents what happens depending on the current value.
read more