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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print a castMember 1

Status
Not open for further replies.

Baixinha

Programmer
Dec 27, 2000
122
0
0
BR
I would like to print a castMember when the user clicks print, but I woundn´t like to use the print o matic xtra. There is another thing to do this only with lingo?
 
use a set frame to display just the castmember to print (say frame 100) then use:

on mouseUp me

printForm 100

end

In your cast member's script

Chris
 
There is a script error

Comma expected

on mouseUp me

printForm? 100

end
 
I tested with

printFrom 100

but its generate a GPF error in my computer
 
Sorry, my fault, it should be printFrom (not printForm)

The printFrom command has several forms,

to print just one frame:
1. printFrom frame
2. printFrom frame,reduction
or for a range of frames:
3. printFrom start,end
4. printFrom start,end,reduction

where reduction is the percentage to reduce by.

Chris
 
printFrom 100 -- 100 is a frame number where I wanna print

but its generate a GPF error in my computer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top