RE: [Flashcoders] AS3 writing ByteArray hexadecimal data to a file(using Zinc)

2007-01-07 Thread Sascha
Yep you were right with the single digit hex chars! Thanks a lot Paul! Here's the thread on the Zinc Forum where I posted some code in case you're interested... http://www.mdmforum.com/forum/index.php?showtopic=19351st=0gopid=86635#en try86635 As it turned out this way is a lot faster that using

Re: [Flashcoders] XML.onLoad peculiarity

2007-01-07 Thread Miles Thompson
So it's most likely that ii) - nothing to parse - is most likely, how long does Flash wait / what triggers XML.onLoad? Just the end of a data stream? Miles At 08:12 PM 1/5/2007, Ray Chuan wrote: Hi, a status code of '0' could either mean i) no errors parsing ii) no XML parsed -- no

[Flashcoders] control the scroll of a scrollPane component V2

2007-01-07 Thread ntasky
Hi, How can I can control the scroll of a scroll pane content ? In V1 version i could use : myScrollPane.vPosition = myScrollPane.maxVPosition; but i found nothing on V2 version. Plus because my content is dynamic, is there an event that allows me to know when the scrollBar appears in the

Re: [Flashcoders] control the scroll of a scrollPane component V2

2007-01-07 Thread Hans Wichman
Hi, i used the following piece of code to scroll to the bottom of the scrollpane each time new content was added. Note that the scrollpane contained a textclip called answerclip. Each time text was added to the answerclip, the scrollpane needs to scroll. //next line is needed to fix layout bug

Re: [Flashcoders] control the scroll of a scrollPane component V2

2007-01-07 Thread ntasky
thanks very much, yes that helps :) maxVPosition is not present in the documentation And i had also the same bug for the layout, which now i can fix Nicolas - Original Message - From: Hans Wichman [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent:

Re: [Flashcoders] XML.onLoad peculiarity

2007-01-07 Thread Ray Chuan
Quote XML.onLoad docs from FMX2004: Event handler; invoked by Flash Player when an XML document is received from the server. If the XML document is received successfully, the success parameter is true. If the document was not received, or if an error occurred in receiving the response from the

Re: [Flashcoders] Capturing FMS video streams from multiple cameras

2007-01-07 Thread Dennis - I Sioux
Hey Tomas, Look at the Camera.get().. Just like the Microphone class.. you can get a list of available devices.. and use the index in the list as an argument to give with the .get() Hope this helps. With kind regards, Dennis I Sioux - Original Message - From: Tomas Lehuta [EMAIL

Re: [Flashcoders] control the scroll of a scrollPane component V2

2007-01-07 Thread Omar Fouad
yes that is working fine On 1/7/07, ntasky [EMAIL PROTECTED] wrote: thanks very much, yes that helps :) maxVPosition is not present in the documentation And i had also the same bug for the layout, which now i can fix Nicolas - Original Message - From: Hans Wichman [EMAIL PROTECTED]

[Flashcoders] JSFL writing a (Unicode) encoded text file

2007-01-07 Thread keith
Is it possible to write a Unicode encoded text file with JSFL? If so how can I do it? -- Keith H -- ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] JOB - Lead Flash Developer - Boston - Full-time

2007-01-07 Thread Chris Pointon
OTOlabs offers marketers, agencies, and publishers a suite of innovative digital marketing technologies. Clients from entertainment, automotive and package goods to food, beverage, and professional services have all benefited from our innovative, proprietary technologies. With offices in Boston

[Flashcoders] limits to AS2 levels of OOP class inheritance?

2007-01-07 Thread Newsdee
Hi all, A quick OOP question... is there a limit in AS2.0 on how many levels of inheritance can be done? My latest class is not recognizing any of the methods from it superclass', even though the compiler doesn't raise any errors. Here is the inheritance tree (I'm making a game, as you can

Re: [Flashcoders] limits to AS2 levels of OOP class inheritance?

2007-01-07 Thread Ron Wheeler
You might want to post some code. At least from the start of the class with the imports to the constructor and the method. The code that calls the shows the error would help. Ron Newsdee wrote: Hi all, A quick OOP question... is there a limit in AS2.0 on how many levels of inheritance can