<?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"
	>
<channel>
	<title>Comments on: Tip of the day : SetInputTextType with Flash Lite 1.1</title>
	<atom:link href="http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/</link>
	<description>Flash Lite, S60, Nokia, Adobe, Mac and mobile life</description>
	<pubDate>Fri, 21 Nov 2008 10:52:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Charalampos</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-46479</link>
		<dc:creator>Charalampos</dc:creator>
		<pubDate>Sat, 02 Feb 2008 07:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-46479</guid>
		<description>Cool.</description>
		<content:encoded><![CDATA[<p>Cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avery</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-42243</link>
		<dc:creator>Avery</dc:creator>
		<pubDate>Sun, 13 Jan 2008 07:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-42243</guid>
		<description>This is exactly what I expected to find out after reading the title Getting your website crawled by Search engine Crawlers. Thanks for informative article.</description>
		<content:encoded><![CDATA[<p>This is exactly what I expected to find out after reading the title Getting your website crawled by Search engine Crawlers. Thanks for informative article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulos</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-42045</link>
		<dc:creator>Paulos</dc:creator>
		<pubDate>Fri, 11 Jan 2008 13:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-42045</guid>
		<description>Nice!</description>
		<content:encoded><![CDATA[<p>Nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-33648</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Mon, 05 Nov 2007 23:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-33648</guid>
		<description>Sorry :(</description>
		<content:encoded><![CDATA[<p>Sorry :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ugur</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-29953</link>
		<dc:creator>Ugur</dc:creator>
		<pubDate>Tue, 02 Oct 2007 10:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-29953</guid>
		<description>Hi Mark,

Tried that technique, but couldn't make it work. Can you send a sample?

cheers,

Ugur.-</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>Tried that technique, but couldn&#8217;t make it work. Can you send a sample?</p>
<p>cheers,</p>
<p>Ugur.-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Pollitt</title>
		<link>http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-27807</link>
		<dc:creator>Matt Pollitt</dc:creator>
		<pubDate>Sun, 09 Sep 2007 22:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://bloggy.kuneri.net/2007/09/03/tip-of-the-day-setinputtexttype-with-flash-lite-11/#comment-27807</guid>
		<description>Hi ugur,

was looking at this and worked out you can set this from within the movieclip it's self by using the tellTarget function. This makes it a bit more usable if you are dynamically loading MC's containing different input text fields.

ie.

on the main timeLine, i have a MC called myMC. Inside this is a input text field. this text field refs the :/input var as in your example.

on the timeline of myMc i put the following script on the main timeline in frame 1.

tellTarget(".."){
	input1 = 123
	fscommand2("SetInputTextType", "input1", "Numeric");
}

This way you can set it up and call it from within the mc it's self, without any code on the main timeline at all.

When run on device, this loads "123" into the text field, and sets it to numeric entry.

Matt</description>
		<content:encoded><![CDATA[<p>Hi ugur,</p>
<p>was looking at this and worked out you can set this from within the movieclip it&#8217;s self by using the tellTarget function. This makes it a bit more usable if you are dynamically loading MC&#8217;s containing different input text fields.</p>
<p>ie.</p>
<p>on the main timeLine, i have a MC called myMC. Inside this is a input text field. this text field refs the :/input var as in your example.</p>
<p>on the timeline of myMc i put the following script on the main timeline in frame 1.</p>
<p>tellTarget(&#8221;..&#8221;){<br />
	input1 = 123<br />
	fscommand2(&#8221;SetInputTextType&#8221;, &#8220;input1&#8243;, &#8220;Numeric&#8221;);<br />
}</p>
<p>This way you can set it up and call it from within the mc it&#8217;s self, without any code on the main timeline at all.</p>
<p>When run on device, this loads &#8220;123&#8243; into the text field, and sets it to numeric entry.</p>
<p>Matt</p>
]]></content:encoded>
	</item>
</channel>
</rss>
