Custom scrollbars behavior

2003-06-30 Thread Francesco Scarfato
I need a custom scrollbars behavior and i don't want to use the behavior present in director's library 'cause i find not confortable, more complex for my scope and very slow on slow computer. Where i can find a good (and simple) behavior to scroll text member and i've the possibility to custom i

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: totally stumped Reply-To: [EMAIL PROTECTED] Help! I am totally stumped after 4 very long days of trying to figur

Re: 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 th

Re: totally stumped

2003-06-30 Thread Howdy-Tzi
On Monday, Jun 30, 2003, at 18:01 America/Chicago, <[EMAIL PROTECTED]> wrote: Hi Warren, Howdy. Just read your sections on lists and OOP from your book. The examples you used helped it click! Well good; I'm glad they could help. I tend to be fairly visual myself, and while a good technical un

Re: 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 > Fr

Re: 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 PR

Re: 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 you'

Re: 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

Re: 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 t

Re: 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 = [:]

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 chan

Re: 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: http://www.evanade

Re: 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 t

Re: need to attach a behavior

2003-06-30 Thread Howdy-Tzi
On Monday, Jun 30, 2003, at 14:10 America/Chicago, Matt Wells wrote: Is there a way for lingo to attach a behavior to a sprite and then unattach it as well? Look at setScriptList. Beware of setting it to [], as this can cause any later Lingo attachments you do to fail. Warren Ockrassa | Presiden

Re: 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 http://www.penworks.com/lingo

Re: Archives?

2003-06-30 Thread Tab Julius
Your message header says: List-Archive: 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: 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

RE: 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, ema

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]). Lingo-L

Re: 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 dig

Re: 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 http://www.pen

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 is

Re: 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 t

Re: 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 PROTEC

Re: 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 nam

Re: 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 listToString(myLine

Re: 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

Re: totally stumped

2003-06-30 Thread Neil
I'm not sure I completely follow what you're trying to do, but it sounds like you want to do something like this. In the message window txtList = [:] txtList.addProp(#cb, "checkbox text") put txtList member("text display").text = txtList.cb -- or member("tDisp").text = txtList[#cb] Try this

Re: totally stumped

2003-06-30 Thread Daniel Nelson
Hi Chris, gDatabase.addProp(, the list) --cann also replace addProp with setAProp For creating a carriage return delimited string of list elements: on listToString linearListOfStrings outputString = EMPTY repeat with aString in linearListOfStrings put aString & RETURN after output

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 i

Re: "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 na