[Flashcoders] Memory issue with large images

2007-07-26 Thread Lori Hutchek
Hi All, Sorry if this is an old issue thats been discussed but couldn't find anything in google or the archives. I'm building a program that loads in images that could be over 2mb and we have noticed that the memory usage spikes after the image is loaded. Not only that but depending on if u

[Flashcoders] Exclusion XML generator

2007-05-30 Thread Lori Hutchek
Hey All, Is there a tool out there that will generate exclusion files? Thanks, Lori- ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought

[Flashcoders] FLVPlayback Component on Limelight

2007-05-22 Thread Lori Hutchek
Hey Everyone, I've been trying to use the FLVPlayback component and our video server provider is Limelight. Has anyone else had issues? Can you point me in the right direction for fix this? THANKS! Lori- ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] FLVPlayback Component on Limelight

2007-05-22 Thread Lori Hutchek
probable means live streaming from a webcam rather than using streaming server such as FCS. This isn't clear in the docs though, at least it wasn't to me. Helen http://flash-creations.com http://i-technica.com Lori Hutchek wrote: Hey Everyone, I've been trying to use the FLVPlayback

[Flashcoders] [AS3] VideoPlayer class

2006-11-16 Thread Lori Hutchek
In AS2 i was able to use the VideoPlayer class as a lighter version of the FLVComponent to create a nice video player. Yes i was lazy and didnt want to roll my own. So i was hoping to do the same with AS3, but it looks like the changed the VideoPlayer class doesn't allow this possibility. Has

re: [Flashcoders] [AS3] VideoPlayer class

2006-11-16 Thread Lori Hutchek
); } } } From: Lori Hutchek [EMAIL PROTECTED] Sent: Thursday, November 16, 2006 6:46 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] [AS3] VideoPlayer class In AS2 i was able to use the VideoPlayer class as a lighter

[Flashcoders] Letting go of AS2 for AS3

2006-11-14 Thread Lori Hutchek
Okay im in the middle of reading AS3 Cookbook, and Essential AS3. And i'm having some trouble grasping the concept of the main class file {as in the root package for the program you are constructing}, both books talk about this. But are they talking about constructing applications using

RE: [Flashcoders] Letting go of AS2 for AS3

2006-11-14 Thread Lori Hutchek
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Letting go of AS2 for AS3 Is Essential AS3 book out yet? I cant see it on Amazon.co.uk -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lori Hutchek Sent: 14

[Flashcoders] FileReference LocalConnection/SharedObject issue

2006-11-06 Thread Lori Hutchek
Hi All, I am trying to send a FileReference object over a localconnection or through a sharedobject. In the second swf, which is expecting the data, its receiving the object but for some reason all of the properties of the fileReference object are undefined. Has anyone else experience this?

[Flashcoders] FLVPlayback and Garbage Collection/Memory Leak

2006-09-08 Thread Lori Hutchek
Hi All, I'm having an issue with the FLVPlayback component not actually clearing from memory after use. My application plays multiple videos over an extended period of time and I've noticed that as the user progress from one section to another with video playing the memory usage for

RE: [Flashcoders] hardcoding xml

2006-09-08 Thread Lori Hutchek
One idea might be to put the xml into a dynamic text field and when needed read the text of it and parse the xml. Lori- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Friday, September 08, 2006 10:30 AM To: Flashcoders mailing list

[Flashcoders] FLVPlayback and Garbage Collection

2006-09-07 Thread Lori Hutchek
Hi All, I'm having an issue with the FLVPlayback component not actually clearing from memory after use. My application plays multiple videos over an extended period of time and I've noticed that as the user progress from one section to another with video playing the memory usage for

[Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread Lori Hutchek
I've been having problems with the xpathapi. I've been trying to do a wildcard search and according to all the documentation it's supported yet even simple straight forward search isn't working. Can anyone help? Example : code import mx.xpath.XPathAPI; x = new XML(test thing='boo'items

RE: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread Lori Hutchek
The reason I am trying to do the wildcard search is because I have nodes of the same name at different levels and I need them all. So giving a specific path wouldn't give me all of the nodes I need. Here's an expert... xml node nodid=cue14 /node node nodid=cue15

[Flashcoders] Preventing Compilation of components and source code

2006-06-29 Thread Lori Hutchek
Hey All, I'm trying to build an application with distributed swf's, which contain components and have linkages to external source code files. One thing I've come across is that some of the same code references and components are being used across my files (ie. I'm using a radio button in 4

RE: [Flashcoders] netstream and seeking. high fps.

2006-05-18 Thread Lori Hutchek
There should be a way when compressing video to specify just how many keyframes you want. And yes in order to seek to specific positions you will need to add more keyframes. Flash whether through FCS or on disc only seeks to keyframes. You could use the flash Video Encoder to add in keyframes at

[Flashcoders] Junior Flash Programmer Needed (NYC)

2006-01-25 Thread Lori Hutchek
Junior Flash Programmer Needed. This job is full-time. Part-time and contract will not be considered. Requirements: - Bachelors degree in Computer Science or related degree - Must have experience with Flash 8 MX 2004 - Must know how to program using Actionscript 2.0 - An understanding of OOP -

RE: [Flashcoders] BitmapData.draw and FLV's

2005-12-16 Thread Lori Hutchek
I'm having the same problem as Jordon. But It's with Flash 7 video using netstream. I have version 8.0.22.0 of the plugin and it shows up as a white box when I try and do a draw command on something that has FCS video. Lori- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] BitmapData and Streaming Video

2005-12-15 Thread Lori Hutchek
[previous message] Hey Lori, does it happen with progressive downloaded FLV's or true FCS streamed video? I've been able to do it with progressive's without a problem. [/previous message] It's FCS video that I'm having a problem with. The app I'm building runs off of both cd and web. And the

[Flashcoders] BitmapData and Streaming Video

2005-12-14 Thread Lori Hutchek
Hi All, I'm attempting to take a capture of the stage doing BitmapData. It seems to be working throughout my movie, EXCEPT, when I have streaming video on the stage. Has anyone else run into this issue, maybe come up with a work around? Here's the code I'm using, It's really