[flexcoders] Re: antiAliasType null exception with Text instances!

2009-02-27 Thread robbarreca
--- In flexcoders@yahoogroups.com, Darron J. Schall dar...@... wrote: I've already file a bug against this, but hopefully one of those 2 solutions should work for you. What is the JIRA issue number you filed this under at bugs.adobe.com? -R

[flexcoders] Using URLLoader, can't determine redirected-to URL in Event.COMPLETE

2008-11-12 Thread robbarreca
[Since my last post (http://tech.groups.yahoo.com/group/flexcoders/message/130012) got hijacked, started a small re-post. Sorry if this morally offends anyone.] Is there any way to find the destination of a redirect in ActionScript? For example, using Loader, you can access loaderInfo.url and it

[flexcoders] Determining the destination of a URL redirect with URLLoader or something else?

2008-11-10 Thread robbarreca
Is there a way to determine what the final redirection of a URLLoader resource is? For example, with Loader I can load http://www.youtube.com/v/6JBAxkZun3s, which gets redirected to

[flexcoders] Re: Attaching custom data to events (while avoiding race condition)

2008-06-10 Thread robbarreca
[mailto:[EMAIL PROTECTED] On Behalf Of robbarreca Sent: Monday, June 09, 2008 5:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Attaching custom data to events (while avoiding race condition) So when I say thread maybe I'm using the wrong terminology. I'm not actually talking

[flexcoders] Re: Flex Builder 3 debug builds broken, breakpoints all wrong

2008-06-10 Thread robbarreca
I agree and have seen this a few times. One odd occurrence is with a Flex Module in my Flex Application. It would serve up a stale build of the module unless I added a trace(foo); in the code, and then it would force a recompile. But when I would SVN revert back to the version without the trace

[flexcoders] Attaching custom data to events (while avoiding race condition)

2008-06-09 Thread robbarreca
Say I have two functions load() and handleComplete(event:Event). Right now to get custom data to handleComplete I do something like this private var someFlag:uint = 0; function load() { loader.addEventListener(handleComplete); someFlag = determineFlag(); loader.loadSomeStuff(); }

[flexcoders] Re: Attaching custom data to events (while avoiding race condition)

2008-06-09 Thread robbarreca
is single threaded for user code execution so you shouldn't have a race condition there On Mon, Jun 9, 2008 at 3:55 PM, robbarreca [EMAIL PROTECTED] wrote: Say I have two functions load() and handleComplete(event:Event). Right now to get custom data to handleComplete I do something like

[flexcoders] Re: Attaching custom data to events (while avoiding race condition)

2008-06-09 Thread robbarreca
a case where multiple threads are task switching and simultaneously executing functions. Every function call and event handler in flex is basically in-lined and will execute to completion. On Mon, Jun 9, 2008 at 5:11 PM, robbarreca [EMAIL PROTECTED] wrote: Sorry, I must have

[flexcoders] Re: Attaching custom data to events (while avoiding race condition)

2008-06-09 Thread robbarreca
I'd love to know if my explanation made any sense when someone gets a free moment. If it sounds like I'm smoking crack, please let me know and I'll check myself into rehab. Thanks! -R --- In flexcoders@yahoogroups.com, robbarreca [EMAIL PROTECTED] wrote: So when I say thread maybe I'm using

[flexcoders] Re: Loading ResourceModule and CSS with one HTTP call

2008-05-28 Thread robbarreca
Thanks Alex. I had pondered this custom Module solution as we're using Modules for another part of our application, but it does sound a bit hairy. I'll probably stick with programmatically setting the few styles we need for now. Cheers, Rob --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL

[flexcoders] How do I trigger updateDisplayList() on *every* component in my Application?

2008-05-27 Thread robbarreca
I have an application with a bunch of nested containers and components. We are internationalizing this app (with ResourceModules) and when someone switches languages we need invalidateDisplayList() called on every child component of the app. Iterating through the Application's rawChildren doesn't

[flexcoders] Re: [SOLVED] Trigger an invalidateDisplayList() when properties are changed

2008-05-27 Thread robbarreca
--- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: You'll see that you just need to change the locale chain of the resource manager. You already have a binding expression which invokes the resource manager. Thanks for the reply Richard. The problem I'm facing is that

[flexcoders] HTTPService call using a private SSL cert PEM

2007-12-27 Thread robbarreca
I have a REST web services call that uses a private SSL cert to authenticate communication. It works in PHP and command line cUrl, but I don't know how to pass the PEM file in the Flex 3 / Actionscript 3.0 HTTPService call. Is it possible? Below I give my PHP and cUrl snippets that work now, and