>How do I set the sprites start and end frame in
>the score by Lingo.
It's actually less obvious than maybe it should be. You would think
that you could set the startframe and endframe, but they can't be set
(as Buzz just said too). You can get the effect you might want with
this:
on spriterange n,s,e,m
beginrecording
repeat with a = s to e
go frame a
sprite(n).member = m
sprite(n).tweened = true
end repeat
endrecording
end
Calling that for an area of the score that isn't occupied will make a
sprite that starts on frame s and ends on frame e, with m as its
member:
spriterange 1,50,75,member("sometext")
would spread the member "sometext" across the score from frame 50 to
75, in channel 1. The tweened part is to avoid every frame being a
key frame.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]