[MX04] Another Stupid print question
Sorry if this is a dumb question.
I'm making a flash exe file kind of like a book. I have print buttons But heres the problem. I want multiple print options, on one page I may have a button to print just that page, and one button that will print the chapter. And at the beginning of the book I'd like one that will print all.
What I started off doing was just using
on (release) {
print("#b","bframe");
}
Then I realized this isnt going to work if I use it on each chapter it will print all the #b frame labels from the entire file.
Is there a way I can specify what frames from what scene I want linked to my print buttons?