Re: [flexcoders] upload files more than 150mb

2010-06-02 Thread Tom Chiverton
On Saturday 22 May 2010 06:04:01 you wrote: it just Freeze. Uh huh. That's a bug in older Players, iirc. If you look at the network traffic it'll actually be transferring. -- Tom Chiverton Helping to elementarily customize data as part of the IT team of the year 2010, '09 and '08

Re: [flexcoders] Re: flash 4 and flex 3

2010-06-02 Thread Tom Chiverton
On Monday 24 May 2010 06:05:29 you wrote: well, Flash Builder 4 can't do the release builds. In what way can't ? -- Tom Chiverton Helping to revolutionarily cultivate high-end strategic error-free distributed bandwidth as part of the IT team of the year 2010, '09 and '08

[flexcoders] removeEventListener - is it important?

2010-06-02 Thread Nick Middleweek
Hi, I'm trying to get my head into the Flex (3) component architecure and am reading through the source code of mx.controls.DateField. I've noticed quite a calls (eight of them) to addEventListener but there are none to removeEventListener. Is it not important to clear up after yourself?... It

Re: [flexcoders] Re: Maximized alwaysInFront AIR App covers Windows TaskBar

2010-06-02 Thread Tom Chiverton
On Tuesday 18 May 2010 12:33:21 you wrote: On my screen everything from Screen/Stage/NativeWindow all return the same height 1050px (well 1054px actually but that is down to the usual 3+1 bug) Screen.mainScreen.visibleBounds not working for you ? I got it from

[flexcoders] Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Stephen
This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set the initial display to the current Engineer. What I have is the value of the EngineerId. I have tried to access the values of the dropdown with no louk either, I feel like I'm getting

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Oleg Sivokon
If you are adding handlers to events dispatched by the objects that are going to be removed along with the listener, then why not? However, it is true that Flex components have no dispose() or similar methods.

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Nick Middleweek
Hi Oleg, Thanks for the reply... I think it's important too but can't understand why the DateField Class in the Flex SDK doesn't do it? Digging a little deeper... Here's the Constructor of the DateField... /** * Constructor. */ public function DateField() { super();

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Oleg Sivokon
Well, it's really hard to tell since all those objects inherit from UIComponent and it has almost every method overridden and to tell you the truth I just don't know what happens when these handlers are added or removed. I think in every particular case only the profiler will tell what is really

[flexcoders] Binding checkbox item renderer with XMLList item

2010-06-02 Thread Asif Nawaz
Let we have following data in xml form. employees    employee   name Smith /name   age 25 /age   isselected true /isselected   /employee    employee   name John /name   age 28 /age   isselected true /isselected   /employee    employee   name Roger /name   age 30 /age   isselected false

Re: [flexcoders] Re: flash 4 and flex 3

2010-06-02 Thread Brendan Meutzner
http://bugs.adobe.com/jira/browse/FB-26842 2010/6/2 Tom Chiverton tom.chiver...@halliwells.com On Monday 24 May 2010 06:05:29 you wrote: well, Flash Builder 4 can't do the release builds. In what way can't ? -- Tom Chiverton Helping to revolutionarily cultivate high-end strategic

Re: [flexcoders] Re: Possible to capture the console log and act on it?

2010-06-02 Thread Alex Harui
I’m pretty sure that won’t work. Also, the release player won’t output to the log anyway and I don’t think you want to require debugger players. Is the 3rd party SWF a Flex SWF changing states via Flex? I would think there are other ways to trap when it changes. On 6/1/10 1:50 PM,

Re: [flexcoders] removeEventListener - is it important?

2010-06-02 Thread Alex Harui
A.addEventListener(“someEvent”, B.someHandler) Adds a reference from A to B so that A can know the which object’s someHandler to call. If A and B are the same or B is a child of A it can’t cause a memory leak and thus the listener does not need to be removed. If A is a parent of B or is

[flexcoders] Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe employees please forward this message: Please make sure that my browser won't crash when a broken SWF is loaded or a runtime errors occur. Also: i experienced the crash a few hours ago the first

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I'm running Mac OS X 10.6.3 and the RC 6 from labs. But i'm running into the issues also with older versions of the player. --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I'm running Mac OS X 10.6.3 and RC 6 from labs, but i'm also experiencing this problem with 10.0.x. --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe employees please

Re: [flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Oleg Sivokon
Try Chrome, it won't crush because of plugins.

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-02 Thread Florian
Hi Alex, the component hierarchy: component __skin group __group id=contentGroup child / child / child / child / __contentGroup /group __/skin /component There is no specific layout applied, since an absolute positioning is required. Now when

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Yes, tahnx... but that's not the solution. I need to fix this since and i have to know the reason behind this. It can't be the case that the plugin is crashing my system. Browsers affected. Safari, Opera. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Try Chrome, it

[flexcoders] Re: Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Amy
--- In flexcoders@yahoogroups.com, Stephen sd_br...@... wrote: This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set the initial display to the current Engineer. What I have is the value of the EngineerId. I have tried to access

[flexcoders] Re: Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Stephen
There is no ArrayCollection, it is Dynamic? --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, Stephen sd_brown@ wrote: This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set

Re: [flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Oleg Sivokon
Well, if you will just say it crashed, you'll get nowhere. It is possible that programs have bugs, but if you want to have less bugs, you have to provide info to help identify them. At least post a link of the banner that caused the crash.

[flexcoders] Re: Binding checkbox item renderer with XMLList item

2010-06-02 Thread md_ars
Hello Asif, Following code can answer your first two questions however for third question you need to read and understand Item Renders that I have used in my code too. I used the source from http://techmytongue.blogspot.com/ for my Itemrender and modified little bit. ?xml version=1.0

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Well, all i could say was, that it crashed... Charles was showing me some possibilties. I cleaned my Libraries/Preferences/.../#SharedObjects Folder, reinstalled the player a few times (like 5 times) and now i was able to get proper error messages (see link below if you are interessted). It was

[flexcoders] No Flex builds since May 21st?

2010-06-02 Thread tntomek
Curious if anyone has any info, it's very unusual to see no nightlies for so long (this is a good thing). Is 4.1 done and baking?

Re: [flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Oleg Sivokon
Just for the record - a quick search in the bug database for LocalConnection gives 88 results, about one half of them unresolved. AFAIK there are some issues related to the new security model regarding Macs and LocalConnection, though it's hard to imagine it would crash the browser... It would be

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I have all the infos. And yes, i was quite shocked today experiencing this... well... Thanx for taking the time! --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Just for the record - a quick search in the bug database for LocalConnection gives 88 results, about one

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Just wanted to add, that i commented on http://bugs.adobe.com/jira/browse/FP-2837 Best regards. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Just for the record - a quick search in the bug database for LocalConnection gives 88 results, about one half of them

[flexcoders] Blocking

2010-06-02 Thread Richard Rodseth
I know this sounds terrible, but is there a way to wrap an asynchronous call in one which blocks while waiting for it to complete? I'm loading XML via URLLoader to configure a mock API implementation and am limited in what I can change in the main application architecture. So I need a way to

Re: [flexcoders] Blocking

2010-06-02 Thread Alex Harui
I don’t know of any way to block for async network calls. On 6/2/10 6:59 PM, Richard Rodseth rrods...@gmail.com wrote: I know this sounds terrible, but is there a way to wrap an asynchronous call in one which blocks while waiting for it to complete? I'm loading XML via URLLoader to

Re: [flexcoders] Blocking

2010-06-02 Thread Richard Rodseth
Thanks. I guess it makes sense now that I think about it. On Wed, Jun 2, 2010 at 9:05 PM, Alex Harui aha...@adobe.com wrote: I don’t know of any way to block for async network calls. On 6/2/10 6:59 PM, Richard Rodseth rrods...@gmail.com wrote: I know this sounds terrible, but is

Re: [flexcoders] No Flex builds since May 21st?

2010-06-02 Thread Alex Harui
Baked. Final inspections, packaging, loading up the truck... Unless the truck gets in an accident or a rat eats through the packaging, the truck will leave the loading dock shortly and deliver the goods. On 6/2/10 3:23 PM, tntomek tnto...@yahoo.com wrote: Curious if anyone has any