RE: lingo-l Event Order

2003-07-02 Thread Kerry Thompson
 Oddly, Kerry seemed to forget reading page 402 of my book.
 
 I say oddly because he was the technical reviewer on it! ;)

Oh, I remember it, all right. Unfortunately, there are still a few
wretched souls who haven't be blessed by the [Ockrassa] enlightenment.

Bruce Epstein covers event order well in Director in a Nutshell. It
hasn't been updated since D7, I believe, but I still use it

But, for those of use without the books...

Cordially,

Kerry Thompson

[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!]


RE: lingo-l Event Order

2003-07-02 Thread Karina Steffens

 
 Oddly, Kerry seemed to forget reading page 402 of my book.
 
 I say oddly because he was the technical reviewer on it! ;)

Hmm.. Very suspicious... ;)

[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!]


Re: lingo-l Event Order

2003-07-02 Thread Howdy-Tzi
On Wednesday, Jul 2, 2003, at 08:08 America/Chicago, Kerry Thompson 
wrote:

Oddly, Kerry seemed to forget reading page 402 of my book.

I say oddly because he was the technical reviewer on it! ;)
Oh, I remember it, all right. Unfortunately, there are still a few
wretched souls who haven't be blessed by the [Ockrassa] enlightenment.
Actually it's not that much of a trick to gain that kind of 
enlightenment. One can do scripts with put messages as you did, or one 
can also check out page 395 of the Using Director MX book what comes 
in da' box wit da' software. It's doc'd in the 8.0 and 8.5 manuals too. 
Since I don't want to wait 3.72 hours for Apple's Help system to load I 
won't check the eDocs but I suspect a keyword search for message 
would turn up a similar list there.

Bruce Epstein covers event order well in Director in a Nutshell. It
hasn't been updated since D7, I believe, but I still use it
Yeah, it's workable as well, of course. You can tell the MACR docs are 
somewhat dated as they include stepFrame events, which aren't commonly 
used any more. Ah well.

Warren Ockrassa | President,  nightwares LLC  [EMAIL PROTECTED]
 nightwares LLC | Consulting  Programming http://www.nightwares.com/
  Developer | Structor, a presentation development/programming tool
  Info and demo | http://www.nightwares.com/structor/
 Author | Director 8.5 Shockwave Studio: A Beginner's Guide
Chapter samples | http://www.nightwares.com/director_beginners_guide/
[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!]


RE: lingo-l Event Order

2003-07-02 Thread Kerry Thompson
 Yeah, it's workable as well, of course. You can tell the MACR 
 docs are somewhat dated as they include stepFrame events, which aren't

 commonly used any more. Ah well.

They aren't? I use them all the time to get objects to work in synch
with the score.

Cordially,

Kerry Thompson

[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!]


Re: lingo-l Event Order

2003-07-02 Thread Howdy-Tzi
On Wednesday, Jul 2, 2003, at 10:33 America/Chicago, Kerry Thompson 
wrote:

Yeah, it's workable as well, of course. You can tell the MACR
docs are somewhat dated as they include stepFrame events, which aren't
commonly used any more. Ah well.
They aren't? I use them all the time to get objects to work in synch
with the score.
Oops, sorry, I though they'd been deprecated. My mistake.

-- WthmO

[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!]


Re: lingo-l Event Order

2003-07-02 Thread Howdy-Tzi
[re stepframe]

They aren't? I use them all the time to get objects to work in synch
with the score.
Oops, sorry, I though they'd been deprecated. My mistake.
I was thinking of perFrameHook! Dang, talk about a neuronal misfire...

-- WthmO

[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!]


Re: lingo-l Event Order

2003-07-02 Thread grimmwerks
Well, I think we ALL depreciate Kerry and his hard work.

On Wednesday, July 2, 2003, at 01:14  PM, Howdy-Tzi wrote:

Oops, sorry, I though they'd been deprecated. My mistake.
[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!]


Re: lingo-l Event Order

2003-07-01 Thread Anand Ravi
Thanks a lot for this info Kerry. I am sure this come in useful for a lot of
us. :)

 Here's something that may be useful: the definitive event order. First
 the results:
 -- PrepareMovie
 -- New frame
 -- Begin frame
 -- New Sprite 1
 -- Begin Sprite 1
 -- New Sprite 2
 -- Begin Sprite 2
 -- PrepareFrame. Sprite 1
 -- PrepareFrame. Sprite 2
 -- Prepare frame
 -- StartMovie
 -- EnterFrame. Sprite 1
 -- EnterFrame. Sprite 2
 -- Enter Frame
 -- ExitFrame. Sprite 1
 -- ExitFrame. Sprite 2
 -- Exit Frame
 -- End frame
 -- PrepareFrame. Sprite 1
 -- PrepareFrame. Sprite 2
 -- EnterFrame. Sprite 1
 -- EnterFrame. Sprite 2
 -- ExitFrame. Sprite 1
 -- ExitFrame. Sprite 2
 -- stopMovie
 -- end frame script
 -- End Sprite 1
 -- End Sprite 2

 First, the movie script:
 on prepareMovie
   put PrepareMovie
 end

 on startMovie
   put StartMovie
 end

 on stopMovie
   put stopMovie
 End

 Then a frame behavior in frame 1:
 on beginSprite me
   put Begin frame
 end

 on endSprite me
   put End frame
 end


 on new me
   put New frame
 end

 on prepareFrame me
   put Prepare frame
 end

 on enterFrame me
   put Enter Frame
 end

 on exitFrame me
   put Exit Frame
 End

 Essentially the same behavior on sprites in channels 1 and 2, except
 they report their sprite number instead of stuff like new frame.

 And finally, a script on frame 2:
 n endSprite me
   put end frame script
 end

 on exitFrame me
   halt
 End

 Hope this comes in handy for somebody.

 Cordially,

 Kerry Thompson

 [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!]




[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!]


Re: lingo-l Event Order

2003-07-01 Thread Howdy-Tzi
On Tuesday, Jul 1, 2003, at 23:46 America/Chicago, Anand Ravi wrote:

Thanks a lot for this info Kerry. I am sure this come in useful for a 
lot of
us. :)
Oddly, Kerry seemed to forget reading page 402 of my book.

I say oddly because he was the technical reviewer on it! ;)

Warren Ockrassa | President,  nightwares LLC  [EMAIL PROTECTED]
 nightwares LLC | Consulting  Programming http://www.nightwares.com/
  Developer | Structor, a presentation development/programming tool
  Info and demo | http://www.nightwares.com/structor/
 Author | Director 8.5 Shockwave Studio: A Beginner's Guide
Chapter samples | http://www.nightwares.com/director_beginners_guide/
[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!]