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...
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! ...
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...
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@...
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...
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...
Perhaps this will work: var crapola = squaresGrid.selectedItem.NameCol; var crapolaXML : XML = crapola[0] as XML; var name : String = crapollaXML.Name; -TH...
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...
Tino - thanks. There is a threshold on tomcat that limits the size. I basically got rid of this and it was fine :) -Julian ________________________________ ...
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...
Can you somehow send me your code? This is agitating. Value Objects are abt 100x better anyway tho... -Julian ________________________________ From: Dan Pride...
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...
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...
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...
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...
Crapola.toString() or crapola.text().toString()? Alex Harui Flex SDK Developer Adobe Systems Inc.<http://www.adobe.com/> Blog: http://blogs.adobe.com/aharui ...
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:...
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....
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...
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,...
... 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...
var crapola = squaresGrid.selectedItem; var name:String = crapola.NameCol..toString(); Thanks. That worked. Dan ... From: turbo_vb <TimHoff@...> Subject:...
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 =...
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. ...
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...