<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site walter.kimbrough</title><link>http://walterkimbrough.instantspot.com</link><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by walter.kimbrough</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sun, 22 Nov 2009 05:44:05 GMT</pubDate><item><title>What a pain in the ...</title><link>http://walterkimbrough.instantspot.com/blog/2008/06/25/What-a-pain-in-the-</link><description>*sigh* Ok, finally. &lt;br /&gt; Here&apos;s what I&apos;ve found out, and it seems like this will fix my problem with file uploading in Flex/Coldfusion. &lt;br /&gt; Firefox apparently uses two windows when dealing with file uploads as pertains to Flex. &lt;br /&gt; What happens is, that second window drops the session info, and you wind up getting a 302 httpstatus code. (as a note, using something like Ngrep in linux or Windows, or Wireshark in Windows, to sniff your own network traffic to see the raw response will help you decipher what&apos;s failing. I was able to see that it was trying to redirect me to the login.cfm template)&lt;br /&gt; What fixed it was returning the JSESSIONID from a Remote Object/CFC call, and using it in the URL string that I used in the URLRequest upon file uploading. &lt;br /&gt; I.e.,     var req:URLRequest = new URLRequest();&lt;br /&gt;               req.url = &quot;upload.cfm?jsessionid=&quot; + jsessionid;&lt;br /&gt; req.method = URLRequestMethod.POST;&lt;br /&gt; fileRef.upload(req);&lt;br /&gt;  &lt;br /&gt;  &quot;JSESSIONID&quot; is set a little above the code with the Remote Object/CFC call. &lt;br /&gt;  And voila! That&apos;s how you upload files if you&apos;re behind HTTPS. *whew*</description><pubDate>Thu, 26 Jun 2008 01:17:00 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2008/06/25/What-a-pain-in-the-</guid><category>Flex2</category></item><item><title>ok, if anyone out there has some info on this, I&apos;m all ears.</title><link>http://walterkimbrough.instantspot.com/blog/2008/06/25/ok-if-anyone-out-there-has-some-info-on-this-Im-all-ears</link><description>*sigh* Ok, so I gave up testing Flex file uploads in an authenticated environment on my Linux box here at work.  &lt;br /&gt; It was simply a no-go.&lt;br /&gt; It works fine in Windows if I hard-code the destination in the cffile tag. &lt;br /&gt; If I don&apos;t do that, I get 302 redirects to the login page we have. This is coded in the application.cfm. (If you&apos;re not logged in, go to the login template)&lt;br /&gt;  This is weeeeiiiirrrddd. &lt;br /&gt;</description><pubDate>Wed, 25 Jun 2008 05:47:00 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2008/06/25/ok-if-anyone-out-there-has-some-info-on-this-Im-all-ears</guid><category>cf8,Flex2</category></item><item><title>Annoying Flex file upload problem...Fixed?</title><link>http://walterkimbrough.instantspot.com/blog/2008/06/24/Annoying-Flex-file-upload-problemFixed</link><description>Issue: File upload using Flex works fine in a normal (meaning non-authenticated) environment. Inside an authenticated environment, I get http status code 302 (redirection, basically)&lt;br /&gt;  After pulling my hair out and wondering what the heck was going on, I finally read online a recommendation to use a network sniffer to see what the responses were from my local server. Alrighty, I was familiar with ngrep, and have used it before for just boring network sniffery purposes, so fine. I&apos;ll try ngrep. &lt;br /&gt; Ok, I ran that (making sure it was listening to my localhost traffic) and voila, sure enough, since I had moved my Flex app inside of one of our sites that requires logging in, it was showing a 302 message, along with the url to our login template. &lt;br /&gt; My hunch is that I need to worry about keeping the app&apos;s session variables present. I found a nice little Forta article that I&apos;m going to read up tonight and test out tomorrow. &lt;br /&gt; At least, I HOPE that&apos;s what my problem here is... (Flex file uploading is a pain.)&lt;br /&gt;&lt;br /&gt;</description><pubDate>Tue, 24 Jun 2008 22:00:00 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2008/06/24/Annoying-Flex-file-upload-problemFixed</guid><category>Flex2</category></item><item><title>Flex2/Actionscript 3 model objects and value objects</title><link>http://walterkimbrough.instantspot.com/blog/2008/05/12/Flex2Actionscript-3-model-objects-and-value-objects</link><description>&lt;p&gt;ok, so NOW Flex is really gettin&apos; fun. I started tinkering with model objects last night.&lt;/p&gt; &lt;p&gt;Here&apos;s my first one (for my simple little blog)&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;package blogMO&lt;br /&gt; {&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; public class blogMOEntry&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; public var _ridBlog:int;&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public var _vcBlog:String;&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public var _intUsers:int; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public var&amp;nbsp; _dtCreate:Date;&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public var _intType:int;&lt;br /&gt; &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; public function get ridBlog():int{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return _ridBlog;&lt;br /&gt; &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; public function get vcBlog():String{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return _vcBlog;&lt;br /&gt; &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; public function get intUsers():int{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return _intUsers;&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; public function get dtCreate():Date{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return _dtCreate;&lt;br /&gt; &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; public function get intType():int{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return _intType;&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; public function set ridBlog(value:int):void{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _ridBlog = ridBlog;&lt;br /&gt; &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; public function set vcBlog(value:String):void{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _vcBlog = vcBlog;&lt;br /&gt; &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; public function set intUsers(value:int):void{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _intUsers = intUsers;&lt;br /&gt; &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; public function set dtCreate(value:Date):void{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _dtCreate = dtCreate;&lt;br /&gt; &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; public function set intType(value:int):void{&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _intType = intType;&lt;br /&gt; &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; &lt;br /&gt; /*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public function toVO():blogEntryVO&lt;br /&gt; &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; var vo:BlogVO = new BlogVO;&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; vo.ridBlog = ridBlog;&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; vo.vcBlog = vcBlog;&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; vo._intUsers = _intUsers;&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; vo.dtCreate = dtCreate;&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; vo.intType = intType;&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; return vo;&lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static function fromVO(vo:SchoolVO):School&lt;br /&gt; &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; var mo:BlogMO = new BlogMO();&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; mo.ridBlog = vo.ridBlog;&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; mo.vcBlog = vo.vcBlog;&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; mo._intUsers = vo._intUsers;&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; mo.dtCreate = vo.dtCreate;&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; mo.intType = vo.intType;&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; return mo;&lt;br /&gt; &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; public function blog(){}&lt;br /&gt; &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; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt; }&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Very straightforward.&lt;/p&gt; &lt;p&gt;It&apos;s all coming together in my wally-mind. Slowly but surely.&lt;/p&gt; &lt;p&gt;Pardon me, time to go meditate on my Flex 2 koan.&lt;/p&gt; &lt;p&gt;Ommmm.&lt;/p&gt;</description><pubDate>Mon, 12 May 2008 16:01:00 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2008/05/12/Flex2Actionscript-3-model-objects-and-value-objects</guid><category>Flex2</category></item><item><title>CF8, Flex, etc.</title><link>http://walterkimbrough.instantspot.com/blog/2008/05/08/CF8-Flex-etc</link><description>&lt;p&gt;a few housecleaning items:&lt;/p&gt; &lt;p&gt;&lt;br /&gt; CFPDF worked like a charm. I was able to output our pdf like we had with the custom tag without&amp;nbsp; a problem. Very, very cool.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Flex is more and more fun for me. As it stands now, I&apos;ve got an image preview/upload app that puts the images you have into a tile list 3x4. &lt;br /&gt; The images all have a &apos;sort_order&apos; property to them, and that gets updated in the db when you drag and drop the images around in the list.&lt;/p&gt; &lt;p&gt;I hope to get an example of this up in the next day or so. While it&apos;s not exactly reinventing the internet or anything, it was a HUGE amount of fun doing it.&lt;/p&gt;</description><pubDate>Thu, 08 May 2008 19:06:00 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2008/05/08/CF8-Flex-etc</guid><category>cf8,Flex2,coding stuff in general</category></item><item><title>Flex really *can* be easy to use. WTF?</title><link>http://walterkimbrough.instantspot.com/blog/2007/11/21/Flex-really-can-be-easy-to-use-WTF</link><description>&lt;p&gt;  ok, so for whatever reason, getting Flex to move from dev server to live server has been the biggest pain in the butt.&lt;br /&gt;  See, here&amp;#39;s what my conception of the entire process was:  &lt;/p&gt;  &lt;p&gt;  Compile with local machine&amp;#39;s services-config.xml file (that had the localhost and port number hard coded in it).  &lt;/p&gt;  &lt;p&gt;  Get ready to move out to live.  &lt;/p&gt;  &lt;p&gt;  Recompile with live server&amp;#39;s services-config.xml file.  &lt;/p&gt;  &lt;p&gt;  Hope for the best.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &lt;strong&gt;Some observations:&lt;/strong&gt;  &lt;/p&gt;  &lt;p&gt;  You can just compile with a services-config file in the directory your flex source code is in.&lt;br /&gt;  Leave the URL with the default {} stuff.  &lt;/p&gt;  &lt;p&gt;  Move to your server.&lt;br /&gt;  That&amp;#39;s it. &lt;br /&gt;  You can still use REMOTE OBJECT mxml tags.&lt;br /&gt;  FAR easier than messing with AS if you don&amp;#39;t want to.  &lt;/p&gt;  &lt;p&gt;  Ok, I&amp;#39;m back on the Flex bandwagon now. Having THAT big pain in the butt outta the way smoothed it out sooo much more.  &lt;/p&gt;  &lt;p&gt;  &lt;font size=&quot;1&quot;&gt;Note: *I* did not figure that out. My coworker, Brandon C. did. So there. &amp;nbsp;&lt;/font&gt;  &lt;/p&gt;  </description><pubDate>Wed, 21 Nov 2007 20:15:23 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/11/21/Flex-really-can-be-easy-to-use-WTF</guid><category>Flex2</category></item><item><title>my own little Flex/AS code snippet</title><link>http://walterkimbrough.instantspot.com/blog/2007/07/21/my-own-little-FlexAS-code-snippet</link><description>&lt;p&gt;  This is a quick snippet of code I figured out using Flex 2.   &lt;/p&gt;  &lt;p&gt;  Background:  &lt;/p&gt;  &lt;p&gt;  I wanted a simple datagrid to show current projects that an end user may have (at my old job, we had what was called a triage view of projects, with levels of importance, etc.)  &lt;/p&gt;  &lt;p&gt;  How this works:  &lt;/p&gt;  &lt;p&gt;  The datagrid, &amp;quot;dg1&amp;quot;, gets a list of Projects from my CF Component, named &amp;quot;sourceFlex&amp;quot;. The info returned from that CFC goes into the columns as named.  &lt;/p&gt;  &lt;p&gt;  Note: There is a click function listed in the datagrid that sends the selected record to another MXML component that shows record details, etc. I&amp;#39;ll post that here shortly.&lt;br /&gt;  Also, there is a &amp;#39;showDate&amp;#39; as function that cleans up how the date looks in the column. (thank you DFW CFUG for that; once I dig up the proper credit for that code from my email archive, I will duly note it.)  &lt;/p&gt;  &lt;p&gt;  In bulleted format, here is the chain of events:  &lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;SWF loads; in the MX:Application tag, I had the &amp;quot;creationComplete&amp;quot; property set to a public function, &amp;quot;initApp()&amp;quot;; inside that function,  the remote object method &amp;quot;listP1Projects&amp;quot; from &amp;quot;sourceFlex&amp;quot; (sourceFlex.listP1Projects) is called. &lt;/li&gt;   &lt;li&gt;Call goes to the CFC, and is handled by the &amp;quot;handleP1Projects&amp;quot; method.&lt;/li&gt;   &lt;li&gt;Within that handling method, dg1 has it&amp;#39;s dataProvider set to the event&amp;#39;s results (dg1.dataProvider = event.result;&lt;/li&gt;   &lt;li&gt;dg1&amp;#39;s data columns have their various dataFields set to the proper database columns (ridProject, vcProject, etc) &lt;/li&gt;  &lt;/ol&gt;  &lt;p&gt;  Code is as follows:  &lt;/p&gt;  &lt;p&gt;  &lt;strong&gt;How to get stuff to load at first&lt;/strong&gt;&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  [codeshare jul1673c]&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &lt;strong&gt;  MXML Component&lt;/strong&gt;  &lt;/p&gt;  &lt;p&gt;  [codeshare julf3832]&lt;br /&gt;  &lt;br /&gt;  &lt;strong&gt;  MXML Remote Object code (uses a call to a CFC. WAY. EASIER. THAN. WEBSERVICES! Trust me)&lt;/strong&gt;  &lt;/p&gt;  &lt;p&gt;  [codeshare jul242a0]  &lt;/p&gt;  &lt;p&gt;  &lt;strong&gt;AS &amp;quot;handle results&amp;quot; code  &lt;/strong&gt;  &lt;/p&gt;  &lt;p&gt;  [codeshare juld4628]  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &lt;strong&gt;AS &amp;quot;showMeFault&amp;quot; code (it&amp;#39;s a small &amp;quot;whoopsie&amp;quot; type error with fault event info in an alert popup):  &lt;/strong&gt;  &lt;/p&gt;  &lt;p&gt;  [codeshare jul234eb]  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  Overall, once you figure out how to &amp;#39;plugin&amp;#39; your cfc&amp;#39;s to send and receive data, getting Flex to play with your DB is way simple.  &lt;/p&gt;  &lt;p&gt;  Caveat: This code ain&amp;#39;t the prettiest, it&amp;#39;s the result of someone messing with event based coding for the first time. (You do NOT wanna see the AS I cooked up with this entire Flex project. Good. Lord.)  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Sat, 21 Jul 2007 14:39:26 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/07/21/my-own-little-FlexAS-code-snippet</guid><category>Flex2</category></item><item><title>more fun learning event based programming thru Flex.</title><link>http://walterkimbrough.instantspot.com/blog/2007/06/06/more-fun-learning-event-based-programming-thru-Flex</link><description>&lt;p&gt;  Dang it, this weekend, I&amp;#39;m going to play around with CF8 if it kills me. I haven&amp;#39;t yet been able to do so. (I&amp;#39;m assuming that I can get the necessary plugin for Eclipse that&amp;#39;ll give me the CF8 tags/components. *fingers crossed*)  &lt;/p&gt;  &lt;p&gt;  Anyhoo, more Flex related stuff going on at work.  &lt;/p&gt;  &lt;p&gt;  Some further impressions:  &lt;/p&gt;  &lt;p&gt;  1. I loves me some pop up windows.  &lt;/p&gt;  &lt;p&gt;  2. URLLoader is your friend. Repeat: URLLoader is your friend.  &lt;/p&gt;  &lt;p&gt;  3. Do NOT set your output folder to something across your network on a vpn connection! Jeez. Just compile locally and copy over. It&amp;#39;s FAR quicker.  &lt;/p&gt;  &lt;p&gt;  4. Datagrids are so perty. Sorting is so neat. Ok, so I&amp;#39;m easy.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  More to follow in a day or so.&amp;nbsp;  &lt;/p&gt;  </description><pubDate>Wed, 06 Jun 2007 23:24:04 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/06/06/more-fun-learning-event-based-programming-thru-Flex</guid><category>Flex2</category></item><item><title>Flex 2 onward</title><link>http://walterkimbrough.instantspot.com/blog/2007/05/17/Flex-2-onward</link><description>&lt;p&gt;  ok, so we&amp;#39;re building some mock ups moreso now for work. I&amp;#39;ve got mine for a &amp;#39;triage view&amp;#39; of projects somewhere in the 75% to 80% of the way done.  &lt;/p&gt;  &lt;p&gt;  the biggest adjustment was getting used to handling data in an event driven model. (handling up on data, so to speak)  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;m still the biggest fan of flex, and I can&amp;#39;t wait to roll some of this stuff out at work (esp for an asset mgmt piece i did in CF/js/html)  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  woohoo!  &lt;/p&gt;  &lt;p&gt;  code samples coming shortly.&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Thu, 17 May 2007 18:06:24 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/05/17/Flex-2-onward</guid><category>Flex2</category></item><item><title>flexin&apos; for fun and profit</title><link>http://walterkimbrough.instantspot.com/blog/2007/05/11/flexin-for-fun-and-profit</link><description>&lt;p&gt;  Just got the O Reilly book on Flex 2. So far, I like it a tad more than the Adobe book because it gets more under the hood.  &lt;/p&gt;  &lt;p&gt;  We&amp;#39;re putting together alot of neat stuff for work, which I hope to put up here shortly (being able to create a wizard type of component so quickly is REALLY REALLY cool)  &lt;/p&gt;  &lt;p&gt;  Code snippets are coming. &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Fri, 11 May 2007 20:20:10 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/05/11/flexin-for-fun-and-profit</guid><category>Flex2</category></item><item><title>Flex 2 fun</title><link>http://walterkimbrough.instantspot.com/blog/2007/05/07/Flex-2-fun</link><description>&lt;p&gt;  Ok, so we&amp;#39;ve convinced our boss to let us get CF 7.02 (mainly so we can get our hands on Flex based apps, of course)&lt;br /&gt;  After banging away over the weekend, things are starting to fall into place.  &lt;/p&gt;  &lt;p&gt;  Some thoughts:  &lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;If you&amp;#39;re going to play with Flex, just look for a tutorial on www.mikebritton.com. It&amp;#39;s very short, but gets across the basic idea of getting data from a CFC. (The Adobe book I got about Flex seems more geared toward the UI perty stuff, and less about the backend data related items. Kinda frustrating.)&lt;/li&gt;   &lt;li&gt;Oh my. States states states. Still playing around with these, and transitions. Yes, yes yes!&lt;/li&gt;   &lt;li&gt;Datagrids sort nicely. They improved these from Flash, apparently. Very neat.&lt;/li&gt;  &lt;/ol&gt;  If I can figure out what to do to get Flex running on my podcast&amp;#39;s ISP, I&amp;#39;m going to redo that site, too. I&amp;#39;m a BIG time Flex fan. More to follow.   </description><pubDate>Mon, 07 May 2007 23:45:51 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/05/07/Flex-2-fun</guid><category>Flex2</category></item><item><title>Wow, Flex/CF wizard is really neat.</title><link>http://walterkimbrough.instantspot.com/blog/2007/05/05/Wow-FlexCF-wizard-is-really-neat</link><description>&lt;p&gt;  So at work we&amp;#39;re enamored with Flex 2. We already use Flash remoting, but it has it&amp;#39;s limitations and annoyances.  &lt;/p&gt;  &lt;p&gt;  Flex 2 would seem to be the better suited solution for what we need (project and document tracking, addition, updating,etc)  &lt;/p&gt;  &lt;p&gt;  I just played with the CF/Flex wizard that you can install in Flex Builder, and wow. Very neat stuff. It spits out CFCs, mxml code, etc. So far, so good.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Sat, 05 May 2007 18:13:32 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/05/05/Wow-FlexCF-wizard-is-really-neat</guid><category>Flex2</category></item><item><title>ColdFusion 8 &quot;Scorpio&quot; from a newbie</title><link>http://walterkimbrough.instantspot.com/blog/2007/05/01/ColdFusion-8-Scorpio-from-a-newbie</link><description>&lt;p&gt;  So I got to see Mr. Forta in person for the first time, and I have to admit. I&amp;#39;m TOTALLY energized for Coldfusion in general.&amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  My gosh. The man knows how to sell it.  &lt;/p&gt;  &lt;p&gt;  (not to mention everything being added to the new CF version. I MUST find a copy somewhere!)  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p&gt;  I&amp;#39;m planning on using this space to blog as a CF newbie, so don&amp;#39;t expect earth shatteringly new ways of programming; I&amp;#39;m just posting here as I learn better ways of coding stuff.  &lt;/p&gt;  &lt;p&gt;  &amp;nbsp;  &lt;/p&gt;  </description><pubDate>Tue, 01 May 2007 16:51:01 GMT</pubDate><guid>http://walterkimbrough.instantspot.com/blog/2007/05/01/ColdFusion-8-Scorpio-from-a-newbie</guid><category>cf8</category></item></channel></rss>