Re: Center to Screen

2001-01-06 Thread REGNA CHANG
on starmovie the centerStage = true end - Original Message - From: "Beertje" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 06, 2001 11:01 PM Subject: Center to Screen > Greetings, > > Can someone please tell me what on startMovie handler is used to > auto

Re: Center to Screen

2001-01-06 Thread Tom Jacobs
At 12:01 AM -0500 1/7/01, Beertje wrote: >Can someone please tell me what on startMovie handler is used to >automatically center the movie to the existing screen? You can simply specify this as an option when creating your projector. -- Tom Jacobs InterVision www.intervisionmedia.com [To remove

Center to Screen

2001-01-06 Thread Beertje
Greetings, Can someone please tell me what on startMovie handler is used to automatically center the movie to the existing screen? Thanks in advance, George Carlile *S<*>Y<*>S<*>Y<*>S<*>Y<*>S<*>Y<*>S<* *__* *

Opening PDF files -- Urgent

2001-01-06 Thread Spectrum
dear Friends, I need to open PDf file on mouse click ( simple requirement). I am using D7 and pc ver only. I tried using behavior HTTP link and giving relative path to my surprise it works many a times but also is non-functional at times. Pl. tell me the best way out. How can I use 1) CONTROL

RE: re: Bezier curves...

2001-01-06 Thread Johannes Hansen
No problemo... http://www.director-online.com/accessArticle2.cfm?id=302 I dunno if this is what you need, but it was exactly the info I was looking for... Viva Lingo!!! Johannes Hansen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kerry Thompson Sent

Re: movieRate reaction Time

2001-01-06 Thread Roy Pardi
At 11:25 PM +0100 1/6/2001, Michael von Aichberger wrote: ovieRate property is set to 0. > >I tried setting the movieRate property in an on enterFrame handler, and in >an on beginSprite handler, the >effect is the same, the movie always starts playing before stopping. > Probably you just need to

movieRate reaction Time

2001-01-06 Thread Michael von Aichberger
Hello List! I have a quicktime movie in a frame that I want to appear on stage in a certain frame, but not yet to play as the playback head enters that frame. That is to say the first frame of the Quicktime movie should be visible until the user moves the mouse over the Quicktime movie. I want th

Re: counting in list

2001-01-06 Thread Daniel Plaenitz
At 20:29 06.01.2001 +, Yo Gomi wrote: >Hello, Lingo-Ls >Does anybody know how to count members in a list? >For example: >MyList=[#d,#a,#b,#c,#b,#a] >I want the lingo to find out that within myList, there are 2 of #a, 2 of #b, >1 of #c and 1 of #d. >If I do myList.count it only gives me the tot

Re: counting in list

2001-01-06 Thread Kerry Thompson
>Does anybody know how to count members in a list? Hi, Yo-- Here's one quick solution: on startMovie MyList=[#d,#a,#b,#c,#b,#a] a = 0 b = 0 c = 0 d = 0 x = MyList.count repeat with i = 1 to x case MyList[i] of #a: a = a + 1 #b: b = b + 1 #c: c = c

RE: counting in list

2001-01-06 Thread Mark R. Jonkman
Hi Yo Try this using a movie script or set it as a handler within an object or behaviour etc.. on mCountListItem (vList, listItem) i = 0 repeat with j = vList.count down to 1 if vList[j] = listItem then i = 1 + 1 end if end repeat return i end mCountListItem MyList=[

counting in list

2001-01-06 Thread Yo Gomi
Hello, Lingo-Ls Does anybody know how to count members in a list? For example: MyList=[#d,#a,#b,#c,#b,#a] I want the lingo to find out that within myList, there are 2 of #a, 2 of #b, 1 of #c and 1 of #d. If I do myList.count it only gives me the total of 6. Any suggestion greatly appreciated. Than

Re: new(#type) not working

2001-01-06 Thread Kerry Thompson
>>Kerry must have just been blowing you off in the typical big brother >>fashion. Irv's right - a movie script with this: > >I heard that Ricky Martin had the number "she moves" banned from british >radio because of the lyrics:"she blows me off". Man, you guys are brutal. You must be older brot

Re: re: Bezier curves...

2001-01-06 Thread Kerry Thompson
>No need, I found it already... Great--is it something you can share with the rest of the List? Inquiring minds want to know :-) Cordially, Kerry Thompson Learning Network [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post

Re: Sending E-Mail from the Projector...

2001-01-06 Thread Martin Bedard
Hi Deepak, You can use DirectEmail Xtra, is an easy to use cross-platform Scripting Xtra for Macromedia Director and Authorware that lets you compose and send e-mails, with attachments support, from within Director, Authorware and Shockwave applications. www.directxtras.com Bye Martin

re: Bezier curves...

2001-01-06 Thread Johannes Hansen
No need, I found it already... [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. Th

Bezier curves?

2001-01-06 Thread Johannes Hansen
Does anybody know where to find some explanation on how to program bezier curves... Thx in advance... Johannes Hansen [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,

Re: Lingo equivalent to eval()

2001-01-06 Thread Rob Romanek
Slava Paperno wrote: > I'm looking for a Lingo equivalent to the eval() or evaluate() function > that exists in some other languages. It returns a pointer to the variable > whose name is passed to it as a parameter. > Check out http://www.director-online.com/accessArticle.cfm?id=884 for a detail

Re: new(#type) not working

2001-01-06 Thread Jakob Hede Madsen
At 15:12 -0500 05/01/01, Kurt Griffin wrote: > > I have tried everything I can think of... even consulted an expert (my big >> brother Kerry) who was also baffled. > >Kerry must have just been blowing you off in the typical big brother >fashion. Irv's right - a movie script with this: I heard t

Re: new(#type) not working

2001-01-06 Thread Jakob Hede Madsen
At 20:10 -0800 04/01/01, Irv Kalb wrote: >Go through your scripts looking for "on new", and I'd be willing to >bet large sums of money that one of those scripts is a movie script >when it should be a parent script. Or just put a debug break right where you call #new, and you will be able to f

how do i connect my presentation with rdbms like oracle

2001-01-06 Thread JUNAID ALAM
hi friends , i am working on a presentation in which i have to connect my presentation with the database of oracle. so can anyone provide me the name of the xtra or any third party stuff and the url to solve my purpose. thanks in advance junaid india.