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 150068 - 150097 of 150097   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
150068
Thanks for the response. Its an ArrayCollection of XML objects. var squat:XMLList = squaresGrid.selectedItem.NameCol; will trace as an XML List but I can not...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
4:43 pm
150069
Now that I've been laid off from Adobe (along with 700 others), I would like to seek Flex consulting opportunities, and one possibility is with web...
Greg Lafrance
greg_lafrance
Offline Send Email
Nov 21, 2009
5:45 pm
150070
I was under the impression the track and thumb are all that scale and the arrows would be ok? As I said, the skin works in some cases but not others. thanx! ...
skwasha
Offline Send Email
Nov 21, 2009
6:19 pm
150071
I have a datagrid, dataprovider is an ArrayCollection of XML Objects. I want to grab the value of the first row of the Name Column. Anybody? Dan...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
6:59 pm
150072
Why the heck do you need to re-cast as an XMLListCollection? This is a actually really simple... var squat:XML = XML(squaresGrid.selectedItem); var...
Julian Alexander
wb2nd@ymail.com
Offline Send Email
Nov 21, 2009
7:08 pm
150073
Dear All, I have a little IMAP Client that I wrote, and in the main it works perfectly except for when there is a MASSIVE email that I am trying to either...
wb2nd@...
wb2nd@ymail.com
Offline Send Email
Nov 21, 2009
7:16 pm
150074
You might want to start poking around in the Tomcat settings. http://tomcat.apache.org/tomcat-5.5-doc/config/http.html -Tino...
Tino Dai
oberoc@...
Send Email
Nov 21, 2009
7:25 pm
150075
... I don't think it's necessary - it would be an informed design decision depending on what you were intending to achieve. Part of the decision might also...
Paul Andrews
pauland2513
Offline Send Email
Nov 21, 2009
8:58 pm
150076
Yes I would think something this absurdly simple would be a single sentence reply which I could cut and paste,... unfortunately not. This statement with the...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
9:10 pm
150077
Perhaps this will work: var crapola = squaresGrid.selectedItem.NameCol; var crapolaXML : XML = crapola[0] as XML; var name : String = crapollaXML.Name; -TH...
turbo_vb
Offline Send Email
Nov 21, 2009
9:52 pm
150078
Alright Dan.. so we're going to solve this. After this much back-and-forth, we've gotta make it work. So here's the deal: if you use my statement and squat is...
Julian Alexander
wb2nd@ymail.com
Offline Send Email
Nov 21, 2009
9:54 pm
150079
Tino - thanks. There is a threshold on tomcat that limits the size. I basically got rid of this and it was fine :) -Julian ________________________________ ...
Julian Alexander
wb2nd@ymail.com
Offline Send Email
Nov 21, 2009
9:55 pm
150080
I tried all that in the first hour. None of it works I have been resisting it but I think I am just going to rewrite the whole damn thing in value objects. i...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
10:15 pm
150081
Can you somehow send me your code? This is agitating. Value Objects are abt 100x better anyway tho... -Julian ________________________________ From: Dan Pride...
Julian Alexander
wb2nd@ymail.com
Offline Send Email
Nov 21, 2009
10:21 pm
150082
var squat:XML = XML(squaresGrid.selectedItem);     var myValue = squat.Name; Returns in the debugger typed but empty values i.e. the last two have no arrow...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
10:22 pm
150083
Wow love to. You are a real gem to find up here :) Its at http://www.archaeolibrary.com/Gezer/Centers/Center.html with a SrcView folder in ...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
10:30 pm
150084
Frank critic also welcome. I'm a wanna be Rocket Scientist at this point who knows it but is determined to make the grade :) Dan ... From: Julian Alexander...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
10:31 pm
150085
Sorry that http://www.archaeolibrary.com/Gezer/Centers/srcview/ ... From: Julian Alexander <wb2nd@...> Subject: Re: [flexcoders] Syntax Question To:...
Dan Pride
danielpride
Offline Send Email
Nov 21, 2009
10:33 pm
150086
I am updating one of my underlying group rows externally via code (as opposed to item editor). Everything works fine when the group is expanded but if I update...
tntomek
Offline Send Email
Nov 21, 2009
10:49 pm
150087
Nothing is happening because the event has no context of the column that was supposedly clicked, try adding more arguments into the createEvent method. Having...
tntomek
Offline Send Email
Nov 21, 2009
11:20 pm
150088
Crapola.toString() or crapola.text().toString()? Alex Harui Flex SDK Developer Adobe Systems Inc.<http://www.adobe.com/> Blog: http://blogs.adobe.com/aharui ...
Alex Harui
alex_harui
Offline Send Email
Nov 21, 2009
11:23 pm
150089
Show us the toXMLString() of the XML object and tell us what you want from it. Alex Harui Flex SDK Developer Adobe Systems Inc.<http://www.adobe.com/> Blog:...
Alex Harui
alex_harui
Offline Send Email
Nov 21, 2009
11:24 pm
150090
The last argument in the function is the index of the column (0, which is the first, I have also tried 1 and 2 just to see if I could get something to happen....
invertedspear
Offline Send Email
1:04 am
150091
I am new to Flex however I have both platforms , Flex 3 and Flash CS4. My question is : When you code AS3 using Flex3 is it totally similar than Flash AS3? Do...
fred44455
Offline Send Email
1:28 am
150092
Ok, so it is e4x, look into the double dot notation and, as others have said. try toString() and toXMLString(). As close as you are it shouldn't be that hard,...
turbo_vb
Offline Send Email
1:52 am
150093
... One thing I've found useful, since e4x is designed to be used untyped and deliberately makes it hard to know the difference between XML and XMLList is to...
Amy
droponrcll
Offline Send Email
2:10 am
150094
var crapola = squaresGrid.selectedItem; var name:String = crapola.NameCol..toString(); Thanks. That worked. Dan ... From: turbo_vb <TimHoff@...> Subject:...
Dan Pride
danielpride
Offline Send Email
2:22 am
150095
var crapola = squaresGrid. selectedItem; Works but Shows up with a warning of no type declaration It shows up in debugger as "Object" but var crapola:Object =...
Dan Pride
danielpride
Offline Send Email
2:36 am
150096
Actually.... that didn't work either. It returned a value if the var was untyped The var would not type I could not use it as an input where I need it. ...
Dan Pride
danielpride
Offline Send Email
3:15 am
150097
Grouping data provider has its own sort property that is separate from the base sort on your ArrayCollection, you will have to specify that in one of the group...
tntomek
Offline Send Email
7:48 am
Messages 150068 - 150097 of 150097   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