Re: [flexcoders] Registering flashvar variables properly?

2007-12-02 Thread Lex
Smith To: flexcoders@yahoogroups.com Sent: Friday, November 30, 2007 7:11 PM Subject: RE: [flexcoders] Registering flashvar variables properly? HTTPService.url isn't marked [Bindable]. Alex, your code mx:HTTPService ... url= {scrmurl}xmlrpc/request.php ... / should have

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
: [flexcoders] Registering flashvar variables properly? Hi, I'm busting my head against the wall on this one, I have to say that Flex is pretty frustrating when you otherwise code C++ or Java by trade. Poking around, I have found how to pass variables into Flex apps using flashvars. If I

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
PROTECTED] On Behalf Of Peter Farland Sent: Friday, November 30, 2007 3:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Registering flashvar variables properly? Right, HTTPService.url isn't marked [Bindable]. Programmatically updating it as needed should work, as Tracy mentioned

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lex Sent: Friday, November 30, 2007 2:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Registering flashvar variables properly? Whatever I tried, it just wouldn't work. I had to finally resort to giving the HTTPService

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
Sent: Friday, November 30, 2007 2:27 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Registering flashvar variables properly? I set the url property (I use several) of the HTTPService just before I invoke any send() and it works fine. Or did I misunderstand? Come to think of it my

Re: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Lex
. - Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Friday, November 30, 2007 5:23 PM Subject: RE: [flexcoders] Registering flashvar variables properly? Oops, missed that, but of course, otherwise this[i] = would have errored, since Application is not dynamic

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
Of Gordon Smith Sent: Friday, November 30, 2007 4:37 PM To: flexcoders@yahoogroups.com Cc: Peter Farland Subject: RE: [flexcoders] Registering flashvar variables properly? Pete, should changing the 'url' property of an HTTPService after it is created work? - Gordon

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
@yahoogroups.com Subject: RE: [flexcoders] Registering flashvar variables properly? You won't be able to {bind} to dynamically created properties easily. There may be a way to set up a binding using AS, not sure. You could just set the url directly in initApp(). Tracy

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
] On Behalf Of flexnubslice Sent: Friday, November 30, 2007 2:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Registering flashvar variables properly? Hi, I'm busting my head against the wall on this one, I have to say that Flex is pretty frustrating when you otherwise code C++ or Java

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Registering flashvar variables properly? scrmurl isn't a dynamic property.. it's declared at compile time as a public var, and should be bindable. - Gordon From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Peter Farland
@yahoogroups.com Subject: RE: [flexcoders] Registering flashvar variables properly? I had to finally resort to giving the HTTPService object an id The HTTPService object already had id=contactform. and adjusting that object's ID inside of the initialize block. Do you mean adjusting