open a new flash page
and then press ctrl+R and then select your bmp file then
right click that bmp and then select convert to symbol
and select the option movieclip and then select ok
now your bmp was converted to movieclip
User Profile
Collapse
-
function draw_box(w,h,c) {
var new_box = this.createEmpt yMovieClip("new _box", this.getNextDep th());
new_box.beginFi ll(c);
new_box.lineSty le(0,0xCCCCCC,0 );
new_box.moveTo( 0, 0);
new_box.lineTo( w, 0);
new_box.lineTo( w, h);
new_box.lineTo( 0, h);
new_box.lineTo( 0, 0);
new_box.endFill ();
return new_box;
}
draw_box(305,20 ,0xCCCCCC);Leave a comment:
-
to change the image size
first u convert that images into movieclip and then set the height and width of that movieclip
at runtimeLeave a comment:
No activity results to display
Show More
Leave a comment: