Avi
July 15, 2003, 4:09pm
1
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
system
July 15, 2003, 4:22pm
2
Try putting stuff in different scenes?
system
July 15, 2003, 4:25pm
3
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!!
system
July 15, 2003, 4:33pm
4
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!
system
July 15, 2003, 4:42pm
5
Sounds good!!
So how do i do that associating the JS to a flash button
system
July 15, 2003, 4:42pm
6
let me try to do something up for you ok?
system
July 15, 2003, 4:47pm
7
system
July 15, 2003, 4:55pm
8
system
July 15, 2003, 4:57pm
9
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)
system
July 15, 2003, 5:02pm
11
Yeah…that should work real nice.
Thanks a lot gentleman.
system
July 15, 2003, 5:03pm
12
Oh, I’ll give that a try and may be back for more help
system
July 15, 2003, 10:20pm
13
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!!
system
July 15, 2003, 10:25pm
14
Have you embeded the flash inside the HTML page yet?
system
July 15, 2003, 10:32pm
15
yep…just like you said to…unfortunately i cant up load the file cause its kinda big
system
July 16, 2003, 12:28am
16
Can you past the error that you are getting?
system
July 16, 2003, 5:31am
17
a new pafe opens up saying Cannot open specified page…the usual IE error for unloadable pages!!
system
July 16, 2003, 6:23am
18
What is the URL in the adress bar?
system
July 16, 2003, 2:09pm
19
d:/Avi/foldername/about:printMe
system
July 16, 2003, 2:38pm
20
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.