[flexcoders] Full Application Reset?

2007-01-30 Thread Brent Dearth
This has got to be an obvious implementation, but it's left me scratching my head. Here's my scenario: When user performs a logout in an authenticated flex application, I would like to fully re-initialize the application back to it's initial load state (as if the SWF was being accessed anew).

Re: [flexcoders] WITH construction ?

2007-11-05 Thread Brent Dearth
var o:Object = {a: 20, b: twenty}; trace (o.a + + o.b); with (o) { a = 40; b = forty; } trace (o.a + + o.b); On 11/5/07, Samuel Colak [EMAIL PROTECTED] wrote: Not quite what i mean - not to call the function but referring to properties inside the object - your demo implies a

Re: [flexcoders] Re: Application container failed to capture KeyboardEvent

2007-11-27 Thread Brent Dearth
I know this is a long-standing issue, but are there any developments in the works to prevent this sort of behaviour? I know there are work-arounds to Flash being able to obtain focus programmatically, such as using ExternalInterface calls from Javascript to pass keyboard events. However, stuff

Re: [flexcoders] Re: Application container failed to capture KeyboardEvent

2007-11-27 Thread Brent Dearth
. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Brent Dearth *Sent:* Tuesday, November 27, 2007 8:23 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Application container failed to capture KeyboardEvent I know this is a long

Re: [flexcoders] IE cache

2008-01-06 Thread Brent Dearth
If you are using SSL ... IE is really finicky when it comes to cache headers and SSL when used conjunction with plugins. You really need to be explicit, and should drop the Pragma and Expires headers and set Cache-Control to no-store, no-cache, must-revalidate, post-check=0, pre-check=0 more info

Re: [flexcoders] Re: Application protection

2008-01-16 Thread Brent Dearth
On a slightly related note ... have their been any developments on the Flash 9 / AS3 obfuscation front? On Jan 12, 2008 5:46 PM, simonjpalmer [EMAIL PROTECTED] wrote: Generally speaking the way to enforce your subscription and guarantee your money is to either charge up-front, disable

Re: [flexcoders] Re: Application protection

2008-01-16 Thread Brent Dearth
, as I haven't heard of any. On Jan 16, 2008 11:10 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 16 Jan 2008, Brent Dearth wrote: On a slightly related note ... have their been any developments on the Flash 9 / AS3 obfuscation front? In what direction ? The ABC that MXML compiles

Re: [flexcoders] No support for move refactoring in Flex Builder 3

2008-01-22 Thread Brent Dearth
Extensive refactoring capability is one of the biggest expectations I have of an IDE these days ... especially when that IDE costs several hundred dollars. *cough* On Jan 21, 2008 6:48 PM, ansury2001 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,

Re: [flexcoders] Streaming Video in Flex using Windows 2003 Server

2008-01-29 Thread Brent Dearth
It's a shame that Flash Player doesn't support RTSP. Is there any particular reason for this, other than Adobe wanting to leverage Flash Media Server? On Jan 29, 2008 5:50 PM, Samuel R. Neff [EMAIL PROTECTED] wrote: The only way to stream MP4 video to Flash Player is through Flash Media

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Brent Dearth
In the interest of standards, I'd like to second the issue of RTSP. Is this a limitation of Flash not supporting UDP? If so, it's a protocol that deserves Player attention regardless. On Feb 11, 2008 1:48 PM, Samuel Neff [EMAIL PROTECTED] wrote: This is more of a player issue than Flex, but

Re: [flexcoders] Fetching a xml file in a way that works via file:// and http://??

2008-02-27 Thread Brent Dearth
That compile flag is *-use-network=false *which acts as the toggle Sam mentioned. On Wed, Feb 27, 2008 at 11:25 AM, Samuel Neff [EMAIL PROTECTED] wrote: Can you embed the XML within the swf at compile time? If you can that would be the simplest solution. I don't remember the details but

Re: [flexcoders] Re: HTTPService Bug

2008-06-15 Thread Brent Dearth
I wrote about DTO serialization and object instantiation, awhile back. Relies on ObjectTranslator, along with xmlDecode: http://booleanbetrayal.com/2007/05/18/httpservice-xmldecode-objecttranslator-and-rabidsquirrels/ Hope that helps. On Thu, Jun 12, 2008 at 12:34 AM, Alex Harui [EMAIL

Re: [flexcoders] Generating AS3 code from Java

2008-06-19 Thread Brent Dearth
There's also a nice XDoclet plugin that handles JavaBean - AS3 DTO conversion: http://xdoclet.codehaus.org/Actionscript+plugin I've used this in the past and can vouch that it works quite well. On Wed, Jun 18, 2008 at 10:28 PM, Claudio M. E. Bastos Iorio [EMAIL PROTECTED] wrote:

Re: [flexcoders] Here's a great idea for flex 4 - simple color pallette utility

2008-06-23 Thread Brent Dearth
Have you filed a feature request for this, Patrick? It'll get my vote. On Mon, Jun 23, 2008 at 3:31 PM, Doug McCune [EMAIL PROTECTED] wrote: I'd vote for this too, especially if it was something that came up in the IDE as part of the code hinting for color style tags. On Mon, Jun 23, 2008

Re: [flexcoders] Array.split() to Vector.String Possible?

2008-12-01 Thread Brent Dearth
Fellow Brent ... You need to use the Global Vector() function: var blahVector:Vector.String = Vector.String(String(blah1 blah2 blah3).split( )); More info: http://livedocs.adobe.com/flex/3/langref/package.html#Vector() On Fri, Nov 28, 2008 at 10:28 PM, Brent Marshall [EMAIL PROTECTED]wrote:

Re: [flexcoders] Creating strongly typed objects from HTTPService results

2008-12-13 Thread Brent Dearth
Cleaning out my list mail and came across this ... I have a sample of this, I put together awhile back, if anyone's interested. It's a JSON implementation, but it piggy-backs on all the same principles here.