Re: lingo-l green and black variables

2003-06-30 Thread Brennan
On Sun, 29 Jun 2003 12:48:15 -0300, Diego Landro [EMAIL PROTECTED] wrote: In a director project i recentely been involved into, i found that what to me appear as variables are in green. ie name and i can¥t relate the name to any fnction lingo has for name, so i wonder if i decide to name a

lingo-l totally stumped

2003-06-30 Thread cpasswater
Help! I am totally stumped after 4 very long days of trying to figure this out! I thought I understood lists and very simple databases--just saving and opening a text file with fileIO. Well silly me! I have a section of this CDRom I am working on that has to capture the text of a checkbox, add it

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
Hi Daniel, Thank you for your response! I'm rather vague on how the listToString functions...do I then say something like: put linearListOfStrings into field entry ? In other words, how do I get this to appear in my field or text sprite? Chris From: Daniel Nelson [EMAIL PROTECTED]

Re: lingo-l totally stumped

2003-06-30 Thread Daniel Nelson
Hi Chris, Basically, yes. But it is good coding practice to make code that may be used in multiple places into its own handler (even better to make it a handler of a parent script, but that can wait for now). So instead, you would do something similar to the following: put

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
Hi Neil, I'll try to explain and give the relevant code without getting to windy. I have a global database gDatabase in movie script ---this is the database I am converting to a text file using File IO gDatabase = [:] addProp #date, addProp #name, --on the stage I have a field for a name and

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
Thanks Daniel! Yeah, parent scripts--have read about them.. but... I'm still a baby and taking my first steps into really really deep waters! :) Chris From: Daniel Nelson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 30 Jun 2003 12:15:11 -0500 To: [EMAIL PROTECTED]

Re: lingo-l totally stumped

2003-06-30 Thread Buzz Kettles
At 12:15 PM -0500 6/30/03, you wrote: Hi Chris, Basically, yes. But it is good coding practice to make code that may be used in multiple places into its own handler (even better to make it a handler of a parent script, but that can wait for now). So instead, you would do something similar to

lingo-l Archives?

2003-06-30 Thread Kerry Thompson
I should know this. Where are the archives for this list? 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

Re: lingo-l Archives?

2003-06-30 Thread Cole Tierney
I should know this. Where are the archives for this list? http://www.mail-archive.com/[EMAIL PROTECTED]/ Or for Idioms around the world and how they compare: http://postal.tamu.edu/archives/lingo-l.html -- Cole [To remove yourself from this list, or to change to digest mode, go to

Re: lingo-l Archives?

2003-06-30 Thread Evan Adelman
everyone in unison: It's in the header of every email from the list! http://mail4.fcgnetworks.net/archives/lingo-l/ Cheers, Evan Kerry Thompson wrote: I should know this. Where are the archives for this list? Cordially, Kerry Thompson [To remove yourself from this list, or to change to

lingo-l need to attach a behavior

2003-06-30 Thread Matt Wells
Is there a way for lingo to attach a behavior to a sprite and then unattach it as well? [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]).

RE: lingo-l need to attach a behavior

2003-06-30 Thread Kerry Thompson
Is there a way for lingo to attach a behavior to a sprite and then unattach it as well? Check out the scriptInstanceList. 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,

RE: lingo-l Archives?

2003-06-30 Thread Kerry Thompson
everyone in unison: It's in the header of every email from the list! http://mail4.fcgnetworks.net/archives/lingo-l/ Thanks. Now, if I could just get Outlook to show the headers like a real e-mail program, I'd be set ^_^ Cordially, Kerry Thompson [To remove yourself from this list, or to

Re: lingo-l Archives?

2003-06-30 Thread Tab Julius
Your message header says: List-Archive: http://mail4.fcgnetworks.net/archives/lingo-l/ Though it only goes back a year, from the time we moved to MailMan. Somehow I have to figure out how to archive all the previous years when we were under majordomo software. I started the list in, I think,

Re: lingo-l need to attach a behavior

2003-06-30 Thread Slava Paperno
Look up scriptList and ScriptInstanceList in the Lingo Dictionary. S. At 02:10 PM 6/30/03 -0500, you wrote: Is there a way for lingo to attach a behavior to a sprite and then unattach it as well? [To remove yourself from this list, or to change to digest mode, go to

Re: lingo-l Archives?

2003-06-30 Thread Howdy-Tzi
On Monday, Jun 30, 2003, at 13:48 America/Chicago, Cole Tierney wrote: I should know this. Where are the archives for this list? http://www.mail-archive.com/[EMAIL PROTECTED]/ Or for Idioms around the world and how they compare: http://postal.tamu.edu/archives/lingo-l.html One can also look at

Re: lingo-l need to attach a behavior

2003-06-30 Thread Evan Adelman
specifically, make sure you create an instance of the script you're attaching to the sprite like so: y = script(stuff).new() sprite(newChannel).scriptInstanceList.add(y) You can download a sample movie which creates a sprite on the fly and then uses scriptInstanceList here:

lingo-l setScriptList

2003-06-30 Thread Matt Wells
--Ok, This works fine for adding a behavior On beginSprite me sprite(7).setScriptList([[(member 8 of castLib 1), [#pConstrained: 0]]]) end beginSprite --But, Shouldn't this remove it??? on endSprite me (7).setScriptList([]) end endSprite [To remove yourself from this list, or to

Re: lingo-l totally stumped

2003-06-30 Thread Neil
Hi Chris Here's some code for you to play with in an empty movie. Hopefully it shows how you can set your #qualifications property up and be able to access and set the data inside of it. Just paste this into a movie script (watch for line breaks) global gDatabase on startMovie gDatabase = [:]

Re: lingo-l setScriptList

2003-06-30 Thread Howdy-Tzi
On Monday, Jun 30, 2003, at 15:06 America/Chicago, Matt Wells wrote: --But, Shouldn't this remove it??? on endSprite me (7).setScriptList([]) end endSprite Not if you haven't specified that 7 is a sprite: sprite(7).setScriptList([]) However, again, check this list's archives, Macromedia's

Re: lingo-l totally stumped

2003-06-30 Thread grimmwerks
You can even do this easier via gDatabase[#date] = Today gDatabase[#name] = LingoSlingers Or in one line via gDatabase = [#date: Today, #name: Lingoslingers] Course I'd be careful using 'lingo' words as props, ie #date (date object) and name (member prop) On Monday, June 30, 2003, at 04:31

Re: lingo-l totally stumped

2003-06-30 Thread Howdy-Tzi
On Monday, Jun 30, 2003, at 15:31 America/Chicago, Neil wrote: Hi Chris Here's some code for you to play with in an empty movie. Hopefully it shows how you can set your #qualifications property up and be able to access and set the data inside of it. In addition to the samples and suggestions

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
Thanks to all who responded! This a.m. I was ready to call it quits but now I am re-charged to try this again! Lingo Ho! (til I beat my head against the next problem!) Chris From: Howdy-Tzi [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 30 Jun 2003 16:23:02 -0500 To: [EMAIL

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
Hi Warren, Just read your sections on lists and OOP from your book. The examples you used helped it click! I'm a visual thinker, never was good in logic or algebra and your examples are excellent for people like me! You can bet I'm going to add your book to my Director library. Thanks! Chris

Re: lingo-l totally stumped

2003-06-30 Thread cpasswater
I know exactly what you mean about visuals! To understand Director's scripting hierarchy I imagine a little postal worker with a piece of mail running around in a corporation asking if the piece of mail(with a script in it) is for this or that big muckety-muck. It really helps! Especially when the

lingo-l Re: totally stumped

2003-06-30 Thread Denis Bélisle
On Monday, June 30, 2003, at 12:01 PM, [EMAIL PROTECTED] wrote: --__--__-- Message: 7 Date: Mon, 30 Jun 2003 07:29:17 -0500 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: lingo-l totally stumped Reply-To: [EMAIL PROTECTED] Help! I am totally stumped after 4 very long days of trying to