How can i make a member grow in size as the time goes on using lingo.....
what i want to do is make a timer.....
so that for over say 20 secs the member("bar") right hand size gets
larger.... then on the 20 second does something like goes to another frame
thanx
jon
-----Original Message-----
From: Colin Holgate [mailto:[EMAIL PROTECTED]]
Sent: 16 January 2001 14:01
To: [EMAIL PROTECTED]
Subject: Re: <lingo-l> ANOTHER easy question!!!!!!!!!
>what is the significance between....
>
>ie.
>
>on startmovie
>something
>end
>
>and
>
>on startmovie
>something
>
>end startmovie
Lingo was heavily based (or extremely coincidentally like) HyperTalk.
With HyperTalk you have to say end handlername, and so Lingo takes
care of that for compatibility, or perhaps good coding reasons.
There's no good logical reason for it though, because the next on
something will help show where the previous handler ends, and so
Lingo not only doesn't require the handler name to be there, you
don't even need the word 'end' either. This would work as well as the
above two:
on startmovie
something
on anotherhandler
somethingelse
A lot of people seemed to write that way in Director 3 and 4, but I
think the consensus these days is to say 'end' but not say the
handler name.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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!]
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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!]