<?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>I am Link</title>
	<atom:link href="http://blog.tygate.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.tygate.com</link>
	<description>Flex /ColdFusion like chicken and beer</description>
	<lastBuildDate>Wed, 24 Mar 2010 21:14:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to format a phone number on the fly</title>
		<link>http://blog.tygate.com/?p=519</link>
		<comments>http://blog.tygate.com/?p=519#comments</comments>
		<pubDate>Wed, 24 Mar 2010 21:11:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=519</guid>
		<description><![CDATA[This example show you how to format a phone number in the text input while typing on the fly. It also stores an unformatted value of the number in a variable.

Try it out. 


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;absolute&#34; 
	backgroundColor=&#34;#FFFFFF&#34; width=&#34;300&#34; height=&#34;200&#34;&#62;
&#160;
	&#60;mx:Script&#62;
		&#60;!&#91;CDATA&#91;
			include &#34;/as/phoneformat.as&#34;;
		&#93;&#93;&#62;
	&#60;/mx:Script&#62;
&#160;
	&#60;mx:PhoneFormatter 	id=&#34;usPhone&#34; 
				formatString=&#34;(###) ###-####&#34; 
				validPatternChars=&#34;#-() &#34;/&#62; 
&#160;
	&#60;mx:TextInput x=&#34;91.5&#34; 
				  y=&#34;89&#34; 
				  id=&#34;_phone&#34; [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=519</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Combobox using ColdFusion datasource</title>
		<link>http://blog.tygate.com/?p=463</link>
		<comments>http://blog.tygate.com/?p=463#comments</comments>
		<pubDate>Tue, 30 Jun 2009 01:20:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[combo box]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=463</guid>
		<description><![CDATA[This will show you how to simply populate a flex combo box with a coldfusion cfquery in a cfc. The data return is an arrayCollection.

index.as

&#160;
import mx.rpc.events.ResultEvent;
import mx.collections.ArrayCollection;
&#160;
&#91;Bindable&#93; public var cfdata:ArrayCollection = new ArrayCollection;
&#160;
private function UserHandler&#40;event:ResultEvent&#41;:void &#123;
  cfdata = event.result as ArrayCollection;
&#125;
&#160;
&#160;
public function init&#40;&#41;:void &#123;
 /* call my remote Object to get my data */
 [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=463</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to send form data to a cfc using createObject in ColdFusion</title>
		<link>http://blog.tygate.com/?p=432</link>
		<comments>http://blog.tygate.com/?p=432#comments</comments>
		<pubDate>Sun, 14 Jun 2009 15:42:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[cfc]]></category>
		<category><![CDATA[ColdFusion 8]]></category>
		<category><![CDATA[createObject]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=432</guid>
		<description><![CDATA[Today I am going to show you how to post form data to a ColdFusion cfc. I will not go into form validation. This is simply an explaination of the use of createObject.

createObject vs &#60;cfobject&#62;
First off, the difference between createObject and is syntax. createObject is a function, where is a ColdFusion tag. In other words, [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=432</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create category/subcategory uniformed listing</title>
		<link>http://blog.tygate.com/?p=408</link>
		<comments>http://blog.tygate.com/?p=408#comments</comments>
		<pubDate>Tue, 26 May 2009 02:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[arrayCollection]]></category>
		<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[repeater]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=408</guid>
		<description><![CDATA[This will show how you can create a category uniformed list with subcategories as checkboxes using 2 arrayCollections, a category and a subcategory. This makes use of layered repeaters.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;absolute&#34; backgroundColor=&#34;#ffffff&#34;&#62;
 &#60;mx:Script&#62;
 &#60;!&#91;CDATA&#91;
 import mx.controls.CheckBox;
&#160;
 &#91;Bindable&#93; public var cnt:Number = 0;
 &#91;Bindable&#93; public var xx:Number = 0;
 &#91;Bindable&#93; public var yy:Number = [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=408</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error.</title>
		<link>http://blog.tygate.com/?p=403</link>
		<comments>http://blog.tygate.com/?p=403#comments</comments>
		<pubDate>Sat, 16 May 2009 16:26:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[AS 3.2]]></category>
		<category><![CDATA[ColdFusion 8]]></category>
		<category><![CDATA[Flash 10]]></category>
		<category><![CDATA[Flex 3.3]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=403</guid>
		<description><![CDATA[I have been getting the error &#8216;Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error.&#8216; when uploading my images for a while without any luck of what was causing my issues. Then after building a new module for a flex project I am currently working on, I finally made a breakthrough.

Scenario
2 tables in MySQL.

Table One: contains [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=403</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic icons in AdvancedDataGrid</title>
		<link>http://blog.tygate.com/?p=359</link>
		<comments>http://blog.tygate.com/?p=359#comments</comments>
		<pubDate>Wed, 11 Feb 2009 09:37:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>
		<category><![CDATA[AS 3.2]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=359</guid>
		<description><![CDATA[This shows how you can display different icons in a DataGrid/AdvancedDataGrid based on values in the data provider.
 
DynamicIconDataGrid.mxml

&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;absolute&#34; 
width=&#34;600&#34; height=&#34;300&#34;&#62;
 &#60;mx:Style source=&#34;default.css&#34;/&#62;
 &#60;mx:ArrayCollection id=&#34;A00Applications&#34;&#62;
	&#60;mx:Object ApplicationName=&#34;Application A&#34; 	
                        [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=359</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popup a TitleWindow inside your application</title>
		<link>http://blog.tygate.com/?p=336</link>
		<comments>http://blog.tygate.com/?p=336#comments</comments>
		<pubDate>Wed, 11 Feb 2009 07:18:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[AS 3.2]]></category>
		<category><![CDATA[TitleWindow]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=336</guid>
		<description><![CDATA[Show you how to call a TitleWindow in actionscript.

Use PopupManager to create an instance of your component and the call it.
then center the popup in the middle of your application
CenteredPopup.mxml

&#160;
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;absolute&#34; 
width=&#34;400&#34; height=&#34;300&#34;&#62;
  &#60;mx:Style source=&#34;default.css&#34;/&#62;
&#160;
  &#60;mx:Script&#62;
     &#60;!&#91;CDATA&#91;
	import mx.containers.TitleWindow;
	import mx.managers.PopUpManager;
	import com.MyPopup;
&#160;
	public function showPopup&#40;&#41;:void &#123;
	   var [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=336</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send Data to a ColdFusion CFC in Flex 3 using actionscript 3.0</title>
		<link>http://blog.tygate.com/?p=290</link>
		<comments>http://blog.tygate.com/?p=290#comments</comments>
		<pubDate>Fri, 16 Jan 2009 04:48:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[AS 3.2]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=290</guid>
		<description><![CDATA[This will show you how to send data to a ColdFusion cfc using actionscript 3.0.

Create the Remote Object in Flex 3 using MXML
You can call cfc methods by creating a remoteobject in flex. For example you could call the method &#8220;save&#8221; in the /cfc/users.cfc file by using the COMPONENTID.METHOD() format.
EXAMPLE: roUser.save();

 &#60;mx:RemoteObject id=&#34;roUser&#34; destination=&#34;ColdFusion&#34; source=&#34;cfc.users&#34; [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=290</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passing Persistent Data to Modules</title>
		<link>http://blog.tygate.com/?p=274</link>
		<comments>http://blog.tygate.com/?p=274#comments</comments>
		<pubDate>Sun, 04 Jan 2009 00:53:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=274</guid>
		<description><![CDATA[If you are able to load your flex module that has data that needs to save to a db and it works the first time, but then you close it and then it gives your a error when saving.
ERROR: [RPC Fault faultString="Unable to invoke CFC - Variable OBJ is undefined." faultCode="Server.Processing" faultDetail=""]

From time to time [...]]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=274</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call a function in Flex from Flash at a specific frame</title>
		<link>http://blog.tygate.com/?p=194</link>
		<comments>http://blog.tygate.com/?p=194#comments</comments>
		<pubDate>Mon, 22 Dec 2008 01:48:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[AS 3.2]]></category>
		<category><![CDATA[Flash 9]]></category>

		<guid isPermaLink="false">http://blog.tygate.com/?p=194</guid>
		<description><![CDATA[There is a well known undocumented MovieClip method called <strong>addFrameScript</strong> in AS3 that is helpful when creating flash components for flex using Flash CS3 or higher.]]></description>
		<wfw:commentRss>http://blog.tygate.com/?feed=rss2&amp;p=194</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
