Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print button on CD running EXE

Status
Not open for further replies.

brainpudding

Technical User
Sep 29, 2002
84
US
Is there some way I can put a PRINT button on a exe flash file?
 
There is a print function in Flash which you can trigger from a button.

There are two flavours:

print (prints as vector output)

printAsBitmap (prints a 'flattened' version of the image on screen including alpha effects etc which 'print' doesn't do)

You need to tell the movie what frame(s) you want printed of a particular movie or movieclip or it will attempt to print everything and also how big the printed area should be using frame labels #p and #b. It's all in the online help, just press F1 to get the syntax, but your button code will probably look something like this when it's finished:

on(release){
print(myClip,"bmovie");
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top