Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
in a column? Very frustrating for something that should be so simple. Thanks for the help Dan --- On Fri, 11/20/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Friday, November 20, 2009

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
column is bound to. -Julian From: Dan Pride danielpr...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sat, November 21, 2009 7:42:28 AM Subject: Re: [flexcoders] Syntax Question Julian... Apparently you are wrong? When I do it with an untyped var I get

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Saturday, November 21, 2009, 11:14 AM   Dan, The problem (I assume) is that the object you're getitng back isn't XML.  I

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
. Don't know what you're doing wrong... -Julian From: Dan Pride danielpr...@yahoo..com To: flexcoders@yahoogroups.com Sent: Sat, November 21, 2009 11:43:34 AM Subject: Re: [flexcoders] Syntax Question Thanks for the response. Its an ArrayCollection of XML

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
to throw something, sorry to visit this on you. --- On Sat, 11/21/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Saturday, November 21, 2009, 2:08 PM

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
=GZAW08 etc.../ then you would use squ...@name. -Julian From: Dan Pride danielpr...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sat, November 21, 2009 4:09:59 PM Subject: Re: [flexcoders] Syntax Question Yes I would think something this absurdly simple would

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
. I would truely like to know why nothing anybody has suggested has worked tho. It really bugs me. Dan --- On Sat, 11/21/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Saturday

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
since. I would truely like to know why nothing anybody has suggested has worked tho. It really bugs me. Dan --- On Sat, 11/21/09, Julian Alexander wb...@ymail. com wrote: From: Julian Alexander wb...@ymail. com Subject: Re: [flexcoders] Syntax Question To: flexcod...@yahoogro ups.com Date

Re: [flexcoders] Syntax Question

2009-11-21 Thread 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 on the left this    Center (@200ce0a1)    squat    XML    myValue    XMLList (@20611b21)    :( Dan

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
...@yahoogro ups.com Sent: Sat, November 21, 2009 5:14:59 PM Subject: Re: [flexcoders] Syntax Question   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 started

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
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 --- On Sat, 11/21/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders

Re: [flexcoders] Syntax Question

2009-11-21 Thread Dan Pride
Sorry that http://www.archaeolibrary.com/Gezer/Centers/srcview/ --- On Sat, 11/21/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Saturday, November 21, 2009, 5:21 PM

RE: [flexcoders] Syntax Question

2009-11-21 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Syntax Question Sorry that http://www.archaeolibrary.com/Gezer/Centers/srcview/ --- On Sat, 11/21/09, Julian Alexander wb...@ymail.com wrote: From: Julian Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders

Re: [flexcoders] Syntax Question

2009-11-20 Thread Julian Alexander
You can't access the value from the column name - getting the selected value will give you the entire row that the datagrid is displaying from which you can get the value you're looking for. In other words, if you have an XMLList as your dataProvider, you can do something like: var

Re: [flexcoders] Syntax Question

2009-11-20 Thread Dan Pride
Alexander wb...@ymail.com Subject: Re: [flexcoders] Syntax Question To: flexcoders@yahoogroups.com Date: Friday, November 20, 2009, 10:53 PM   You can't access the value from the column name - getting the selected value will give you the entire row

Re: [flexcoders] Syntax question

2007-09-22 Thread Daniel Freiman
try event.currentTarget.growerSearchGrid.selectedItem[ADDRESS_LINE#1]; - Dan Freiman On 9/22/07, candysmate [EMAIL PROTECTED] wrote: The conpiler complains with a syntax error 'expecting rightparen before 1.' for my line: var selectedGrowerAddress1:String =

RE: [flexcoders] Syntax question about conditional expressions

2006-01-27 Thread Matt Chotin
In a ternary expression each element has to be a single RVALUE, meaning that it's something that can be on the right hand side of the equals. So basically when you see a semicolon you know it's not going to work (funct2(); true). So I guess the answer is no, if funct2() is void you wouldn't use