Copying movie clips into another movie

Hi.

As I’ve told in a different thread, I’m making a coloring book for kids. My problem at the moment is the printing… There are several frames where each frame contains a drawing, and the user can print it out, before or after they have filled it with color.

Since I can’t figure out how to print specific frames and multiple layers, I’m wondering if I could do something like this:

When the user wants to print the current drawing, all the movieclips on this frame are copied to a different movie, which is then loaded into an empty movieclip (movieclipholder) and then printed.

Am I way off on this one, or is there some sense in my idea? Any suggestions on how to solve this would be appreciated! :slight_smile:

Hi,

I copied and pasted this from Flash’s reference:

print

Availability

Flash Player 4.20.

Usage

print (level)
print (level, “Bounding box”)
print (“target”)
print (“target”, “Bounding box”)
printAsBitmap (level)
printAsBitmap (level, “Bounding box”)
printAsBitmap (“target”)
printAsBitmap (“target”, “Bounding box”)

Parameters

print In normal mode in the Actions panel, choose As vectors to print frames that do not contain bitmap images or use transparency (alpha) or color effects; choose As bitmap to print frames that contain bitmap images, transparency or color effects. If you choose the As bitmap Print parameter, the AsBitmap syntax is appended to the print action in the Actions panel.

level The level in the Flash Player to print. In the Actions panel in normal mode, if you choose a level, the print action switches to printNum or printAsBitmapNum; in expert mode, you must specify either printNum or printAsBitmapNum. By default, all of the frames in the level print. If you want to print specific frames in the level, assign a #p frame label to those frames.

target The instance name of a movie clip to print. By default, all of the frames in the target instance print. If you want to print specific frames in the movie clip, assign a #p frame label to those frames.

Bounding box A modifier that sets the print area of the movie. This parameter is optional. You can choose one of the following:

•	bmovie Designates the bounding box of a specific frame in a movie as the print area for all printable frames in the movie. Assign a #b frame label to the frame whose bounding box you want to use as the print area. 
•	bmax Designates a composite of all of the bounding boxes of all the printable frames as the print area. Specify the bmax parameter when the printable frames in your movie vary in size. 
•	bframe Designates that the bounding box of each printable frame be used as the print area for that frame. This changes the print area for each frame and scales the objects to fit the print area. Use bframe if you have objects of different sizes in each frame and want each object to fill the printed page.

Returns

None.

Description

Action; prints the target movie clip according to the boundaries specified in the parameter (bmovie, bmax, or bframe). If you want to print specific frames in the target movie, attach a #P frame label to those frames. Although the print action results in higher quality prints than the printAsBitmap action, it cannot be used to print movies that use alpha transparencies or special color effects.

If you do not specify a print boundary parameter, the print area is determined by the Stage size of the loaded movie by default. The movie does not inherit the main movie’s Stage size. You can control the print area by specifying the bmovie, bmax, or bframe parameters.

All of the printable elements in a movie must be fully loaded before printing can begin.

The Flash Player printing feature supports PostScript and non-PostScript printers. Non-PostScript printers convert vectors to bitmaps.

Cheers

SHO

I have already read this, and it didn’t help me much… The problem is that I have multiple drawings on different frames, and using #p I’m only capable of printing one frame… And only one layer. So the colorfillings are not printed, only the lines.

Anyone? I’ve attached my .fla with temporarily drawings.