When using the mx:HTTPService tag as is, I can set a result handler. When I create my own as class that extends HTTPService, my attempt to set the result...
537
Matt Chotin
m_chotin
Apr 29, 2004 5:04 pm
I suggest you read the Flex/J2EE chapter that Steven and Ali posted on theserverside since it discusses design approaches that can apply to HTTPService even...
538
Matt Chotin
m_chotin
Apr 29, 2004 5:07 pm
The result that's being specified in the tag is the handler for the result event, it is not the result property. The result property is filled in ...
539
Matthew Horn
danger4242
Apr 29, 2004 6:08 pm
Jeff, You can't set the backgroundColor style on Accordion Header objects, but you can set other style properties, such as fontSize, as the following example ...
540
Tracy Spratt
nts333rd
Apr 29, 2004 6:21 pm
Yes, this helps a lot. I was trying to extend HTTPService so I could add some properties, but I think I see that I should be adding that kind of information...
541
Navita Bhoir
shravage_n
Apr 29, 2004 7:02 pm
How do I set the style for the accordian header when the application loads. Tried defining it appinit - but since the component is not created it does not set...
542
Matthew Horn
danger4242
Apr 29, 2004 7:15 pm
Navita, You likely want to set the accordion's creationPolicy to all, which will force Flex to instantiate all components and subcomponents in the accordion on...
543
Navita Bhoir
shravage_n
Apr 29, 2004 7:22 pm
thanks Matt. rgds, navita ... From: Matthew Horn [mailto:mhorn@...] Sent: Thursday, April 29, 2004 12:15 PM To: 'flexcoders@yahoogroups.com' ...
544
Stacy Young
xoconnick
Apr 29, 2004 9:54 pm
No idea how my email was picked up for this but I figure others might find interesting. I say the more the merrier...will push the whole concept forward. Stace...
545
Alistair McLeod
alimcleod
Apr 29, 2004 11:50 pm
Hi, I got the same (spam) email. It does look quite interesting, though I'd like to see a demo on their site. It's interesting that they compare their offering...
546
Navita Bhoir
shravage_n
Apr 30, 2004 12:00 am
Hi Alistair, When is the book "Developing Rich clients with Marcormedia Flex" to be available. I happened to read the chapter "Flex Integration with J2EE" on...
547
Dimitrios Gianninas
angelone197555
Apr 30, 2004 12:03 am
Yes so am I... I'd like to know when it will be available. Jimmy Gianninas - Software Developer Optimal Payments Inc. (514) 380 - 2700 extension 3249 _____ ...
548
Dirk Eismann
DEismann@...
Apr 30, 2004 7:13 am
Moin Sven, why do you use HTTPService for the XML-RPC call? Wouldn't it be better to use the WebService class instead? Dirk. ... From: Sven Claar...
549
Dirk Eismann
DEismann@...
Apr 30, 2004 7:50 am
Hi again, disregard my last question. Of course you can use HTTPService for XML-RPC calls. I just did a little test and all works fine. This example retrieves...
550
Dirk Eismann
DEismann@...
Apr 30, 2004 2:52 pm
Hi all, I made a little script that enables Flex to output debug/trace messages by using the Central Debug Panel ;) The functionality is quite simple: just...
551
Tracy Spratt
nts333rd
Apr 30, 2004 4:41 pm
Roger if you are monitoring this thread --- We have discovered a sort of "threshold" effect on the systems(2) that exhibit the subject misbehavior. A small...
552
Tracy Spratt
nts333rd
Apr 30, 2004 4:50 pm
Quick addition: ANY binding breaks the app, not just binding to my logic components. Binding to a global variable for example, after the threshold point, ...
553
Matt Chotin
m_chotin
Apr 30, 2004 5:20 pm
Are you saying that adding a binding breaks the app on one machine but not on another? We've had bugs where many bindings could cause problems but those were...
554
Tim Beynart
scum9000
Apr 30, 2004 7:12 pm
Hello everyone, I am about to buy MX Studio 2004, and for a couple hundred bucks more I get a DEVnet subscription. This would be worth it to me if the DRKs...
555
soulpositions
Apr 30, 2004 7:50 pm
Hey guys/ladies, Looking for some quick help. I've got a demo flex app i'm working on and I'm trying to capture the databinding event for a datagrid so I can...
556
Matt Chotin
m_chotin
Apr 30, 2004 8:12 pm
As in you want to capture when the dataProvider has been set so you can adjust the size? What are you binding the dataProvider to? If it's a service result...
557
soulpositions
Apr 30, 2004 8:17 pm
That's correct. I wasn't even thinking about the result event from my web service. I'll give that a whirl and see what happens. Thanks, ... binding will ... ...
558
cekvenich2
Apr 30, 2004 8:56 pm
I will be doing advanced Flex with DB training soon for private classes. Some of you know that I won JDJ trainer of the year a few years past. Also, I plan...
559
cekvenich2
Apr 30, 2004 8:56 pm
I will be doing advanced Flex with DB training soon for private classes. Some of you know that I won JDJ trainer of the year a few years past. Also, I plan...
560
Tracy Spratt
nts333rd
Apr 30, 2004 9:31 pm
Yes, this condition breaks our test apps on two co-worker's machines, but never on my system. We reinstalled Flex(1.0) on one of the machines to see if that...
561
nts333rd
Apr 30, 2004 11:29 pm
I'd like to set up a loop that will block current processing until some condition is met. setInterval, and the various timers I see on the forums allow one to ...
562
Matt Chotin
m_chotin
Apr 30, 2004 11:48 pm
Hi, The Flash Player doesn't support a threading model like you're looking for. There is only one thread for ActionScript code. So if the processing you're ...
563
Navita Bhoir
shravage_n
Apr 30, 2004 11:52 pm
Matt, I heard that single threaded model was resolved with the new Flash Player (7.0). Is it true ? rgds, navita ... From: Matt Chotin...
564
Matt Chotin
m_chotin
May 1, 2004 12:01 am
Nope, the model didn't change. The Player will do stuff in the background for you like sending the RemoteObject call and sending the WebService but once it...
565
Tracy Spratt
nts333rd
May 1, 2004 12:23 am
My service event handler is working fine, using event.call properties to send the result to the correct component instance. But I have a procedural path that...