|
 |
flash_programming thread: Re: flash_programming digest: October 02, 2002
Message #1 by "INFO@W... on Mon, 07 Oct 2002 02:46:10 +0100
|
|
You can print a different frame, or a frame in a movie clip. that way you do
not have to worry about the button.
Mark Webley
Multimedia graphic designer.
> From: "Flash Programming digest" <flash_programming@p...>
> Reply-To: "Flash Programming" <flash_programming@p...>
> Date: Thu, 03 Oct 2002 00:02:07 +0100
> To: "flash_programming digest recipients" <flash_programming@p...>
> Subject: flash_programming digest: October 02, 2002
>
> -----------------------------------------------
> When replying to the digest, please quote only
> relevant material, and edit the subject line to
> reflect the message you are replying to.
> -----------------------------------------------
>
> The URL for this list is:
> http://p2p.wrox.com/list.asp?list=flash_programming
> FLASH_PROGRAMMING Digest for Wednesday, October 02, 2002.
>
> 1. print button
> 2. RE: print button
> 3. Re: motion guide tween
> 4. RE: print button
>
> ----------------------------------------------------------------------
>
> Subject: print button
> From: "Niels de Korver" <nielsdekorver@h...>
> Date: Wed, 2 Oct 2002 14:33:13
> X-Message-Number: 1
>
> is it possible to create a print button in flash that is invisible to the
> printer? as in that when I click print, everything in the window except
> the button get printed. Take into consideration that the whole window is
> flash.
> ----------------------------------------------------------------------
>
> Subject: RE: print button
> From: "John Walborn" <Jwalborn@m...>
> Date: Wed, 2 Oct 2002 07:27:11 -0600
> X-Message-Number: 2
>
> Unfortunately, this list is pretty quiet. You might want to try:
>
> www.askme.com
>
> Anything is theoretically possible, but I do not believe there is any
> EASY way to accomplish what you have described.
>
> -----Original Message-----
> From: Niels de Korver [mailto:nielsdekorver@h...]
> Sent: Wednesday, October 02, 2002 8:33 AM
> To: Flash Programming
> Subject: [flash_programming] print button
>
>
> is it possible to create a print button in flash that is invisible to
> the
> printer? as in that when I click print, everything in the window except
>
> the button get printed. Take into consideration that the whole window is
>
> flash.
>
> ----------------------------------------------------------------------
>
> Subject: Re: motion guide tween
> From: birdsandbees@f...
> Date: Wed, 2 Oct 2002 18:02:46
> X-Message-Number: 3
>
>> Hi
> I> am trying to do a motion tween with a car to travel across the screen,
> w> hich I managed to acchieve, but I find that the car more "jumps" its
> way
> a> cross than smooth runs across. I tried to change the frame rate but it
> d> oesn't achieve the smooth transition. The car is a vector graphic I
> u> sed. Should I make the wheels of the car rotate to achieve the effect?
> A> nd if How would I achieve this?
>
>> Hope any one can help me please?
> C> heers
> P> etra
> You can make it go slower by adding more frames between the two keyframes
> but twelve or fifteen frames a second is good for the web and the old slow
> machines so speedy it up is not necessarily the best solution.
> The wheels turning can help the look and feel of it.
> Create one wheel in
> a movie clip or graphic clip symbol (which can be animated as well) in
> place on the car symbol as I assume you have placed your car a symbol to
> get working on interpolation and put another instance of it on the car.
> Good luck; I am new to this news server.
> No spam is a good plan to be liked on the web.
> ----------------------------------------------------------------------
>
> Subject: RE: print button
> From: Abdul Sami <abdul_sami_20@y...>
> Date: Wed, 2 Oct 2002 11:12:34 -0700 (PDT)
> X-Message-Number: 4
>
>
> I am sending you the help available in the flash itself:
> 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.
>
> Example
>
> The following example will print all of the printable frames in the movie clip
> myMovie with the print area defined by the bounding box of the frame with the
> #b frame label attached:
>
> print("myMovie","bmovie");
>
> The following example will print all of the printable frames in myMovie with a
> print area defined by the bounding box of each frame:
>
> print("myMovie","bframe");
>
> ----------------------
> John Walborn wrote:Unfortunately, this list is pretty quiet. You might want to
> try:
>
> www.askme.com
>
> Anything is theoretically possible, but I do not believe there is any EASY way
> to accomplish what you have described.
>
> -----Original Message-----
> From: Niels de Korver [mailto:nielsdekorver@h...]
> Sent: Wednesday, October 02, 2002 8:33 AM
> To: Flash Programming
> Subject: [flash_programming] print button
>
>
> is it possible to create a print button in flash that is invisible to the
> printer? as in that when I click print, everything in the window except
> the button get printed. Take into consideration that the whole window is
> flash.
>
>
> Abdul Sami
>
>
> ---------------------------------
> Do you Yahoo!?
> New DSL Internet Access from SBC & Yahoo!
>
>
>
> ---
>
> END OF DIGEST
>
>
|
|
 |