<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: AS3 Basics: String Manipulation in Actionscript 3.0</title>
	<atom:link href="http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3</link>
	<description>We&#039;re Geeks - This is Where We Write</description>
	<lastBuildDate>Thu, 02 Sep 2010 12:16:09 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Zack J.</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12116</link>
		<dc:creator>Zack J.</dc:creator>
		<pubDate>Wed, 04 Feb 2009 19:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12116</guid>
		<description>&quot;NOTE: you instead of “substring(0,5)” you can use a shorthand of “substr(0,5)”.&quot;

Hey, just wanted to point out something in case anyone was using this for a reference.  substr() and substring() do two different things.

var str:String = &quot;A test string&quot;;
trace( str.substr( 2, 4 ) );    // traces &quot;test&quot;
trace( str.substring( 2, 4 ) ); // traces &quot;tes&quot;

===
&quot;Thanks! have you seen a way to calculate how many rows a textfield has? im trying to reveal each line one at a time but cant seem to figure out how that could be done.&quot;

You can use the numLines property on any TextField to find out how many lines of text it contains.</description>
		<content:encoded><![CDATA[<p>&#8220;NOTE: you instead of “substring(0,5)” you can use a shorthand of “substr(0,5)”.&#8221;</p>
<p>Hey, just wanted to point out something in case anyone was using this for a reference.  substr() and substring() do two different things.</p>
<p>var str:String = &#8220;A test string&#8221;;<br />
trace( str.substr( 2, 4 ) );    // traces &#8220;test&#8221;<br />
trace( str.substring( 2, 4 ) ); // traces &#8220;tes&#8221;</p>
<p>===<br />
&#8220;Thanks! have you seen a way to calculate how many rows a textfield has? im trying to reveal each line one at a time but cant seem to figure out how that could be done.&#8221;</p>
<p>You can use the numLines property on any TextField to find out how many lines of text it contains.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wipqjsim</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12115</link>
		<dc:creator>Wipqjsim</dc:creator>
		<pubDate>Thu, 02 Oct 2008 09:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12115</guid>
		<description>nice blog, thanks</description>
		<content:encoded><![CDATA[<p>nice blog, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recent URLs tagged As3 - Urlrecorder</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12114</link>
		<dc:creator>Recent URLs tagged As3 - Urlrecorder</dc:creator>
		<pubDate>Thu, 25 Sep 2008 14:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12114</guid>
		<description>[...] recorded first by pypons on 2008-09-25&#8594; AS3 Basics: String Manipulation in Actionscript 3 [...]</description>
		<content:encoded><![CDATA[<p>[...] recorded first by pypons on 2008-09-25&rarr; AS3 Basics: String Manipulation in Actionscript 3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigtallbill</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12113</link>
		<dc:creator>bigtallbill</dc:creator>
		<pubDate>Wed, 20 Aug 2008 16:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12113</guid>
		<description>Yeah I&#039;ve got that one. It&#039;s pretty good to learn the basics, which you can never have enough of :P</description>
		<content:encoded><![CDATA[<p>Yeah I&#8217;ve got that one. It&#8217;s pretty good to learn the basics, which you can never have enough of <img src='http://www.wuup.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weezer</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12112</link>
		<dc:creator>Weezer</dc:creator>
		<pubDate>Sun, 17 Aug 2008 05:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12112</guid>
		<description>A better book to start with is Learning ActionScript 3.0 by Shupe and Rosser (O&#039;Reilly). Awesome book for those getting their feet wet with AS3.</description>
		<content:encoded><![CDATA[<p>A better book to start with is Learning ActionScript 3.0 by Shupe and Rosser (O&#8217;Reilly). Awesome book for those getting their feet wet with AS3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigtallbill</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12111</link>
		<dc:creator>bigtallbill</dc:creator>
		<pubDate>Tue, 12 Aug 2008 16:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12111</guid>
		<description>Ah Colin Moock, i want to get one of his books. Always good to get taught by a seasoned veteran :P</description>
		<content:encoded><![CDATA[<p>Ah Colin Moock, i want to get one of his books. Always good to get taught by a seasoned veteran <img src='http://www.wuup.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12110</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 11 Aug 2008 11:49:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12110</guid>
		<description>Thanx a lot yeah that makes sense! I went to a AS3 conference laster in Chicago with Colin Moock, NOTHING made sense but reading over your articles im picking it up no problem! Thanx so much!</description>
		<content:encoded><![CDATA[<p>Thanx a lot yeah that makes sense! I went to a AS3 conference laster in Chicago with Colin Moock, NOTHING made sense but reading over your articles im picking it up no problem! Thanx so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigtallbill</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12109</link>
		<dc:creator>bigtallbill</dc:creator>
		<pubDate>Wed, 06 Aug 2008 16:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12109</guid>
		<description>Hi Tim thanks for the comments, yeah well spotted :P it should be &quot;charAt&quot;. And the zip has been fixed.

What i would do is figure out how many are in a row (usually by counting em manualy) then use subString to extract up to that point from my string to send to the textfield/textarea.
I&#039;ll try and work up an example later on for ya.

Hope this helps!
-Bill</description>
		<content:encoded><![CDATA[<p>Hi Tim thanks for the comments, yeah well spotted <img src='http://www.wuup.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  it should be &#8220;charAt&#8221;. And the zip has been fixed.</p>
<p>What i would do is figure out how many are in a row (usually by counting em manualy) then use subString to extract up to that point from my string to send to the textfield/textarea.<br />
I&#8217;ll try and work up an example later on for ya.</p>
<p>Hope this helps!<br />
-Bill</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12108</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 06 Aug 2008 14:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12108</guid>
		<description>Also sorry trace(myString.charAr(9));

should be charAt?? The zip fla isnt available anymore? I&#039;d love to see how you got the charAt method working i cant seem to.</description>
		<content:encoded><![CDATA[<p>Also sorry trace(myString.charAr(9));</p>
<p>should be charAt?? The zip fla isnt available anymore? I&#8217;d love to see how you got the charAt method working i cant seem to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.wuup.co.uk/as3-basics-string-manipulation-in-actionscript-3#comment-12107</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 06 Aug 2008 13:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.wuup.co.uk/?p=80#comment-12107</guid>
		<description>Thanks! have you seen a way to calculate how many rows a textfield has? im trying to reveal each line one at a time but cant seem to figure out how that could be done.

Any help would be really helpful!</description>
		<content:encoded><![CDATA[<p>Thanks! have you seen a way to calculate how many rows a textfield has? im trying to reveal each line one at a time but cant seem to figure out how that could be done.</p>
<p>Any help would be really helpful!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 6/13 queries in 0.019 seconds using disk

Served from: www.wuup.co.uk @ 2010-09-08 06:51:43 -->