RE: lingo-l OO programming

2003-01-03 Thread Watson, Christopher
Hmmm...how about a complete OO Lingo implementation of the Document Object Model (DOM)? http://www.dom-lingo.webhosts2000.com Christopher Watson Sr. Software Engineer Interactive Web Media Lightspan Acheive Now Online Lightspan, Inc. Tel 858.824.8457 Fax 858.824.8001

RE: lingo-l MX opinion!!

2002-12-19 Thread Watson, Christopher
I love the re-tooled Debugger. Just being able to expand and collapse my lists is terrific. I like to orient the Debugger pane at the bottom of the Script window. That way, when the Script window switches over to debugging at the breakpoint, I don't lose my place. The script doesn't shift, and I'm

lingo-l Test

2002-12-10 Thread Watson, Christopher
Test [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!]

lingo-l Just Testing

2002-12-10 Thread Watson, Christopher
My apologies for all these tests. My company has been goofing around with anti-spam filters, and they still haven't gotten it quite right. Christopher Watson Sr. Software Engineer Interactive Web Media Lightspan Acheive Now Online Lightspan, Inc. Tel 858.824.8457 Fax

lingo-l Watchpoints

2002-11-08 Thread Watson, Christopher
Whenever I wanted to create a watchpoint in Lingo, I would do this... if (liValueIAmWatching = 1234) then nothing end if ...and I would place a breakpoint at the nothing line. I reasoned that the Watcher window wasn't ever going to help me in this regard because it just watched the variables,

RE: lingo-l ANN: LingoFish available at last!

2002-11-04 Thread Watson, Christopher
Well, download the Cast and the Test Movie and look into it. Pretty ding-dang cool, if you ask me. -Christopher -Original Message- From: [EMAIL PROTECTED] [mailto:grimmwerks;grimmwerks.com] Sent: Wednesday, October 30, 2002 12:59 PM To: [EMAIL PROTECTED] Subject: Re: lingo-l ANN:

RE: lingo-l ANN: LingoFish available at last!

2002-10-30 Thread Watson, Christopher
All tests passed. Windows 2000 Pro Pentium III, 500 MHz 128 MB RAM Nice job, Robert! Gotta love Lingo OOP for API implementations! Christopher Watson Creator, DOM-Lingo -Original Message- From: Robert Tweed [mailto:robert-lists;killingmoon.com] Sent: Wednesday, October 30, 2002 11:27 AM

lingo-l Quickie Port for Lingo and C Expert!

2002-09-26 Thread Watson, Christopher
Here's a good one. I'm having trouble with this. Maybe someone would like to take a stab at it for fun! Below is some C source for a relatively simple function that generates a series of three stellar magnitude deltas from an input floating-point value (along with a main test routine). I need to

RE: lingo-l dear macromedia (bug again)

2002-08-02 Thread Watson, Christopher
I'm going to have to go on record as agreeing with Buzz. And with Tom. :-) From the practical standpoint of what the mind expects, far models rendering in front of near models is indeed the root unexpected behavior: Q: Who is the customer here? A: The developer; the end-user. According to most

lingo-l Efficiency Questions

2002-07-17 Thread Watson, Christopher
In conjunction with my SkySVG project, some items that beg the question Which is best? Meaning, best from a speed and efficiency perspective. 1. Accessing character ranges lsRAh = lsInputLine.char[6..9] -OR- lsRAh = chars(lsInputLine, 6, 9) -OR- lsRAh = char 6 to 9 of lsInputLine 2.

RE: lingo-l Efficiency Questions

2002-07-17 Thread Watson, Christopher
Thanks, guys! Always a big help. My overheated benchmarks show that the chars() function is the winner by as much as a 24% margin. Thanks, Buzz, for the reminder about .ref. In my application, however, I'm hardly doing any multiple accesses of the same chunk, so I don't have a strong case for

RE: lingo-l What is the going rate for experienced Director now?

2002-07-16 Thread Watson, Christopher
That's not too big a shaft, Brian. High-level Director contract work -- depending on market, demand, alignment of skillset with project demands, clout, and many other factors -- should start around $40/hr and top out at around $150/hr. Again, lots of dependencies there. Under one set of

lingo-l Numeric Range Search in List

2002-06-27 Thread Watson, Christopher
OK, I need a little guidance here. I have a list with 9500+ elements in it. Each element in this big list is a four-item list which acts as bounding box limits. Looks like this... [[0.0, 2.5, 0.0, 2.5], [2.5, 5.0, 0.0, 2.5] ... [350.0, 360.0, 88.5, 90.0]] The first item in each internal list

RE: lingo-l Numeric Range Search in List

2002-06-27 Thread Watson, Christopher
Here's the original problem, guys. And, by the way, thanks for the shared brainpower. I'm using Lingo (and DOM-Lingo) to generate SVG documents for each of the Guide Star Catalog (GSC) regions within the Tycho-2 Star Catalog. Essentially, I'm generating a TON of very detailed star charts for

RE: lingo-l XML Question

2002-05-03 Thread Watson, Christopher
Take a look at DOM-Lingo: http://www.dom-lingo.webhosts2000.com It parses, serializes (writes), traverses, manipulates, etc. Everything you'd want to do, I'm sure...and all without an Xtra. ¯¯¯ Christopher Watson Sr. Software Engineer Interactive Web Media Lightspan,

RE: lingo-l Lingo Gurus! Need some Input!

2002-04-24 Thread Watson, Christopher
Can you set the colors on this sprite so that you can't see it? (leave it visible, just camouflage it. That's pricisely the kludge I'm running now. And it works, so I'm not going to fight it any longer. The QA Mode status text sprite is on-stage, but is shrunk to a height of only a few pixels

RE: lingo-l Lingo Gurus! Need some Input!

2002-04-23 Thread Watson, Christopher
Don't have a clue, but have you thought about leaving the text sprite there and not worrying about it? What happens if you have the text sprite, but don't write to it, or only write to it once in the whole routine? We ran a test that left the text sprite on-stage, and wrote into it in Release

RE: lingo-l Lingo Gurus! Need some Input!

2002-04-23 Thread Watson, Christopher
Have you tried throwing some put statements in there or commenting out specific chunks of code to try to determine what portion of the code is causing the slow-down? Yes. See my reply to Jakob. How bulky are the XML files that you are parsing? Could they be slowing things down? The XML is

RE: lingo-l Lingo Gurus! Need some Input!

2002-04-23 Thread Watson, Christopher
Does the text-fix also work if the member is not on the stage, or not even in a sprite? No. The sprite needs to be on-stage and visible for the speed-up to occur. -If it only 'fixes' while on the stage, then it might have to do with the sort of 'mini-updatestage' i anticipate is happening

lingo-l Lingo Gurus! Problem Solved...For Now...

2002-04-23 Thread Watson, Christopher
Thank you, everyone, for your help. After much consternation and consideration, I tried placing another instance of my Status text member onto the stage in a separate channel. I assigned a small behavior to that sprite to make it visible only in Release Mode, shrunk the height of the member to

RE: lingo-l Unicode in Director

2002-04-15 Thread Watson, Christopher
The XML Parser Xtra supports the UTF-8 and UTF-16 encodings of the Unicode character set. It also supports ISO-8859-1 (Latin 1), US-ASCII, and EUC-JP and SHIFT-JIS (for Japan). It also supports an encoding named x-director-lingo I think. But I can't locate the documentatioin for that right now,

RE: lingo-l Text cursor still shows after moving text box offst age!

2002-04-09 Thread Watson, Christopher
Thanks, Buzz...the scrollTop force-feed worked. -Christopher -Original Message- From: Buzz Kettles [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 4:46 PM To: [EMAIL PROTECTED] Subject: RE: lingo-l Text cursor still shows after moving text box offst age! have you tried either

RE: lingo-l Text cursor still shows after moving text box offstage!

2002-04-08 Thread Watson, Christopher
I'm having the same problem with the scroll bar for a scrollable text sprite. Visible/invisible, on-stage/off-stage...no matter what I try, that scroll bar is still there! ¯¯¯ Christopher Watson Sr. Software Engineer Interactive Web Media Lightspan, Inc. Tel 858.824.8457

lingo-l Time Stamping in Code at Publish Time

2002-03-18 Thread Watson, Christopher
Here's an interesting one. We've got several development and RD servers onto which I deploy the DCR I produce. The manual deployments happen relatively irregularly over the course of a week or so, and then the DCR is intergrated into a site build that is installed onto other servers at other

lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Watson, Christopher
Hello friends. Below you will find the properties and new handler for my string tokenizer. This object takes a string, and a collection of delimiters, and splits the string into an internally maintained linear list of tokens, based on the specified delimiting characters. I'm looking for ANY

RE: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Watson, Christopher
Thank you Cole, Irv and Luke. Cole, you were right. There are some tangible speed-ups when going to old school over dot. I'm converting my entire DOM implemenation, because it's definitely worth the effort. Irv, those were some terrific suggestions. I'll put the delimiter string length into a

RE: lingo-l where are the Lingo-L archives?

2002-02-21 Thread Watson, Christopher
Actually, for Outlook 2000, the quickest way to get to the headers is to right-click the message as it sits in your box, and choose Options. They appear in the Internet headers field of the Message Options window that pops up. And, you are correct, there are no options for displaying the full

RE: lingo-l XML with unkown amount of children

2002-01-28 Thread Watson, Christopher
Matt, If you're using the XML Parser Xtra, then every child node in the tree has a count property which will tell you how many children there are for that node. In your example, you can loop through the children of the b1 element node like this: repeat with i = 1 to

RE: lingo-l XML with unkown amount of children (Follow-up)

2002-01-28 Thread Watson, Christopher
-Original Message- From: Watson, Christopher [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 10:21 AM To: '[EMAIL PROTECTED]' Subject: RE: lingo-l XML with unkown amount of children Matt, If you're using the XML Parser Xtra, then every child node in the tree has a count property

RE: lingo-l Ancestor Limits?

2002-01-15 Thread Watson, Christopher
Thanks, Kerry. My chain is currently 7 deep, and I, too, am having no problems at this point. So I guess I won't worry. Christopher Watson Sr. Software Engingeer Director/Shockwave Development Lightspan, Inc. Tel: 858.824.8457 Fax: 858.824.8008 -Original Message- From: Kerry Thompson