<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>flash tekkie &#187; prototype</title>
	<atom:link href="http://tekkie.flashbit.net/tag/prototype/feed" rel="self" type="application/rss+xml" />
	<link>http://tekkie.flashbit.net</link>
	<description>Flash technology blog</description>
	<lastBuildDate>Thu, 22 Jul 2010 01:23:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>W3C Selectors API now in WebKit</title>
		<link>http://tekkie.flashbit.net/browsers/w3c-selectors-api-now-in-webkit</link>
		<comments>http://tekkie.flashbit.net/browsers/w3c-selectors-api-now-in-webkit#comments</comments>
		<pubDate>Sat, 16 Feb 2008 03:48:17 +0000</pubDate>
		<dc:creator>Ain Tohvri</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[slickspeed]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://tekkie.flashbit.net/browsers/w3c-selectors-api-now-in-webkit</guid>
		<description><![CDATA[WebKit has introduced another development towards greater support of W3C initiatives – Selectors API, currently in the status of Working Draft.  Until now, without a specific JS framework (e.g. jQuery, Prototype or MooTools), one could just get to the HTML element in the old fashioned way: var myDiv = document.getElementById&#40;'myDiv'&#41;; Now what W3C has worked [...]]]></description>
		<wfw:commentRss>http://tekkie.flashbit.net/browsers/w3c-selectors-api-now-in-webkit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date formatting prototypes for ActionScript 2</title>
		<link>http://tekkie.flashbit.net/flash/as/date-formatting-prototypes-for-actionscript-2</link>
		<comments>http://tekkie.flashbit.net/flash/as/date-formatting-prototypes-for-actionscript-2#comments</comments>
		<pubDate>Thu, 03 Jan 2008 13:25:03 +0000</pubDate>
		<dc:creator>Ain Tohvri</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[remoting]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://tekkie.flashbit.net/flash/as/date-formatting-prototypes-for-actionscript-2</guid>
		<description><![CDATA[Here are 2 prototypes that you can use to convert a regular ISO-formatted date into a Flash Date object and then, if necessary, to a regular European date format. Both for ActionScript 2.  Firstly a function to convert a String ISO date to a Date object: String.prototype.toDate = function&#40;&#41;:Date &#123; var dArr:Array = this.split&#40;&#34;-&#34;&#41;, month:Number [...]]]></description>
		<wfw:commentRss>http://tekkie.flashbit.net/flash/as/date-formatting-prototypes-for-actionscript-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>String.tease method</title>
		<link>http://tekkie.flashbit.net/flash/as/string-tease-method</link>
		<comments>http://tekkie.flashbit.net/flash/as/string-tease-method#comments</comments>
		<pubDate>Thu, 13 Dec 2007 10:26:15 +0000</pubDate>
		<dc:creator>Ain Tohvri</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://tekkie.flashbit.net/flash/as/stringtease-method</guid>
		<description><![CDATA[Ever thought of creating a teaser text of some longer string in Flash? For programmers still coding in ActionScript 2, here&#8217;s the piece of code to do it. String.prototype.tease = function&#40;strlen&#41;:String &#123; // split ln 1 var line1:String = this.split&#40;String.fromCharCode&#40;13&#41;,1&#41;.toString&#40;&#41;; // see if we need to cut at all if &#40;line1.length &#62; strlen&#41; &#123; // [...]]]></description>
		<wfw:commentRss>http://tekkie.flashbit.net/flash/as/string-tease-method/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String.replace() method for ActionScript2</title>
		<link>http://tekkie.flashbit.net/flash/as/stringreplace-method-for-actionscript2</link>
		<comments>http://tekkie.flashbit.net/flash/as/stringreplace-method-for-actionscript2#comments</comments>
		<pubDate>Fri, 23 Nov 2007 11:20:29 +0000</pubDate>
		<dc:creator>Ain Tohvri</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://tekkie.flashbit.net/flash/as/stringreplace-method-for-actionscript2</guid>
		<description><![CDATA[Another snippet for free — String.replace() prototype for Flash that can be used to replace a pattern in a String. The code of the String.replace() prototype is very simple and somewhat similar to the PHP&#8217;s str_replace function: String.prototype.replace = function&#40;searchStr, replaceStr&#41;:String &#123; var arr:Array = this.split&#40;searchStr&#41;; return arr.join&#40;replaceStr&#41;; &#125;; Example: // initial string with a [...]]]></description>
		<wfw:commentRss>http://tekkie.flashbit.net/flash/as/stringreplace-method-for-actionscript2/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
