I have a movieclip with 40-50 frames. There is a gotoandstop method that lets user browse through the frames like a book. I want the user to be able to print just the selected frame. I understand you can make it print just certain frames by using #p as a frame label, but I don't which frames I want to print until the user decides.
Is there away to tell the printJob class to print just one page by giving it a frame number? or even a frame label that is unique?
OK, figured it out, in case anyone ever has the same question.
I put the mc with all the frames inside another mc with only 1 frame. I print the mc holding the other mc and it only prints the current view of the holder mc. Works like a charm!
OK, I've run into another question. I want my user to have the option to print all pages...Well, this is easy, except, I don't want them to print the first or last page(they are intro and ending). How would I go about putting frame labels to NOT print a certain frame. Is this possible?