Printing

Why is this printing in flash so hard??

So heres the problem, in the timeline i have certain places where i allow the user to print whats on the screen.

Ive treid using the #p label on the frames but if there is more than one label it prints all the frames with that label.

Again i need only what on the screen to print at any given time!!

Any assiantance is helpful ASAP

*.Avi

Try putting stuff in different scenes?

No can do!!

The scene allows the user to change the color of an object, if i move to a different scene i cant carry over the color properties!!

oh, that sucks. Hrmm… AH! I got it. Just use Javascript to print the page. That will print whatever is in the Flash window @ the time!

Sounds good!!

So how do i do that associating the JS to a flash button

let me try to do something up for you ok?

Maybe this helps
http://www.macromedia.com/support/flash/ts/documents/printing_from_browsers.htm

or maybe this one
http://www.projectcool.com/webdev/Article/9970/0/page/3

Ok now!

Here is the Javascript that you need to place inside your HTML file.


<SCRIPT>
function printMe() {
	window.print();
	}
</SCRIPT>

Here is the action you need to put inside your MC.


on(release) {
 GetURL ("javascript:printMe()");
}

What this will do is print the HTML page and accordingly the Flash that’s on the page.

I hope this works out for you.

Taylor
(AKA DigitalPimp)

show off.

Yeah…that should work real nice.

Thanks a lot gentleman.

Oh, I’ll give that a try and may be back for more help

Hey everyone!!

So that last idea is not wokring. I tried putting that code in, the on release bit is attached to a button, and whne its clicked it says cannot open page…blah blah blah…

Any other ideas!!

Have you embeded the flash inside the HTML page yet?

yep…just like you said to…unfortunately i cant up load the file cause its kinda big

Can you past the error that you are getting?

a new pafe opens up saying Cannot open specified page…the usual IE error for unloadable pages!!

What is the URL in the adress bar?

d:/Avi/foldername/about:printMe

You’ve go something coded wrong in your project. Can you send it to me in e-mail or something? Try working on a blank stage and trying it.