baddriverdave
04-29-2004, 12:25 PM
Hi folks. I am about done on this CD Rom project. Last thing I need to do is get the print function working. Basically, I have content being attached with .attachmovie("my_movieclip", "text"); In these movieclip I have a print button, with this code....
on(press){
printNum(_root.my_movieclip, "bmovie");
}
Now, I have about 30 of these movieclips that I'm attaching, and each one has a print button. They're (ideally) calling to the main movie and frames I've labeled with "#p" and given the instance of "my_movieclip". When the print is clicked, it should print up only that one single labeled frame/instance.
My problem is that when I click print for a movieclip, it prints all the frames labeled with #p, and it doesn't seem to recognize my instance names. If anyone could help me it would be much appreciated...
Thanks
Dave
on(press){
printNum(_root.my_movieclip, "bmovie");
}
Now, I have about 30 of these movieclips that I'm attaching, and each one has a print button. They're (ideally) calling to the main movie and frames I've labeled with "#p" and given the instance of "my_movieclip". When the print is clicked, it should print up only that one single labeled frame/instance.
My problem is that when I click print for a movieclip, it prints all the frames labeled with #p, and it doesn't seem to recognize my instance names. If anyone could help me it would be much appreciated...
Thanks
Dave