[flexcoders] Re: Memory leaks in a asyncronic operation

2008-06-04 Thread cavi21
I couldn't resolve my problem with the memory leak, but instead I resolve the problem of encoding to JPEG far much faster than with the JPGEncoding Class. Thanks anyway, cheers.

[flexcoders] Re: Saving BMPs

2008-06-04 Thread cavi21
SOLVED, with a class custom made. Thanks. --- In flexcoders@yahoogroups.com, cavi21 [EMAIL PROTECTED] wrote: Hello, like Isaid in another post, I'm doing a test application that capture an Bitmap with a Webcam, and then store it in the disk. But the JPEGEncoder takes so long to encode, so i

[flexcoders] Re: Memory leaks in a asyncronic operation

2008-06-03 Thread cavi21
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cavi21 Sent: Monday, June 02, 2008 2:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory leaks in a asyncronic operation Hello, i've been searching for a while to a solution to this problem, and i've been trying

[flexcoders] Re: Memory leaks in a asyncronic operation

2008-06-03 Thread cavi21
to get the full use of the Profiler in Flex 3? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: The Flex3 Profiler can help you find memory leaks From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cavi21

[flexcoders] Saving BMPs

2008-06-03 Thread cavi21
Hello, like Isaid in another post, I'm doing a test application that capture an Bitmap with a Webcam, and then store it in the disk. But the JPEGEncoder takes so long to encode, so i made a C# mini-program to do it. The problem now is how can I save de image in a BMP file format (1600x1200)

[flexcoders] Memory leaks in a asyncronic operation

2008-06-02 Thread cavi21
Hello, i've been searching for a while to a solution to this problem, and i've been trying myself, with no succeed. The problem is this, i'm encoding to JPEG six bitmap captures from a webcam stream in a video component. Up to here, is no problem. But if I used the native class to encode

[flexcoders] Re: how can i access an object in a for

2008-04-06 Thread cavi21
thanks alex for the reply, so do you mean, that if I have a panel (insidePanel_1 obtained by a for in some function) inside some panel (rootPanel) that is locate in the main application, the way a can access is like this: rootPanel[insidePanel_1].someProperty I tried this but I

[flexcoders] how can i access an object in a for

2008-04-05 Thread cavi21
Hello, i'm new in this group and in flex too but i've been an actionscript programmer for a while. The question is, how can i access an object that part of the name is the control variable of a for?. For example in flash, i have this: for (i=0;i5;i++){ _level[name_+i].property .. how