in Script
[Bindable]
private var chartID:String;
in mxml
<mx:Binding source="chartManagerService.lastResult.charts.paramBack2'
destination="chartID' />
<mx:Text text="{chartID}"/>
Notice the lower case on variable names, which is the best practice, caps
are reserved for Class names. You should really use a centralized model, as
the above implies that paramBack2 is also Bindable].
On Mon, Feb 16, 2009 at 5:18 PM, Frank Griffin <[email protected]>wrote:
> Cameron,
>
> I didn't want to use the whole
> "chartManagerService.lastResult.charts.paramBack2" because I need to
> embed the string it returns into the function below instead of
> {myCustIdHere}:
>
> private function returnToMagicHome():void
> {
> navigateToURL(new
> URLRequest("localhost/Magic94Scripts/mgrqispi94.dll?APPNAME=Test&PRGNAME
> =nav_frame&ARGUMENTS=-N{myCustIdHere}"),"_top");
> }
>
> I did get the following to work:
>
> private function getResult(event:ResultEvent):void{
> dataCollection = event.result.charts.chart
> as ArrayCollection;
>
> textChartId.text =
> chartManagerService.lastResult.charts.paramBack2;
> updateGrid();
>
> }
>
> As you can see it updates a text field named "textChartId" and I am
> hoping to be able to use the data in that field in the above URLRequest.
>
> Thanks,
>
> Frank
>
> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On Behalf Of Cameron
> Childress
> Sent: Monday, February 16, 2009 4:33 PM
> To: [email protected]
> Subject: Re: [AFFUG Discuss] Syntax for Private VAR
>
> On Mon, Feb 16, 2009 at 4:28 PM, Kit McCormick <[email protected]>
> wrote:
> > [Bindable]
> > private var ChartID : String =
> chartManagerService.lastResult.charts.paramBack2;
>
> This will set the value of
> "chartManagerService.lastResult.charts.paramBack2", into the variable
> called ChartID at the time that it runs. However, it will not "bind"
> ChartID to chartManagerService.lastResult.charts.paramBack2, which I
> think is what you may be looking for. You should look at creating the
> Bindings in the docs, or just use
> chartManagerService.lastResult.charts.paramBack2 wherever you'd
> normally have used ChartID.
>
> -Cameron
>
> --
> Cameron Childress
> Sumo Consulting Inc
> http://www.sumoc.com
> ---
> cell: 678.637.5072
> aim: cameroncf
> email: [email protected]
>
>
> -------------------------------------------------------------
> To unsubscribe from this list, simply email the list with unsubscribe in
> the subject line
>
> For more info, see http://www.affug.com
> Archive @ http://www.mail-archive.com/discussion%40affug.com/
> List hosted by http://www.fusionlink.com
> -------------------------------------------------------------
>
>
>
>
> -------------------------------------------------------------
> To unsubscribe from this list, simply email the list with unsubscribe in
> the subject line
>
> For more info, see http://www.affug.com
> Archive @ http://www.mail-archive.com/discussion%40affug.com/
> List hosted by http://www.fusionlink.com
> -------------------------------------------------------------
>
>
>
--
Darin Kohles
RIA Developer