<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16212</id>
	<title>Nabble - FlexCoders</title>
	<updated>2009-11-25T14:28:04Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/FlexCoders-f16212.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FlexCoders-f16212.html" />
	<subtitle type="html">The flexcoders mailing list is for enterprise software developers, developing Rich Internet Applications using Macromedia Flex. The list will discuss methods and practices for Flex RIA development, including MXML and ActionScript 2.0, as well as best-practices including testing, design patterns, J2EE and .NET integration, etc.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26521388</id>
	<title>Combo Box &amp; Data Grid</title>
	<published>2009-11-25T14:28:04Z</published>
	<updated>2009-11-25T14:28:04Z</updated>
	<author>
		<name>criptopus</name>
	</author>
	<content type="html">If I have a table with a field that contains the numbers 0,1,2,3 and I want them to be displayed in the data grid say as &amp;quot;Non-Member&amp;quot;, &amp;quot;Member&amp;quot;,&amp;quot;Instructor&amp;quot;,&amp;quot;Administrator&amp;quot; and be able to select them with a combo box only to have the numeric value posted back to the table.
&lt;br&gt;&lt;br&gt;How do you do it?
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combo-Box---Data-Grid-tp26521388p26521388.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26521288</id>
	<title>Re: how to get an array as a part from another array?</title>
	<published>2009-11-25T14:20:35Z</published>
	<updated>2009-11-25T14:20:35Z</updated>
	<author>
		<name>jamesfin-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private function seniorsOnly(person:*, index:int, arr:Array):Boolean{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return (person.isSenior == true?true:false);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private function init():void{
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var ac:ArrayCollection = new ArrayCollection([
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {id:1, name:&amp;quot;bob&amp;quot;, sex:&amp;quot;m&amp;quot;, isSenior:true},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {id:2, name:&amp;quot;kathy&amp;quot;, sex:&amp;quot;f&amp;quot;, isSenior:false},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {id:3, name:&amp;quot;joe&amp;quot;, sex:&amp;quot;m&amp;quot;, isSenior:false},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {id:4, name:&amp;quot;barb&amp;quot;, sex:&amp;quot;f&amp;quot;, isSenior:true},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {id:5, name:&amp;quot;pete&amp;quot;, sex:&amp;quot;m&amp;quot;, isSenior:true}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var seniors:Array = ac.toArray().filter(seniorsOnly);
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26521288&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, &amp;quot;turbo_vb&amp;quot; &amp;lt;TimHoff@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Could use a filterFunction.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -TH
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26521288&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, coder3 &amp;lt;rrhuang@&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Hi All,
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I have a ArrayCollection, it contains &amp;quot;id&amp;quot;, &amp;quot;name&amp;quot;, &amp;quot;sex&amp;quot;, &amp;quot;isSenior&amp;quot;, etc.
&lt;br&gt;&amp;gt; &amp;gt; now i only need an array of &amp;quot;id&amp;quot; through that list. what's the quickest way
&lt;br&gt;&amp;gt; &amp;gt; to get an array of &amp;quot;id&amp;quot;s if &amp;quot;isSenior&amp;quot; is true, without using a loop?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; thanks
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; C
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; -- 
&lt;br&gt;&amp;gt; &amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26519700.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26519700.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Sent from the FlexCoders mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26521288.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26521094</id>
	<title>Re: how to get an array as a part from another array?</title>
	<published>2009-11-25T14:05:39Z</published>
	<updated>2009-11-25T14:05:39Z</updated>
	<author>
		<name>turbo_vb</name>
	</author>
	<content type="html">Could use a filterFunction.
&lt;br&gt;&lt;br&gt;-TH
&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26521094&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, coder3 &amp;lt;rrhuang@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have a ArrayCollection, it contains &amp;quot;id&amp;quot;, &amp;quot;name&amp;quot;, &amp;quot;sex&amp;quot;, &amp;quot;isSenior&amp;quot;, etc.
&lt;br&gt;&amp;gt; now i only need an array of &amp;quot;id&amp;quot; through that list. what's the quickest way
&lt;br&gt;&amp;gt; to get an array of &amp;quot;id&amp;quot;s if &amp;quot;isSenior&amp;quot; is true, without using a loop?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; thanks
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; C
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26519700.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26519700.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the FlexCoders mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26521094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26520154</id>
	<title>Re: When does 0.2 and 0.1 not equal 0.3?</title>
	<published>2009-11-25T12:55:28Z</published>
	<updated>2009-11-25T12:55:28Z</updated>
	<author>
		<name>Guy Morton</name>
	</author>
	<content type="html">Yes, you've discovered the joys of floating point maths. Not a bug, &amp;nbsp;
&lt;br&gt;just a fact of life for anyone working in just about every programming &amp;nbsp;
&lt;br&gt;language there is.
&lt;br&gt;&lt;br&gt;Work in integers if you want integer results, or use the functions &amp;nbsp;
&lt;br&gt;under the Math class to round things to suit your needs.
&lt;br&gt;&lt;br&gt;Guy
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 26/11/2009, at 7:33 AM, kidl33t wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have encountered an odd bug. In the process of creating a little &amp;nbsp;
&lt;br&gt;&amp;gt; numeric stepper component (a text box with an up/down stepper beside &amp;nbsp;
&lt;br&gt;&amp;gt; it) I have found an odd rounding error. Starting from 0.0 and adding &amp;nbsp;
&lt;br&gt;&amp;gt; 0.1 increments, I get the follow console output.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; currentNumber: 0 increment: 0.1
&lt;br&gt;&amp;gt; result: 0.1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; currentNumber: 0.1 increment: 0.1
&lt;br&gt;&amp;gt; result: 0.2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; currentNumber: 0.2 increment: 0.1
&lt;br&gt;&amp;gt; result: 0.30000000000000004
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As you can see, .2 + .1 is yielding 0.30000000000000004. This &amp;nbsp;
&lt;br&gt;&amp;gt; behaviour happens at at many numbers actually.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can verify this yourself by simply doing a: trace( (0.1 + 0.2) );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The other flex developer at our company can also see this error, so &amp;nbsp;
&lt;br&gt;&amp;gt; I don't think it's isolated to my box or particular build. Does &amp;nbsp;
&lt;br&gt;&amp;gt; anyone know anything about this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/When-does-0.2-and-0.1-not-equal-0.3--tp26520025p26520154.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26520025</id>
	<title>When does 0.2 and 0.1 not equal 0.3?</title>
	<published>2009-11-25T12:33:58Z</published>
	<updated>2009-11-25T12:33:58Z</updated>
	<author>
		<name>kidl33t</name>
	</author>
	<content type="html">I have encountered an odd bug. &amp;nbsp;In the process of creating a little numeric stepper component (a text box with an up/down stepper beside it) I have found an odd rounding error. &amp;nbsp;Starting from 0.0 and adding 0.1 increments, I get the follow console output. &amp;nbsp;
&lt;br&gt;&lt;br&gt;currentNumber: 0 increment: 0.1
&lt;br&gt;result: 0.1
&lt;br&gt;&lt;br&gt;currentNumber: 0.1 increment: 0.1
&lt;br&gt;result: 0.2
&lt;br&gt;&lt;br&gt;currentNumber: 0.2 increment: 0.1
&lt;br&gt;result: 0.30000000000000004
&lt;br&gt;&lt;br&gt;As you can see, .2 + .1 is yielding 0.30000000000000004. &amp;nbsp;This behaviour happens at at many numbers actually. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;You can verify this yourself by simply doing a: trace( (0.1 + 0.2) );
&lt;br&gt;&lt;br&gt;The other flex developer at our company can also see this error, so I don't think it's isolated to my box or particular build. &amp;nbsp;Does anyone know anything about this?
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/When-does-0.2-and-0.1-not-equal-0.3--tp26520025p26520025.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26519700</id>
	<title>how to get an array as a part from another array?</title>
	<published>2009-11-25T12:23:53Z</published>
	<updated>2009-11-25T12:23:53Z</updated>
	<author>
		<name>coder3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I have a ArrayCollection, it contains &amp;quot;id&amp;quot;, &amp;quot;name&amp;quot;, &amp;quot;sex&amp;quot;, &amp;quot;isSenior&amp;quot;, etc.
&lt;br&gt;now i only need an array of &amp;quot;id&amp;quot; through that list. what's the quickest way to get an array of &amp;quot;id&amp;quot;s if &amp;quot;isSenior&amp;quot; is true, without using a loop?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;C
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-get-an-array-as-a-part-from-another-array--tp26519700p26519700.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26519388</id>
	<title>Using custom subclasses as children of larger components</title>
	<published>2009-11-25T12:02:26Z</published>
	<updated>2009-11-25T12:02:26Z</updated>
	<author>
		<name>Joel Stransky</name>
	</author>
	<content type="html">Is there way to tell a TabBar component to use custom subclass of Button for
&lt;br&gt;each of its tabs?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;--Joel Stransky
&lt;br&gt;stranskydesign.com
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Using-custom-subclasses-as-children-of-larger-components-tp26519388p26519388.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26518098</id>
	<title>How to know when a popup component is visible?</title>
	<published>2009-11-25T10:40:46Z</published>
	<updated>2009-11-25T10:40:46Z</updated>
	<author>
		<name>Richard Rodseth</name>
	</author>
	<content type="html">I had a thread going here about how to show progress before a potentially
&lt;br&gt;long-running but synchronous operation (in my case encoding a DisplayObject
&lt;br&gt;as &amp;nbsp;a PNG or JPEG to add to an AlivePDF PDF.
&lt;br&gt;&lt;br&gt;Since I can't seem to force a busy cursor (ironic), one of the suggestions
&lt;br&gt;was to pop up a window before starting the encoding. But I've tried
&lt;br&gt;listening to creationComplete, render, show, addedToStage etc. etc., and in
&lt;br&gt;all cases the popup doesn't appear until the encoding is complete.
&lt;br&gt;&lt;br&gt;I was unable to find any event dispatched by the PopupManager either.
&lt;br&gt;&lt;br&gt;Help!
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-know-when-a-popup-component-is-visible--tp26518098p26518098.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26518032</id>
	<title>Drawing glitch</title>
	<published>2009-11-25T10:33:12Z</published>
	<updated>2009-11-25T10:33:12Z</updated>
	<author>
		<name>Richard Rodseth</name>
	</author>
	<content type="html">I have a banner consisting of a left-to-right gradient (ending in white)
&lt;br&gt;followed by a logo. The programmatic skin below is used as a border skin of
&lt;br&gt;an HBox.
&lt;br&gt;It looks great, and you can resize the window, but if you maximize it, the
&lt;br&gt;darker color of the gradient appears on either side of the logo.
&lt;br&gt;&lt;br&gt;The MXML structure is as follows.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:HBox &amp;nbsp;width=&amp;quot;100%&amp;quot; &amp;nbsp;styleName=&amp;quot;bannerBox&amp;quot;
&lt;br&gt;verticalAlign=&amp;quot;middle&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:HBox width=&amp;quot;100%&amp;quot; height=&amp;quot;100%&amp;quot; styleName=&amp;quot;bannerGradient&amp;quot;
&lt;br&gt;verticalAlign=&amp;quot;middle&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:VBox paddingTop=&amp;quot;0&amp;quot; paddingBottom=&amp;quot;0&amp;quot; verticalGap=&amp;quot;0&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:Label text=&amp;quot;{resourceManager.getString('admin',
&lt;br&gt;'productName_'+brand)}&amp;quot; styleName=&amp;quot;productTitle&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:Label text=&amp;quot;{resourceManager.getString('admin',
&lt;br&gt;'applicationName_'+brand)}&amp;quot; styleName=&amp;quot;applicationTitle&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:VBox&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:HBox&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:Image id=&amp;quot;logo&amp;quot; source=&amp;quot;{resourceManager.getObject('admin',
&lt;br&gt;'companyLogo_'+brand)}&amp;quot; &amp;nbsp;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:HBox&amp;gt;
&lt;br&gt;&lt;br&gt;Any ideas?
&lt;br&gt;- Richard
&lt;br&gt;&lt;br&gt;public class GradientBackground extends ProgrammaticSkin
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; override public function get measuredWidth():Number
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return 20;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; override public function get measuredHeight():Number
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return 20;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; override protected function updateDisplayList(unscaledWidth:Number,
&lt;br&gt;unscaledHeight:Number):void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var fillColors:Array = getStyle(&amp;quot;fillColors&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var fillAlphas:Array = getStyle(&amp;quot;fillAlphas&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var cornerRadius:int = getStyle(&amp;quot;cornerRadius&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var gradientType:String = getStyle(&amp;quot;gradientType&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var angle:Number = getStyle(&amp;quot;angle&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var focalPointRatio:Number = getStyle(&amp;quot;focalPointRatio&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Default values, if styles aren't defined
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (fillColors == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fillColors = [0xEEEEEE, 0x999999];
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (fillAlphas == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fillAlphas = [1, 1];
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (gradientType == &amp;quot;&amp;quot; || gradientType == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gradientType = &amp;quot;linear&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (isNaN(angle))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; angle = 90;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (isNaN(focalPointRatio))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; focalPointRatio = 0.5;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var matrix:Matrix =
&lt;br&gt;this.rotatedGradientMatrix(0,0,unscaledWidth,unscaledHeight,angle * Math.PI
&lt;br&gt;/ 180);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.drawRoundRect(0,0, unscaledWidth,unscaledHeight,
&lt;br&gt;cornerRadius*.5, fillColors, fillAlphas, matrix, gradientType);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Drawing-glitch-tp26518032p26518032.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517957</id>
	<title>Re: Can't Listen to component?</title>
	<published>2009-11-25T10:28:10Z</published>
	<updated>2009-11-25T10:28:10Z</updated>
	<author>
		<name>turbo_vb</name>
	</author>
	<content type="html">addEventListener instead.
&lt;br&gt;&lt;br&gt;-TH
&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517957&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, &amp;quot;criptopus&amp;quot; &amp;lt;sd_brown@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am getting an error on the line that starts with &amp;quot;myUserCntr.&amp;quot;
&lt;br&gt;&amp;gt; which is 1061: Call to a possibly undefined method addListener through a reference with static type comps:userCntr.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can kind person tell me where I am going wrong here as index.mxml needs to listen for a dispatch event on one of its components &amp;
&lt;br&gt;&amp;gt; the component is MXML'ed into the index.mxml file rather than
&lt;br&gt;&amp;gt; created through actionscript?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; - Stephen
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ===========================
&lt;br&gt;&amp;gt; index.mxml The Main Display
&lt;br&gt;&amp;gt; ===========================
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; import flash.events.Event;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; private function init():void
&lt;br&gt;&amp;gt; &amp;nbsp; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; myUserCntr.addListener(&amp;quot;OpenAdmnCntr&amp;quot;, openAdmnCntrHandler);
&lt;br&gt;&amp;gt; &amp;nbsp; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; private function openAdmnCntrHandler():void
&lt;br&gt;&amp;gt; &amp;nbsp; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; // Do something.
&lt;br&gt;&amp;gt; &amp;nbsp; }
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; &amp;lt;comps:userCntr id=&amp;quot;myUserCntr&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; =============================
&lt;br&gt;&amp;gt; userCntr.mxml (The Component)
&lt;br&gt;&amp;gt; =============================
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; &amp;lt;mx:Metadata&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; [Event(name=&amp;quot;OpenAdmnCntr&amp;quot;, type=&amp;quot;flash.events.Event&amp;quot;)]
&lt;br&gt;&amp;gt; &amp;lt;/mx:Metadata&amp;gt;
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; dispatchEvent(new Event('OpenAdmnCntr'));
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can%27t-Listen-to-component--tp26517861p26517957.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517861</id>
	<title>Can't Listen to component?</title>
	<published>2009-11-25T10:19:50Z</published>
	<updated>2009-11-25T10:19:50Z</updated>
	<author>
		<name>criptopus</name>
	</author>
	<content type="html">I am getting an error on the line that starts with &amp;quot;myUserCntr.&amp;quot;
&lt;br&gt;which is 1061: Call to a possibly undefined method addListener through a reference with static type comps:userCntr.
&lt;br&gt;&lt;br&gt;Can kind person tell me where I am going wrong here as index.mxml needs to listen for a dispatch event on one of its components &amp;
&lt;br&gt;the component is MXML'ed into the index.mxml file rather than
&lt;br&gt;created through actionscript?
&lt;br&gt;&lt;br&gt;- Stephen
&lt;br&gt;&lt;br&gt;===========================
&lt;br&gt;index.mxml The Main Display
&lt;br&gt;===========================
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;import flash.events.Event;
&lt;br&gt;&lt;br&gt;private function init():void
&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; myUserCntr.addListener(&amp;quot;OpenAdmnCntr&amp;quot;, openAdmnCntrHandler);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;private function openAdmnCntrHandler():void
&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; // Do something.
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;&amp;lt;comps:userCntr id=&amp;quot;myUserCntr&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;=============================
&lt;br&gt;userCntr.mxml (The Component)
&lt;br&gt;=============================
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;&amp;lt;mx:Metadata&amp;gt;
&lt;br&gt;&amp;nbsp; [Event(name=&amp;quot;OpenAdmnCntr&amp;quot;, type=&amp;quot;flash.events.Event&amp;quot;)]
&lt;br&gt;&amp;lt;/mx:Metadata&amp;gt;
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;dispatchEvent(new Event('OpenAdmnCntr'));
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Can%27t-Listen-to-component--tp26517861p26517861.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516867</id>
	<title>where to get &quot;official&quot; answer to question about AIR's SQLite implementation and  LoadableExtensions mechanism support?</title>
	<published>2009-11-25T09:25:58Z</published>
	<updated>2009-11-25T09:25:58Z</updated>
	<author>
		<name>tim_romano</name>
	</author>
	<content type="html">A simple function I
&lt;br&gt;need does not exist in the SQLite engine core but the SQLite gurus are telling me to write my own function in C and load it at runtime as a &amp;quot;loadable extension&amp;quot;. &amp;nbsp;(I
&lt;br&gt;have good reasons, BTW, for not wanting the function to execute in the
&lt;br&gt;client--it really belongs in the back-end.)
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions&lt;/a&gt;&lt;br&gt;&lt;br&gt;The LoadableExtensions mechanism is disabled by default, and Adobe in its implementation of SQLite may not have enabled the
&lt;br&gt;LoadableExtensions mechanism; or if it is enabled, a developer does not know
&lt;br&gt;whether it is &amp;quot;officially&amp;quot; enabled or an undocumented
&lt;br&gt;use-at-your-own-risk feature.
&lt;br&gt;&lt;br&gt;Where would one get an official
&lt;br&gt;answer to the LoadableExtension supported/not-supported question? I've
&lt;br&gt;tried the AIR forum at Adobe but my question was not answered there.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/where-to-get-%22official%22-answer-to-question-about-AIR%27s-SQLite-implementation-and--LoadableExtensions-mechanism-support--tp26516867p26516867.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516789</id>
	<title>Re: Flex 3: AIR &amp; Local Database</title>
	<published>2009-11-25T09:20:52Z</published>
	<updated>2009-11-25T09:20:52Z</updated>
	<author>
		<name>tim_romano</name>
	</author>
	<content type="html">The answer to your question about &amp;quot;large scale&amp;quot; &amp;nbsp;is yes, AIR + SQLite can handle large datasets but with some caveats.
&lt;br&gt;&lt;br&gt;I
&lt;br&gt;have a SQLite database that is several hundred megabytes. The main
&lt;br&gt;tables contain 4 million rows, 275000 rows, and 3500 rows. Queries that
&lt;br&gt;join these tables, when the query makes use of indexes, execute in under
&lt;br&gt;100 milliseconds. Snappy.
&lt;br&gt;&lt;br&gt;However, some things in the AIR
&lt;br&gt;implementation of SQLite are causing index optimizations with the
&lt;br&gt;LIKE() operator not to work, both in regular statements and in prepared
&lt;br&gt;statements. &amp;nbsp; I am not sure what these things are because the differences between the AIR implementation of SQLite and SQLite proper haven't been documented. They could be things like overloading certain core SQLite functions, or compiling statements/prepared statements with one of the functions that cause the optimizer not to use an index. 
&lt;br&gt;&lt;br&gt;As a result of these mysterious things, if you run a query like SELECT * from MEMBERSHIP where
&lt;br&gt;MEMBER_LASTNAME &amp;nbsp;LIKE 'Johns%' &amp;nbsp;the query will do a full table scan.
&lt;br&gt;Do a more complex column value starts-with query that involves joins, and the table scan can translate
&lt;br&gt;to very poor performance. For example, when I execute my query at the
&lt;br&gt;SQLITE3.EXE command-line, where the index IS used, the query executes in under
&lt;br&gt;100ms but the identical query takes 45-50 seconds in AIR.
&lt;br&gt;&lt;br&gt;Also, to keep the
&lt;br&gt;front-end responsive when working with large datasets, you will have to
&lt;br&gt;use asynchronous data connections not synchronous connections. The
&lt;br&gt;coding is somewhat more complicated but also I found the AIR debugger
&lt;br&gt;to be less than robust when working with asynchronous connections and
&lt;br&gt;data events. However, everything worked OK with Responders, so I'd
&lt;br&gt;recommend the use of responder objects over the event-dispatch
&lt;br&gt;architecture.
&lt;br&gt;&lt;br&gt;I have no experience to offer you with concurrency issues and SQLite. &amp;nbsp;My AIR + local-db application is single-user.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;TR
&lt;br&gt;&lt;br&gt;jwc_wensan wrote:
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;In all the articles I have read and some examples, it only talks about
&lt;br&gt;using SQLite as the database on the users' PC/Mac. Is that the only
&lt;br&gt;database that can be used locally?
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can that database handle a large-scale commercial AIR app with tens of thousands of records?
&lt;br&gt;&amp;gt;Also, since the AIR app is installed on the users PC/Mac, is there any reason to use mx:Modules?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If the user needs/requires that data remain local, is AIR the best solution?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does Flex 4 solve any issues?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thoughts, options, suggestions?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks in advance,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jack&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Flex-3%3A-AIR---Local-Database-tp26516789p26516789.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516651</id>
	<title>Re: Flash Builder 4 for Linux Apha3 Released!</title>
	<published>2009-11-25T09:12:49Z</published>
	<updated>2009-11-25T09:12:49Z</updated>
	<author>
		<name>thomas parquier-2</name>
	</author>
	<content type="html">run is working but not debug... in the debug perspective, the app gets
&lt;br&gt;terminated before even being launched.
&lt;br&gt;I've installed air2 sdk.
&lt;br&gt;&lt;br&gt;thomas parquier
&lt;br&gt;---
&lt;br&gt;&lt;a href=&quot;http://www.web-attitude.fr/realisations/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.web-attitude.fr/realisations/&lt;/a&gt;&lt;br&gt;msn : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516651&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas.parquier@...&lt;/a&gt;
&lt;br&gt;softphone : sip:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516651&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;webattitude@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516651&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sip%3Awebattitude@...&lt;/a&gt;&amp;gt;
&lt;br&gt;téléphone portable : +33601 822 056
&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/11/23 feiy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516651&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eshangrao@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; this version fixed the can't run/debug air bug!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; more info:&lt;a href=&quot;http://code.google.com/p/fb4linux/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/fb4linux/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 闲云孤鹤 - 清冷香中抱膝吟
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-Builder-4-for-Linux-Apha3-Released%21-tp26480105p26516651.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517348</id>
	<title>Re: MAC : TextInput focus</title>
	<published>2009-11-25T08:55:19Z</published>
	<updated>2009-11-25T08:55:19Z</updated>
	<author>
		<name>Suman-12</name>
	</author>
	<content type="html">Julian,
&lt;br&gt;&lt;br&gt;&amp;nbsp;Still the focus &amp;nbsp;is not set:( in the text input filed even after setting
&lt;br&gt;callLater(myComp.setFocus) and more thing is keyboard events wont work, ie.
&lt;br&gt;i mean clicking on tab wont work.Right now i m calling myComp.setFocus in
&lt;br&gt;creation complete event handler.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*code Snippet*
&lt;br&gt;creation complete event handler
&lt;br&gt;private function init():void
&lt;br&gt;{
&lt;br&gt;/// some action script &amp;nbsp;code here
&lt;br&gt;callLater(this.setFocus);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;P.N: This happens only in safari browser
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Suman
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MAC-%3A-TextInput-focus-tp26484244p26517348.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516163</id>
	<title>Re: Re:Flex Builder 3 for Linux updated</title>
	<published>2009-11-25T08:46:49Z</published>
	<updated>2009-11-25T08:46:49Z</updated>
	<author>
		<name>Ek0</name>
	</author>
	<content type="html">It would be nice to mention in this mail that no effort has been done to
&lt;br&gt;make it compatible with Eclipse 3.5/ 3.4.1
&lt;br&gt;All they had to do is to integrate those two patches:
&lt;br&gt;&lt;a href=&quot;http://blog.danyul.id.au/?p=68&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.danyul.id.au/?p=68&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.jamesward.com/2009/09/29/flex-builder-3-on-eclipse-3-5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jamesward.com/2009/09/29/flex-builder-3-on-eclipse-3-5/&lt;/a&gt;&lt;br&gt;&lt;br&gt;The alpha 5 version is still compatible only with Eclipse &amp;lt;=3.40.
&lt;br&gt;&lt;br&gt;2009/11/25 Michael Slinn &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516163&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mslinn@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Life is short. Microsoft is aggressive, and HTML5 looms. Without
&lt;br&gt;&amp;gt; cross-platform support for developers and users Flex and the Flash
&lt;br&gt;&amp;gt; Platform can't compete. Flex had a decent chance to become more than a
&lt;br&gt;&amp;gt; promising product, but the end of that opportunity is in sight. Without
&lt;br&gt;&amp;gt; strong Linux support, Flex will be a casualty of the RIA war; the
&lt;br&gt;&amp;gt; question has become when Flex will cease to be a viable business decision.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This loss was preventable. I say this in the past tense, because
&lt;br&gt;&amp;gt; dithering only begets more dithering. Borland's JBuilder died because
&lt;br&gt;&amp;gt; of dithering, and Borland died in large part because they did not
&lt;br&gt;&amp;gt; respond appropriately to Microsoft and Eclipse. Big Bill is likely to
&lt;br&gt;&amp;gt; win again, using the same tried-and-true script, while playing clean.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3AFlex-Builder-3-for-Linux-updated-tp26516068p26516163.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516068</id>
	<title>Re:Flex Builder 3 for Linux updated</title>
	<published>2009-11-25T08:42:16Z</published>
	<updated>2009-11-25T08:42:16Z</updated>
	<author>
		<name>mslinn</name>
	</author>
	<content type="html">Life is short. &amp;nbsp;Microsoft is aggressive, and HTML5 looms. &amp;nbsp;Without 
&lt;br&gt;cross-platform support for developers and users Flex and the Flash 
&lt;br&gt;Platform can't compete. &amp;nbsp;Flex had a decent chance to become more than a 
&lt;br&gt;promising product, but the end of that opportunity is in sight. &amp;nbsp;Without 
&lt;br&gt;strong Linux support, Flex will be a casualty of the RIA war; the 
&lt;br&gt;question has become when Flex will cease to be a viable business decision.
&lt;br&gt;&lt;br&gt;This loss was preventable. &amp;nbsp;I say this in the past tense, because 
&lt;br&gt;dithering only begets more dithering. &amp;nbsp;Borland's JBuilder died because 
&lt;br&gt;of dithering, and Borland died in large part because they did not 
&lt;br&gt;respond appropriately to Microsoft and Eclipse. &amp;nbsp;Big Bill is likely to 
&lt;br&gt;win again, using the same tried-and-true script, while playing clean.
&lt;br&gt;&lt;br&gt;Mike
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3AFlex-Builder-3-for-Linux-updated-tp26516068p26516068.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515422</id>
	<title>Re: Questions I always wanted to know the answers to - AsyncTokens</title>
	<published>2009-11-25T08:05:28Z</published>
	<updated>2009-11-25T08:05:28Z</updated>
	<author>
		<name>valdhor-3</name>
	</author>
	<content type="html">Using an AsyncToken allows you to have only one event listener and one
&lt;br&gt;function to handle all responses from a remote procedure call. You add
&lt;br&gt;some data to the AsyncToken and when the call returns you can check what
&lt;br&gt;the data was and use that to run different code. For example:
&lt;br&gt;&lt;br&gt;myService = new RemoteObject(&amp;quot;myDestination&amp;quot;);
&lt;br&gt;myService.addEventListener(ResultEvent.RESULT, resultHandler);
&lt;br&gt;&lt;br&gt;var myToken:AsyncToken = myService.getPeople();
&lt;br&gt;myToken.data = &amp;quot;getPeople&amp;quot;;
&lt;br&gt;myToken.myService.getPlaces();
&lt;br&gt;myToken.data = &amp;quot;getPlaces&amp;quot;;
&lt;br&gt;&lt;br&gt;private function resultHandler(event:ResultEvent):void
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;switch(event.token.data)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;case &amp;quot;getPeople&amp;quot;:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Do the stuff for getPeople
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;break;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;case &amp;quot;getPlaces&amp;quot;:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Do the stuff for getPlaces
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;break;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;So, if you have a separate event listener and function for each call you
&lt;br&gt;make, then Flex will work just as well. It is just a different way to do
&lt;br&gt;things.
&lt;br&gt;&lt;br&gt;Also note that data can be anything you want like an object or whatever.
&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515422&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, &amp;quot;Wally Kolcz&amp;quot; &amp;lt;wkolcz@...&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What is AsyncToken and why is it preferred over just calling the
&lt;br&gt;Remote Object's method and adding listeners to the method for the result
&lt;br&gt;and fault?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;quot;This class provides a place to set additional or token-level data for
&lt;br&gt;&amp;gt; &amp;nbsp; asynchronous RPC operations. &amp;nbsp;It also allows an IResponder to be
&lt;br&gt;attached
&lt;br&gt;&amp;gt; &amp;nbsp; for an individual call.&amp;quot; What is an example of why you would need to
&lt;br&gt;attach the IReponder (addResponser) to a particular method call?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Again, I see on another site this &amp;quot;In you application you have
&lt;br&gt;multiple service calls happening at the
&lt;br&gt;&amp;gt; same time and you need to know which data coming back belongs to which
&lt;br&gt;&amp;gt; call.&amp;quot;. Calling the same method/service (getPeople) multiple times in
&lt;br&gt;the same instance or just calling multiple methods (getPeople,
&lt;br&gt;getPlaces, getThings) at the same time? I never had a problem with Flex
&lt;br&gt;mixing up the results of multiple methods being called before as a view
&lt;br&gt;loads up..
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for any info you can provide.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Questions-I-always-wanted-to-know-the-answers-to---AsyncTokens-tp26513596p26515422.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515282</id>
	<title>Re: List in second tab of TabNavigator has GIANT itemRenderer</title>
	<published>2009-11-25T07:56:28Z</published>
	<updated>2009-11-25T07:56:28Z</updated>
	<author>
		<name>Amy-28</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515282&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, Chris &amp;lt;zomgforeelz@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can bind the width of the text field to the dimensions of its parent:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;mx:Canvas id=&amp;quot;mainContainer&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;100%&amp;quot; styleName=&amp;quot;debug1&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:Text width=&amp;quot;{mainContainer.width}&amp;quot; text=&amp;quot;here is a very very
&lt;br&gt;&amp;gt; very very very very very very very very very very very very very very very
&lt;br&gt;&amp;gt; very very very very very very very very very very very very very very very
&lt;br&gt;&amp;gt; very very very very long piece of text.&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:Canvas&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This way you don't have to use a 'hard' width. Kind of a hack, I know.
&lt;/div&gt;&lt;br&gt;Thanks for the suggestion, but this becomes problematic inside a Repeater, as you have to then give an ID to the parent and to other children in the container and then use really long expressions based on repeater.currentIndex.
&lt;br&gt;&lt;br&gt;Plus, I think that the problem is really that at the time that measure() was called, all of the flexible components confused everything, and I'm not sure that binding to a variable-width component would have helpwed.
&lt;br&gt;&lt;br&gt;Thanks :)
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-in-second-tab-of-TabNavigator-has-GIANT-itemRenderer-tp26505334p26515282.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514620</id>
	<title>How to tell if a Modal Alert is currently displayed</title>
	<published>2009-11-25T07:22:07Z</published>
	<updated>2009-11-25T07:22:07Z</updated>
	<author>
		<name>Greg Hess-2</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;Is there a way to detect if a modal Alert is being displayed if you
&lt;br&gt;don't have reference to the Alert instance? I have a bug with a custom
&lt;br&gt;popup that is triggered with roll over/out event on an image,
&lt;br&gt;basically set a timer check back in couple hundred millis if the mouse
&lt;br&gt;is still over(hitTestPoint) and if so display the custom popup.
&lt;br&gt;However, at times the application displays an alert and I dont want
&lt;br&gt;show the popup if a Modal alert is currently displayed. Currently,
&lt;br&gt;there is many areas that are responsible for displaying the Alerts and
&lt;br&gt;I am trying to identify a quick and easy way to determine if an Alert
&lt;br&gt;is being displayed.
&lt;br&gt;&lt;br&gt;When a modal Alert is displayed, does the focus change?
&lt;br&gt;&lt;br&gt;Is there some property on my main component(module) that would tell me
&lt;br&gt;that it is not the top layer anymore?
&lt;br&gt;&lt;br&gt;Any help much appreciated,
&lt;br&gt;&lt;br&gt;Greg
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-tell-if-a-Modal-Alert-is-currently-displayed-tp26514620p26514620.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514524</id>
	<title>Channel.Connect.Failed error NetConnection.Call.Failed: HTTP Status 404</title>
	<published>2009-11-25T07:14:14Z</published>
	<updated>2009-11-25T07:14:14Z</updated>
	<author>
		<name>Matthew-104</name>
	</author>
	<content type="html">Hi - 
&lt;br&gt;&lt;br&gt;I found that this error occurs frequently when moving a Flex project from one machine to another. 
&lt;br&gt;&lt;br&gt;In my situation, I am exporting a release build so another developer can run it on their machine; they don't have Flex, only the flash player to run it.
&lt;br&gt;&lt;br&gt;They are receiving this error and the source is a RemoteObject call that points to a service on their machine. 
&lt;br&gt;&lt;br&gt;So, do I check the web.xml file for their machine? Or the services-config.xml on their machine? 
&lt;br&gt;&lt;br&gt;I just don't know where to start. 
&lt;br&gt;&lt;br&gt;Any tips are, of course, very much appreciated. 
&lt;br&gt;&lt;br&gt;Happy Thanksgiving. 
&lt;br&gt;&lt;br&gt;Thank you. &amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Channel.Connect.Failed-error-NetConnection.Call.Failed%3A-HTTP-Status-404-tp26514524p26514524.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513596</id>
	<title>Questions I always wanted to know the answers to - AsyncTokens</title>
	<published>2009-11-25T06:29:28Z</published>
	<updated>2009-11-25T06:29:28Z</updated>
	<author>
		<name>Wally Kolcz</name>
	</author>
	<content type="html">What is AsyncToken and why is it preferred over just calling the Remote Object's method and adding listeners to the method for the result and fault? 
&lt;br&gt;&lt;br&gt;&amp;quot;This class provides a place to set additional or token-level data for 
&lt;br&gt;&amp;nbsp; asynchronous RPC operations. &amp;nbsp;It also allows an IResponder to be attached
&lt;br&gt;&amp;nbsp; for an individual call.&amp;quot; What is an example of why you would need to attach the IReponder (addResponser) to a particular method call? 
&lt;br&gt;&lt;br&gt;Again, I see on another site this &amp;quot;In you application you have multiple service calls happening at the
&lt;br&gt;same time and you need to know which data coming back belongs to which
&lt;br&gt;call.&amp;quot;. Calling the same method/service (getPeople) multiple times in the same instance or just calling multiple methods (getPeople, getPlaces, getThings) at the same time? I never had a problem with Flex mixing up the results of multiple methods being called before as a view loads up..
&lt;br&gt;&lt;br&gt;Thanks for any info you can provide.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Questions-I-always-wanted-to-know-the-answers-to---AsyncTokens-tp26513596p26513596.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513317</id>
	<title>Flex Builder 3 for Linux updated</title>
	<published>2009-11-25T06:07:00Z</published>
	<updated>2009-11-25T06:07:00Z</updated>
	<author>
		<name>Bugzilla from tom.chiverton@halliwells.com</name>
	</author>
	<content type="html">An updated build for Flex Builder 3 for Linux has just been posted to Labs.
&lt;br&gt;This removes the timeout at the end of this month, but doesn't do a lot else.
&lt;br&gt;&lt;br&gt;News from Andrew Shorten (new Senior Product Manager for Flash Builder) at 
&lt;br&gt;&lt;a href=&quot;http://www.ashorten.com/2009/11/25/updated-build-of-flex-builder-for-linux-available/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ashorten.com/2009/11/25/updated-build-of-flex-builder-for-linux-available/&lt;/a&gt;&amp;nbsp;:
&lt;br&gt;&amp;quot;If you have any comments or suggestions on Flex Builder for Linux then please 
&lt;br&gt;drop me an email and I'll make sure we consider them as we continue to work 
&lt;br&gt;on our plans for Linux support.&amp;quot;
&lt;br&gt;&lt;br&gt;The article quotes &lt;a href=&quot;http://www.ashorten.com/contact/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ashorten.com/contact/&lt;/a&gt;&amp;nbsp;as the way to do that.
&lt;br&gt;Might I suggest everyone drops Andrew a nice polite email please ? 
&lt;br&gt;-- 
&lt;br&gt;Helping to interactively promote web-readiness as part of the IT team of the 
&lt;br&gt;year, '09 and '08
&lt;br&gt;&lt;br&gt;****************************************************
&lt;br&gt;&lt;br&gt;This email is sent for and on behalf of Halliwells LLP.
&lt;br&gt;&lt;br&gt;Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. &amp;nbsp;A list of members is available for inspection at the registered office together with a list of those non members who are referred to as partners. &amp;nbsp;We use the word “partner” to refer to a member of the LLP, or an employee or consultant with equivalent standing and qualifications. Regulated by the Solicitors Regulation Authority.
&lt;br&gt;&lt;br&gt;CONFIDENTIALITY
&lt;br&gt;&lt;br&gt;This email is intended only for the use of the addressee named above and may be confidential or legally privileged. &amp;nbsp;If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. &amp;nbsp;If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 2500.
&lt;br&gt;&lt;br&gt;For more information about Halliwells LLP visit www.halliwells.com.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flex-Builder-3-for-Linux-updated-tp26513317p26513317.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26512496</id>
	<title>Re: the most popular way to be connected with sql server REFdn0085136210</title>
	<published>2009-11-25T05:18:29Z</published>
	<updated>2009-11-25T05:18:29Z</updated>
	<author>
		<name>valdhor-3</name>
	</author>
	<content type="html">There is a community edition of WebORB for PHP that is free. Also, Adobe has ties with Zend and you can use Zend_AMF (Part of the Zend Framework) for free.
&lt;br&gt;&lt;br&gt;I think free is cheap enough for everyone ;-}
&lt;br&gt;&lt;br&gt;Also, if you want to connect directly to a MySQL database you can look into a component like ASSQL (&lt;a href=&quot;http://code.google.com/p/assql/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/assql/&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26512496&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, &amp;quot;dennis&amp;quot; &amp;lt;dennis@...&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yes it looks great. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But developing in in php (only php), there is no need to purchase a kind of
&lt;br&gt;&amp;gt; server like this; where, it is not so cheap. I think that Adobe should have
&lt;br&gt;&amp;gt; developed libraries regarding sql server, as php have done. It seems strange
&lt;br&gt;&amp;gt; where too strong engine (I mean the adobe flash in general) has no the
&lt;br&gt;&amp;gt; ability to be connected with sql servers.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Of course I think that Weborb-for-php is one of the best architect approach,
&lt;br&gt;&amp;gt; but its is not for low budget projects.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Guys. share your thoughts.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; dennis
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-most-popular-way-to-be-connected-with-sql-server-REFdn0085136210-tp26466699p26512496.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26512395</id>
	<title>Re: AIR - Ascynchronous file deletion - fixed order ?</title>
	<published>2009-11-25T05:10:38Z</published>
	<updated>2009-11-25T05:10:38Z</updated>
	<author>
		<name>DreamCode</name>
	</author>
	<content type="html">You could hold a list (in this case with 2 filenames) that you delete from
&lt;br&gt;one by one... just pop an element and refire until the list is empty.. &amp;nbsp;That
&lt;br&gt;would also facilitate a progess bar using the original / current length of
&lt;br&gt;the array.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Best regards and have a wonderful day!
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Allan Pichler
&lt;br&gt;&lt;br&gt;Brewmaster - ColdFusion/Flex/Ajax/UI
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26512395&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dreamcode@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Skype: apichler
&lt;br&gt;&lt;br&gt;Yahoo: allan_pichler
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AIR---Ascynchronous-file-deletion---fixed-order---tp26393320p26512395.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26512358</id>
	<title>RE: Re: the most popular way to be connected with sql server REFdn0085136210</title>
	<published>2009-11-25T05:09:07Z</published>
	<updated>2009-11-25T05:09:07Z</updated>
	<author>
		<name>dennis-121</name>
	</author>
	<content type="html">Yes it looks great. 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;But developing in in php (only php), there is no need to purchase a kind of
&lt;br&gt;server like this; where, it is not so cheap. I think that Adobe should have
&lt;br&gt;developed libraries regarding sql server, as php have done. It seems strange
&lt;br&gt;where too strong engine (I mean the adobe flash in general) has no the
&lt;br&gt;ability to be connected with sql servers.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Of course I think that Weborb-for-php is one of the best architect approach,
&lt;br&gt;but its is not for low budget projects.
&lt;br&gt;&lt;br&gt;Guys. share your thoughts.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;dennis 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/the-most-popular-way-to-be-connected-with-sql-server-REFdn0085136210-tp26466699p26512358.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511629</id>
	<title>Re: AIR - Ascynchronous file deletion - fixed order ?</title>
	<published>2009-11-25T04:08:10Z</published>
	<updated>2009-11-25T04:08:10Z</updated>
	<author>
		<name>Jeroen Beckers</name>
	</author>
	<content type="html">So nobody knows this ?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AIR---Ascynchronous-file-deletion---fixed-order---tp26393320p26511629.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26508435</id>
	<title>RE: Does datagridcolumn have hide/show or hideEffect/showEffect</title>
	<published>2009-11-24T23:14:16Z</published>
	<updated>2009-11-24T23:14:16Z</updated>
	<author>
		<name>Alex Harui</name>
	</author>
	<content type="html">No effects for DGColumn. &amp;nbsp;Maybe tween the width to 0 then make it invisible.
&lt;br&gt;&lt;br&gt;Alex Harui
&lt;br&gt;Flex SDK Developer
&lt;br&gt;Adobe Systems Inc.&amp;lt;&lt;a href=&quot;http://www.adobe.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.adobe.com/&lt;/a&gt;&amp;gt;
&lt;br&gt;Blog: &lt;a href=&quot;http://blogs.adobe.com/aharui&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.adobe.com/aharui&lt;/a&gt;&lt;br&gt;&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508435&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508435&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;] On Behalf Of Tino Dai
&lt;br&gt;Sent: Tuesday, November 24, 2009 10:13 PM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26508435&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;
&lt;br&gt;Subject: [flexcoders] Does datagridcolumn have hide/show or hideEffect/showEffect
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi All,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I am wondering does the DataGridColumn have a hideEffect/ShowEffect style setting? I wanted to
&lt;br&gt;have a wipeleft effect when somebody clicks on a column. I have been trying:
&lt;br&gt;&lt;br&gt;var dgc:DataGridColumn = new DataGridColumn();
&lt;br&gt;var wipeOut:WipeLeft = new WipeLeft();
&lt;br&gt;&lt;br&gt;public function wipeOutFunc(event:MouseEvent):void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dgc.setStyle(&amp;quot;hideEffect&amp;quot;,wipeOut); // also tried &amp;quot;hide&amp;quot;,&amp;quot;show&amp;quot;, and &amp;quot;showEffect to no effect
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dgc.visible = false;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;-Tino
&lt;br&gt;&lt;br&gt;PS: Not complete code.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-datagridcolumn-have-hide-show-or-hideEffect-showEffect-tp26508029p26508435.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26508029</id>
	<title>Does datagridcolumn have hide/show or hideEffect/showEffect</title>
	<published>2009-11-24T22:12:40Z</published>
	<updated>2009-11-24T22:12:40Z</updated>
	<author>
		<name>Tino Dai-3</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I am wondering does the DataGridColumn have a hideEffect/ShowEffect
&lt;br&gt;style setting? I wanted to
&lt;br&gt;have a wipeleft effect when somebody clicks on a column. I have been trying:
&lt;br&gt;&lt;br&gt;var dgc:DataGridColumn = new DataGridColumn();
&lt;br&gt;var wipeOut:WipeLeft = new WipeLeft();
&lt;br&gt;&lt;br&gt;public function wipeOutFunc(event:MouseEvent):void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dgc.setStyle(&amp;quot;hideEffect&amp;quot;,wipeOut); // also tried &amp;quot;hide&amp;quot;,&amp;quot;show&amp;quot;, and
&lt;br&gt;&amp;quot;showEffect to no effect
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dgc.visible = false;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;-Tino
&lt;br&gt;&lt;br&gt;PS: Not complete code.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-datagridcolumn-have-hide-show-or-hideEffect-showEffect-tp26508029p26508029.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507677</id>
	<title>Re: E4x finding virtual leaf nodes</title>
	<published>2009-11-24T21:17:58Z</published>
	<updated>2009-11-24T21:17:58Z</updated>
	<author>
		<name>Tino Dai-3</name>
	</author>
	<content type="html">How about something like this?
&lt;br&gt;&lt;br&gt;xml..activity.children.length() == 0. I think that would do it
&lt;br&gt;&lt;br&gt;-Tino
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 6:00 PM, mattgarland2000 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507677&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alias@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My XML is a series of nested &amp;quot;activities.&amp;quot; I want to find LEAF activities,
&lt;br&gt;&amp;gt; that is, activities without activity descendents.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Something like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; xml..activity.(descendents('activity').length()==0)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But of course that does not work. I've always been unsure about the scope
&lt;br&gt;&amp;gt; in predicate filter...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/E4x-finding-virtual-leaf-nodes-tp26504886p26507677.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26507048</id>
	<title>Re: Re: List in second tab of TabNavigator has GIANT  itemRenderer</title>
	<published>2009-11-24T19:29:24Z</published>
	<updated>2009-11-24T19:29:24Z</updated>
	<author>
		<name>Chris-640</name>
	</author>
	<content type="html">You can bind the width of the text field to the dimensions of its parent:
&lt;br&gt;&lt;br&gt;&amp;lt;mx:Canvas id=&amp;quot;mainContainer&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;100%&amp;quot; styleName=&amp;quot;debug1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:Text width=&amp;quot;{mainContainer.width}&amp;quot; text=&amp;quot;here is a very very
&lt;br&gt;very very very very very very very very very very very very very very very
&lt;br&gt;very very very very very very very very very very very very very very very
&lt;br&gt;very very very very long piece of text.&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:Canvas&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;This way you don't have to use a 'hard' width. Kind of a hack, I know.
&lt;br&gt;&lt;br&gt;Glad you figured it out in the end tho!
&lt;br&gt;C
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 7:38 PM, Amy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507048&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amyblankenship@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26507048&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt; &amp;lt;flexcoders%40yahoogroups.com&amp;gt;, Chris
&lt;br&gt;&amp;gt; &amp;lt;zomgforeelz@...&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Could this be related to resizeToContent on TabNavigator? Alternatively,
&lt;br&gt;&amp;gt; it
&lt;br&gt;&amp;gt; &amp;gt; may be an issue with your dataprovider. Source would be helpful...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here's what the issue was:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My renderer had a Repeater in it that had Text components that had a
&lt;br&gt;&amp;gt; percentage width on them. Apparently, when the measure() function was called
&lt;br&gt;&amp;gt; on them, they had a teeny width and reported an inaccurately tall height,
&lt;br&gt;&amp;gt; but by the time they showed up on the screen, they had laid themselves out
&lt;br&gt;&amp;gt; well enough to hide the problem. Good old Flex invalidation didn't catch
&lt;br&gt;&amp;gt; whatever changes they did in the background to accomplish this, so I spent
&lt;br&gt;&amp;gt; several hours refreshing my memory about the finer details of the code of
&lt;br&gt;&amp;gt; List, ListBase, Box, BoxLayout, UICompoinent, Container, ViewStack, etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The fix turned out to be simply setting a &amp;quot;hard&amp;quot; width on the Text
&lt;br&gt;&amp;gt; component, but of course that makes it infinitely less flexible than if it
&lt;br&gt;&amp;gt; could have possibly worked with a percentage.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What a fun way to spend an evening!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-in-second-tab-of-TabNavigator-has-GIANT-itemRenderer-tp26505334p26507048.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506721</id>
	<title>Re: List in second tab of TabNavigator has GIANT itemRenderer</title>
	<published>2009-11-24T18:38:37Z</published>
	<updated>2009-11-24T18:38:37Z</updated>
	<author>
		<name>Amy-28</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;--- In &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506721&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flexcoders@...&lt;/a&gt;, Chris &amp;lt;zomgforeelz@...&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Could this be related to resizeToContent on TabNavigator? Alternatively, it
&lt;br&gt;&amp;gt; may be an issue with your dataprovider. Source would be helpful...
&lt;br&gt;&lt;br&gt;Here's what the issue was:
&lt;br&gt;&lt;br&gt;My renderer had a Repeater in it that had Text components that had a percentage width on them. &amp;nbsp;Apparently, when the measure() function was called on them, they had a teeny width and reported an inaccurately tall height, but by the time they showed up on the screen, they had laid themselves out well enough to hide the problem. &amp;nbsp;Good old Flex invalidation didn't catch whatever changes they did in the background to accomplish this, so I spent several hours refreshing my memory about the finer details of the code of List, ListBase, Box, BoxLayout, UICompoinent, Container, ViewStack, etc.
&lt;br&gt;&lt;br&gt;The fix turned out to be simply setting a &amp;quot;hard&amp;quot; width on the Text component, but of course that makes it infinitely less flexible than if it could have possibly worked with a percentage.
&lt;br&gt;&lt;br&gt;What a fun way to spend an evening!
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-in-second-tab-of-TabNavigator-has-GIANT-itemRenderer-tp26505334p26506721.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514512</id>
	<title>Re: E4x finding virtual leaf nodes</title>
	<published>2009-11-24T18:12:02Z</published>
	<updated>2009-11-24T18:12:02Z</updated>
	<author>
		<name>ppongtong</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;May be you could do as the following:
&lt;br&gt;&lt;br&gt;var match :XMLList = xml..*.(descendants('activity').length() == 0 &amp;&amp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		name() != null &amp;&amp; name() == 'activity');
&lt;br&gt;&lt;br&gt;Panhathai.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/E4x-finding-virtual-leaf-nodes-tp26504886p26514512.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514571</id>
	<title>cairngorm store example - newbie binding question</title>
	<published>2009-11-24T17:59:14Z</published>
	<updated>2009-11-24T17:59:14Z</updated>
	<author>
		<name>normc_actionscript</name>
	</author>
	<content type="html">&lt;br&gt;Greetings Flex pros:
&lt;br&gt;&lt;br&gt;In the modified cairngorm store (if you're familiar), file
&lt;br&gt;ProductsAndCheckoutControlBar.mxml, there's:
&lt;br&gt;&lt;br&gt;&amp;lt;mx:Image
&lt;br&gt;source=&amp;quot;{ getProductThumbnailsButton( model.workflowState ) }&amp;quot;
&lt;br&gt;&lt;br&gt;That function (getProductThumbnailsButton) is not marked as 'bindable'
&lt;br&gt;so how does the binding happen?
&lt;br&gt;&lt;br&gt;The var model is the only thing marked as bindable in the file.
&lt;br&gt;&lt;br&gt;This is the function:
&lt;br&gt;&amp;nbsp; &amp;nbsp; public function getProductThumbnailsButton( enforceBining : Number )
&lt;br&gt;: Class
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var model : ShopModelLocator = ShopModelLocator.getInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var result : Class = model.assets.thumbOff;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if ( model.workflowState ==
&lt;br&gt;ShopModelLocator.VIEWING_PRODUCTS_IN_THUMBNAILS )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; result = model.assets.thumbOn;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;return result;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cairngorm-store-example---newbie-binding-question-tp26514571p26514571.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506435</id>
	<title>Re: List in second tab of TabNavigator has GIANT  itemRenderer</title>
	<published>2009-11-24T17:55:58Z</published>
	<updated>2009-11-24T17:55:58Z</updated>
	<author>
		<name>Chris-640</name>
	</author>
	<content type="html">Could this be related to resizeToContent on TabNavigator? Alternatively, it
&lt;br&gt;may be an issue with your dataprovider. Source would be helpful...
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 4:44 PM, Amy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506435&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amyblankenship@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, I have a TabNavigator that's populated by a Repeater that draws
&lt;br&gt;&amp;gt; Canvases with a List in each. The List on the first tab draws just
&lt;br&gt;&amp;gt; beautifully, but the List on the second tab gives me one giant itemRenderer
&lt;br&gt;&amp;gt; that has the data for the first item in its dataProvider. If I scroll down
&lt;br&gt;&amp;gt; to the bottom of that itemRenderer and back up, all the itemRenderers draw
&lt;br&gt;&amp;gt; in properly.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I look at the private rendererArray property of the List in question,
&lt;br&gt;&amp;gt; it has ONE item in it that contains an Array. The first item of that Array
&lt;br&gt;&amp;gt; is typed as my custom Renderer class, and it is 1531 px tall. (The other
&lt;br&gt;&amp;gt; list has a number of arrays that is the same as the # of items in the
&lt;br&gt;&amp;gt; dataProvider and each Array has one element of my itemRenderer type in it).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What I've tried:
&lt;br&gt;&amp;gt; 1) Setting creationPolicy to &amp;quot;all&amp;quot;.
&lt;br&gt;&amp;gt; 2) calling validateNow() and validateDisplayList() on the Canvas and the
&lt;br&gt;&amp;gt; List at various times (creationComplete, show, change)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; None of this has worked.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am trying to avoid taking extra time to strip this down to make runnable
&lt;br&gt;&amp;gt; code (it's already eaten over an hour), so if anyone has any ideas with the
&lt;br&gt;&amp;gt; information I've provided, I'd appreciate hearing them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Amy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/List-in-second-tab-of-TabNavigator-has-GIANT-itemRenderer-tp26505334p26506435.html" />
</entry>

</feed>
