Search the web
Sign In
New User? Sign Up
flexcoders · RIA Development with Adobe Flex
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17876 - 17905 of 149634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17876
Even shorter: for (var locNode:XMLNode=aNode.firstChild; locNode != null;){ if (locNode.nodeType == 1 && locNode.nodeName=="location"){ var exclude:Boolean =...
Erik Westra
ewestra@...
Send Email
Jul 1, 2005
8:02 am
17877 elomer79
Offline Send Email
Jul 1, 2005
8:29 am
17878
Hi Everyone First - thanks for your help so far. I am reading the Flex book that is out ("Developing rich clients with macromedia flex" and I am trying to get...
pat_ryan_99
Offline Send Email
Jul 1, 2005
8:29 am
17879
http://www.everythingflex.com/blog/index.cfm?mode=archive&year=2005&month=5&day=4 Rich...
Rich Tretola
rtretola@...
Send Email
Jul 1, 2005
9:35 am
17880
Hallo, I tried to get the labelWidth-Property in a mx:Form. I tried it directly with formID.labelWidth and with formID.getStyle("label-width"). But I don't get...
r_woess
Offline Send Email
Jul 1, 2005
9:47 am
17881
yes, oxygen works fine. regards, michael...
Michael Nisi
michael.nisi@...
Send Email
Jul 1, 2005
11:26 am
17882
... http://www.mail-archive.com/flexcoders@yahoogroups.com/msg06102.html Best, Steven...
Steven Webster
swebsteratit...
Offline Send Email
Jul 1, 2005
12:32 pm
17883
Hi, Does anybody has used Flex with Websphere with security mode turned on ? Does anybody uses WebsphereLoginCommand ? Is it really integrated with Java 2...
Ricardo Menna
ricardo.menna@...
Send Email
Jul 1, 2005
12:46 pm
17884
We've used it here, of course. :) It integrates with WebSphere through com.ibm.ws.security.core.ContextManager. You can find information on adding users for...
Brian Deitte
bdeitte
Offline Send Email
Jul 1, 2005
1:48 pm
17885
It should be working. Please post the code. ________________________________ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of...
Matt Horn
danger4242
Offline Send Email
Jul 1, 2005
2:11 pm
17886
Hi All, Flex newbie here ;-) As a way of checking out Flex I'm trying to port an ImageBank app that was built using Flash MX, AMFPHP (Remoting) and mySQL I've...
pmarstonuoa
Offline Send Email
Jul 1, 2005
2:31 pm
17887
Try "kingdoms_cb.selectedItem.value.toString()" -Daman ... From: pmarstonuoa [mailto:p.marston@...] Sent: Friday, July 01, 2005 10:26 AM To:...
Dogra, Daman
dogra_daman
Offline Send Email
Jul 1, 2005
2:43 pm
17888
Try "kingdoms_cb.selectedItem.value.toString()" -Daman ... From: pmarstonuoa [mailto:p.marston@...] Sent: Friday, July 01, 2005 10:26 AM To:...
Dogra, Daman
dogra_daman
Offline Send Email
Jul 1, 2005
2:50 pm
17889
I got it working fine the old school way <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> <mx:Script> ...
Philippe Maegerman
pmaegerman
Offline Send Email
Jul 1, 2005
3:22 pm
17890
Cheers Daman, Can't seem to get that to work either. :-( I'm wondering . . .. in the Flash IDE there was a remoting debugger that would let me see what was...
Phil Marston
pmarstonuoa
Offline Send Email
Jul 1, 2005
3:25 pm
17891
What is the error? Tracy ... From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of elomer79 Sent: Thursday, June 30, 2005 7:58 PM ...
Tracy Spratt
nts333rd
Offline Send Email
Jul 1, 2005
3:31 pm
17892
The [Object] object thing means you are trying to look at a complex object, which selectedItem returns. SelectedItem is not a value, as you might expect, but...
Tracy Spratt
nts333rd
Offline Send Email
Jul 1, 2005
3:49 pm
17893
If you are using Flex Builder, then you can do detailed debugging. If you are using binding to handle your data, this is harder. That is the main reason I...
Tracy Spratt
nts333rd
Offline Send Email
Jul 1, 2005
3:55 pm
17894
There are couple of ways I check the payloads going back and forth 1) Flex Builder IDE has the Network monitor (Last tab in the "Results" window) which does...
Dogra, Daman
dogra_daman
Offline Send Email
Jul 1, 2005
4:00 pm
17895
HI Philippe, Yes that works - when I use any of the documented examples it's fine, but I'm not absolutely clear what the structure of the dataProvider is,...
Phil Marston
pmarstonuoa
Offline Send Email
Jul 1, 2005
4:01 pm
17896
Additional note for Daman's option 2.) After turning on remote-objects-debug in flex-config.xml, you'd either: a) Use the NetConnection Debugger.swf from the...
Peter Farland
pjfarland
Offline Send Email
Jul 1, 2005
4:07 pm
17897
Hi Tracy, What you've described is exactly where I've been looking. To be honest I'm not sure what the dataProvider looks like or what it is beyond being an...
Phil Marston
pmarstonuoa
Offline Send Email
Jul 1, 2005
4:12 pm
17898
Dear all I have one more question regarding data access using flex. I am working with flex, php and apache. I am trying to send the request from flex to php...
juyalmanu
Offline Send Email
Jul 1, 2005
4:26 pm
17899
dear all, I got it.. thanks a ton for the replies --Manu ... RemoteObject. ... you ... function, ... think ... logic ... Data ... means you ... request ... and...
juyalmanu
Offline Send Email
Jul 1, 2005
4:32 pm
17900
http://www.prismix.com/blog/archives/2005/01/more_on_flex_mx.cfm Here explain how to use AS2.0, CF and Flex in the eclipse....
Bruno Martins
bruheman
Offline Send Email
Jul 1, 2005
5:01 pm
17901
Woo hoo! :-) The Net.Connection debugger did it and no one would've guessed what the dataProvider looked like! where I had ...
Phil Marston
pmarstonuoa
Offline Send Email
Jul 1, 2005
5:01 pm
17902
... That's my baby! I can at least recognise the output! ;-) ... not sure I understand but will look out for info on it. ... yes I have seen that sort of...
Phil Marston
pmarstonuoa
Offline Send Email
Jul 1, 2005
5:04 pm
17903
Yes we were able use the Websphere 6.0 and Flex with security turned ON. I am using Custom User registry. _____ From: flexcoders@yahoogroups.com...
Shahnavaz Alware
shahnavaza
Offline Send Email
Jul 1, 2005
5:38 pm
17904
We are seeing very poor frame rates opening popup panels on top of data grids. Anyone else have this issue and any way to improve the performance?...
nextadvantage
Offline Send Email
Jul 1, 2005
6:07 pm
17905
I have been trying to learn about the makeup of this file so I can hopefully make a similar file myself. I know that the file is linked to other files which I...
nostra72@...
nostra72
Offline Send Email
Jul 1, 2005
6:08 pm
Messages 17876 - 17905 of 149634   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help