RE: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Glenn J. Miller
Yeah... that's a good point too... LOL Peace... -- Dok Skyymap, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nathan Derksen Sent: Thursday, December 29, 2005 3:33 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Flash Class Array bug -

RE: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Glenn J. Miller
ay.push(10); this.myArray.push(20); } } Peace... -- Dok Skyymap, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glenn J. Miller Sent: Thursday, December 29, 2005 3:33 PM To: 'Flashcoders mailing list' Subject: RE: [Flashcoder

RE: [Flashcoders] Flash Class Array bug - Please verify

2005-12-29 Thread Glenn J. Miller
Hey Judah, Try this: class myClass { // initialize the array in the declarations private var myArray:Array = new Array(); function myClass { trace("myArray.length="+this.myArray.length) } public function addToArray() { this.myArray.push(10); this.myArray

RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
for me because its on a 1ghz machine. Glenn J. Miller wrote: >Chris, > >Just some 'nice-to-know' information. We're running several Subversion >repositories on a Fedora Core 3 boxen - FSFS Subversion file system type. It >absolutely rips a wake in the water

RE: [Flashcoders] SVN & TortoiseSVN

2005-12-14 Thread Glenn J. Miller
Chris, Just some 'nice-to-know' information. We're running several Subversion repositories on a Fedora Core 3 boxen - FSFS Subversion file system type. It absolutely rips a wake in the water for speed, and is very stable and secure as well (svn-ssh://)... Just thought I'd add my $0.03 {adjusted f

RE: [Flashcoders] Success Stories with Flash Friendly CVS Systems?

2005-12-12 Thread Glenn J. Miller
Robert, We use Subversion as well, and I've found the following very useful for development to production life cycle purposes [very high macro level] - your actual mileage may vary *wink*: [/local-source-sandbox] -> {publish to} -> [~/local-build-dirs] EX: Subversion sandbox = e:\development\svn-

RE: [Flashcoders] XML question

2005-12-07 Thread Glenn J. Miller
Variable scope... Try declaring them *outside* the onLoad() function, because those variables conveniently drift out of scope (release themselves) as the code exits that function... Hope this helps... -- Dok Skyymap Inc. 770.321.3967 Office 770.321.3454 Fax -Original Message- From: [EM

RE: [Flashcoders] Swtich Statement issue!?

2005-12-07 Thread Glenn J. Miller
Dan, Does a strict cast to the Number datatype process correctly? switch(Number(currItem.getMediaType())) { case VideoVO.FLV_STATE: break; default: break; } Or var _fState:Number = Number(currItem.getMediaType());

RE: [Flashcoders] Dynamic Function problem

2005-11-26 Thread Glenn J. Miller
Sajid, "But at the successful loading of xmlloaded() I would like to go to a specific function based on which XML has loaded." You sorta solved your own question issue here. Just place an indicator in the XML source data, some sort of an element/attribute you could read and in the processing logi

RE: [Flashcoders] Pulling Hair/Need Return Values

2005-11-14 Thread Glenn J. Miller
If I understand things correctly, perhaps this example could be useful: -- /* set up the xml document object so that it's visible to anything in the entire scope of the main process... */ var playerXML = new XML(); playerXML.onLoad

RE: [Flashcoders] passing a variable to a function

2005-11-09 Thread Glenn J. Miller
le may be helpful in this situation http://osflash.org/flashcoders/as2?s=delegate. Judah Glenn J. Miller wrote: >My guess here is that your reference to _root is 'lost' in terms of >scope, as you're handling the onLoad event locally (on the stack) >within the >loadDe

RE: [Flashcoders] passing a variable to a function

2005-11-09 Thread Glenn J. Miller
My guess here is that your reference to _root is 'lost' in terms of scope, as you're handling the onLoad event locally (on the stack) within the loadDescriptions() function. Might try this with your current approach: // namespace for this module if(_global.LoadNS == undefined) { _global.LoadNS

RE: [Flashcoders] AS2 compiler error extravaganza

2005-11-09 Thread Glenn J. Miller
Andreas, If I'm understanding things correctly, this may be something to consider: AS FILE #1: --- interface as.memomaps.model.Topic { function doSomething():Void; function doSomethingElse():Void; } AS FILE #2: --- import flash.geom.*; import as.memomaps.model.Topic; cla

RE: [Flashcoders] POST question

2005-11-07 Thread Glenn J. Miller
ork again. Go figure... -- Dok Skyymap, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ricky Bacon Sent: Monday, November 07, 2005 3:06 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] POST question Glenn J. Miller wrote: > Ricky, >

RE: [Flashcoders] Ajax and Flash

2005-11-07 Thread Glenn J. Miller
First of all, sorry to all for the noise and bandwidth waste here, but I just couldn't resist... >From an old M$ platform devs (15+ yrs - all manner of languages) perspective, ANYTHING that is 'cross-platform' from the Redmond crew is gonna turn out to be anything but. Their biggest talking point

RE: [Flashcoders] POST question

2005-11-07 Thread Glenn J. Miller
Ricky, What type of problem are you experiencing? I've personally not had an issue w/ any LoadVars reference usage. Please submit to the list a more detailed 'problem' (read code snippet), and perhaps we can get things solved a bit quicker for ya... Hope this helps... -- Dok Skyymap Inc. -

RE: [Flashcoders] Help For Custom Components

2005-11-04 Thread Glenn J. Miller
http://www.senocular.com/projects/?project=ZenDoc Hope this helps... -- Dok Skyymap Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Edgar Sent: Friday, November 04, 2005 12:41 AM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Help

RE: [Flashcoders] RE:txtNews.selectable = false NOT taking SOLVED.

2005-11-03 Thread Glenn J. Miller
Miles, My apologies, I completely misunderstood the implementation of what was desired and was a bit off the mark (I should pay more attention to the complete thread). Muzak is absolutely correct (Kudos!). The solution he's indicated actually casts a function call further down the inheritance chai

RE: [Flashcoders] txtNews.selectable = false NOT taking.

2005-11-02 Thread Glenn J. Miller
Miles, Another stab, how about 'dis: txtNews.editable = false; txtNews.enabled = false; That may or may not be of use. Hope this helps... -- Dok Skyymap Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Miles Thompson Sent: Wednesday, November 02, 2

RE: [Flashcoders] Forcing Flash going to next frame while executingcode? + MultiThreading in Flash?

2005-11-02 Thread Glenn J. Miller
Helen, I'm going to assume you've downloaded the XML source data for discussions purposes. If that isn't the case, I stand corrected and let me know. Now, on to the show... Is it possible to load the interface up in 'logical' chunks? If so, one way to do that, and we've done so successfully on so

RE: [Flashcoders] txtNews.selectable = false NOT taking.

2005-11-02 Thread Glenn J. Miller
Miles, If I understand things correctly, you're using a component TextArea, so the '.selectable' property isn't supported by that component - that would be for a standard text class (static or dynamic text fields). Try using the .editable property on the TextArea component, I think that'll accompl