<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-1161498219830441115</atom:id><lastBuildDate>Sat, 14 Nov 2009 13:33:21 +0000</lastBuildDate><title>f13x - learning flex from a coldfusion developer's perspective</title><description>the story of how one coldfusion developer becomes a rich internet application developer using flex.</description><link>http://www.f13x.com/index.cfm</link><managingEditor>noreply@blogger.com (Tony)</managingEditor><generator>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-7339636085312988159</guid><pubDate>Wed, 19 Dec 2007 16:47:00 +0000</pubDate><atom:updated>2007-12-19T11:54:53.110-05:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>coldfusion</category><category domain='http://www.blogger.com/atom/ns#'>tony weeg</category><category domain='http://www.blogger.com/atom/ns#'>actionscript</category><category domain='http://www.blogger.com/atom/ns#'>Flex</category><category domain='http://www.blogger.com/atom/ns#'>poetry</category><title>My first recipe: Magnetic Poetry</title><description>so, my first little recipe from the &lt;a href="http://www.oreilly.com/catalog/actscpt3ckbk/index.html"&gt;ActionScript 3.0 cookbook&lt;/a&gt;, happens to be one that i really like... My fiance' and i have a set on our 'fridge and its always good fun to make some cool poetry or whatever... anyway, this makes a  600x600 dark dark blue magnetic poetry widget.  ive not done much with mxml per se, im pretty much sticking to learning actionscript 3.0 first.&lt;br /&gt;&lt;br /&gt;so, without any further babbling... &lt;a href="http://www.f13x.com/flex/floetry/floetry.html"&gt;here it is&lt;/a&gt;, and the code is below.&lt;br /&gt;&lt;br /&gt;** NOTE**&lt;br /&gt;i can take credit for only the hacks of this code, the code is basically straight from the book, although i have embellished and changed the code at some points, its basically verbatim.  however, i can read this, i can write all of this, i can even understand it all!!  so far, being a coldfusion developer hasnt hindered me one bit, in fact, a lot of the stuff ive figured out over the years in cf, directly apply to learning actionscript 3.0.  ill talk about that later as i get a good handle on exactly how.&lt;br /&gt;&lt;br /&gt;Here is the code for my piece "Floetry"&lt;br /&gt;&lt;br /&gt;//this is my take on the magnetic poetry lesson the incredible&lt;br /&gt;//ActionScript 3.0 cook book.&lt;br /&gt;//thanks for showing me the light fellas.&lt;br /&gt;&lt;br /&gt;package {&lt;br /&gt;    import flash.display.Sprite;&lt;br /&gt;    import flash.display.StageAlign;&lt;br /&gt;    import flash.display.StageScaleMode;&lt;br /&gt;    import flash.events.MouseEvent;&lt;br /&gt;    import flash.text.TextField;&lt;br /&gt;    import flash.text.TextFieldAutoSize;&lt;br /&gt;    import flash.text.TextFormat;&lt;br /&gt;    [SWF(backgroundColor="#00000f", frameRate="35", width="600", height="600")]&lt;br /&gt;   &lt;br /&gt;    public class Floetry extends Sprite&lt;br /&gt;    {&lt;br /&gt;        public function Floetry()&lt;br /&gt;        {&lt;br /&gt;           &lt;br /&gt;            stage.align = StageAlign.TOP_LEFT;&lt;br /&gt;            stage.scaleMode = StageScaleMode.NO_SCALE;&lt;br /&gt;           &lt;br /&gt;            //Create a string and split the string into an array of words&lt;br /&gt;            //make sure you put spaces at the end, like near the word kennedy.&lt;br /&gt;            //if you dont do that, you will end up with words that are joined, bad bad.&lt;br /&gt;           &lt;br /&gt;            var example:String =&lt;br /&gt;                    "on up down across street buddha karma good bad ugly hottie chick dude tony kennedy president vice-president " +&lt;br /&gt;                    "lily carlos jezebel poop factory piss carpet bob marley damian jamaica deck i i i on on on at " +&lt;br /&gt;                    "inside outside three one two four 69 do fire buttslide dog floor jump";&lt;br /&gt;            var words:Array = example.split( " " );&lt;br /&gt;            var word:Sprite;&lt;br /&gt;            var wordText:TextField;&lt;br /&gt;            var textFormat:TextFormat = new TextFormat();&lt;br /&gt;            textFormat.size = 20;&lt;br /&gt;            textFormat.font = 'Calibri';&lt;br /&gt;                       &lt;br /&gt;            for ( var i:int = 0; i &lt; words.length; i++ ) {&lt;br /&gt;               &lt;br /&gt;                //here we create a new sprite for each word.&lt;br /&gt;                word = new Sprite();&lt;br /&gt;                addChild(word);&lt;br /&gt;               &lt;br /&gt;                //next we create a text field within the sprite by creating a new&lt;br /&gt;                //Textfield instance and adding it as a child&lt;br /&gt;                wordText = new TextField();&lt;br /&gt;                word.addChild(wordText);&lt;br /&gt;               &lt;br /&gt;                //now we need to make a textfield that has the value of the word in it&lt;br /&gt;                //give it a border and a background and make it not-selectable so that we can drag it around&lt;br /&gt;                wordText.autoSize = TextFieldAutoSize.LEFT;&lt;br /&gt;                wordText.border = true;&lt;br /&gt;                wordText.background = true;&lt;br /&gt;                wordText.selectable = false;&lt;br /&gt;                //i wanted random font colors so im taking the value of that greyscale color and&lt;br /&gt;                //multiplying it with a random value... thanks andy :)&lt;br /&gt;                wordText.textColor = Math.random() * 0xaaaaaa;&lt;br /&gt;                wordText.backgroundColor = 0x000000;&lt;br /&gt;                wordText.defaultTextFormat = textFormat;&lt;br /&gt;               &lt;br /&gt;                //here we actually set the value of the text field with the word&lt;br /&gt;                wordText.text = words[i];&lt;br /&gt;               &lt;br /&gt;                //and now we add a event handler for the pickup and dropoff of the textFields&lt;br /&gt;                word.addEventListener(MouseEvent.MOUSE_DOWN, handleDrag);&lt;br /&gt;                word.addEventListener(MouseEvent.MOUSE_UP, handleDrop);&lt;br /&gt;               &lt;br /&gt;                //and now to make it more like a true refridgerator, lets randomize the placement of the words.&lt;br /&gt;                var rx:Number = Math.random() * stage.stageWidth - word.width;&lt;br /&gt;                var ry:Number = Math.random() * stage.stageHeight - word.height;&lt;br /&gt;                word.x = rx;&lt;br /&gt;                word.y = ry;           &lt;br /&gt;            }&lt;br /&gt;           &lt;br /&gt;            function handleDrag(event:MouseEvent):void {&lt;br /&gt;                //the thing we drag will be the textfield, so to get to that&lt;br /&gt;                //we have to go up to the parent&lt;br /&gt;                var word:Sprite = event.target.parent;&lt;br /&gt;               &lt;br /&gt;                //while dragging we want it to be z-indexed to the top&lt;br /&gt;                setChildIndex(word, numChildren - 1);&lt;br /&gt;               &lt;br /&gt;                //now, as the mouse moves, we drag stuff&lt;br /&gt;                word.startDrag();&lt;br /&gt;            }&lt;br /&gt;           &lt;br /&gt;            function handleDrop(event:MouseEvent):void {&lt;br /&gt;                var word:Sprite = event.target.parent;&lt;br /&gt;               &lt;br /&gt;                //stop dragging when mouse lets go&lt;br /&gt;                word.stopDrag();&lt;br /&gt;            }&lt;br /&gt;           &lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-7339636085312988159?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/12/my-first-recipe-magnetic-poetry.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-8033893190928168573</guid><pubDate>Tue, 18 Dec 2007 14:56:00 +0000</pubDate><atom:updated>2007-12-18T10:02:11.932-05:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>actionscript</category><category domain='http://www.blogger.com/atom/ns#'>Flex</category><title>Lazy Flex Blogger</title><description>ok, so ive pretty much become resolved to the fact that its almost impossible to focus on a blog as well as learning :)&lt;br /&gt;&lt;br /&gt;that said, ive learned a ton in the past two or three weeks, and ill have some examples of what ive learned up in a next couple days.&lt;br /&gt;&lt;br /&gt;to recap, though, so far i have learned:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;looping&lt;/li&gt;&lt;li&gt;conditional actionscript (if else, etc)&lt;/li&gt;&lt;li&gt;how to use the displayList with addChild()&lt;/li&gt;&lt;li&gt;how to add event listeners, how to handle the events that happen, etc&lt;/li&gt;&lt;li&gt;how to move objects on the stage, using easing, using trig and a few other ways&lt;/li&gt;&lt;li&gt;how to draw in absolute positions using just actionscript&lt;/li&gt;&lt;/ul&gt;what ive also found out to be more true than anything is that you can be a flex interface developer all day long using just mxml and some inline actionscript. however the real way to become a VERY good flex developer is to learn actionscript first and then move into mxml.  since mxml is generated down to actionscript and then compiled into .swf files, you can really do just about everything in flex with just actionscript.&lt;br /&gt;&lt;br /&gt;so, im going to become first and actionscript 3 developer and then a mxml/flex developer.&lt;br /&gt;&lt;br /&gt;cheers til next post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-8033893190928168573?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/12/lazy-flex-blogger.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-2029357844952994671</guid><pubDate>Tue, 04 Dec 2007 00:35:00 +0000</pubDate><atom:updated>2007-12-03T19:55:41.090-05:00</atom:updated><title>Flex training at FigLeaf: Day 1</title><description>well, today was the first of three days of Flex training at FigLeaf Software, in Washington, DC.  The instructor is Dan Blackman, a very well spoken, not boring, and highly knowledgeable non-geek, geek.  today we learned A LOT. i dont have any code to show or application to show, but i hope to remember to bring that to the hotel room with me tomorrow.&lt;strong&gt;&lt;br /&gt;&lt;br /&gt;im going to try to remember as much as i can:&lt;br /&gt;&lt;br /&gt;1. containers&lt;br /&gt;2. form controls&lt;br /&gt;3. mxml component development and instantiation&lt;br /&gt;4. use of inline vs. imported classes vs. script block ActionScript&lt;br /&gt;5. using images in your flex app&lt;br /&gt;6. event dispatching&lt;br /&gt;7. event handling&lt;br /&gt;8. debug mode in flexbuilder and how to use trace(), how to use the problems view.&lt;br /&gt;9. how to effectively use workspaces, opening and closing projects&lt;br /&gt;10. i dont remember any more right now :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a id="CP___PAGEID=3634,Flex_2_Developing_Rich_Client_Applications.cfm,9|" href="http://training.figleaf.com/Courses/Flex_2_Developing_Rich_Client_Applications.cfm"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-2029357844952994671?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/12/flex-training-at-figleaf-day-1.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-3368983952262326797</guid><pubDate>Thu, 29 Nov 2007 22:11:00 +0000</pubDate><atom:updated>2007-11-29T17:15:25.659-05:00</atom:updated><title>great resource for flex information</title><description>a friend, &lt;a href="http://www.tricedesigns.com/"&gt;andy trice&lt;/a&gt;, sent me this link today&lt;br /&gt;&lt;br /&gt;&lt;a href="http://kanuwadhwa.wordpress.com/2007/08/07/flex-links/"&gt;http://kanuwadhwa.wordpress.com/2007/08/07/flex-links/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;quite possibly one of the best compilation of flex links and useful information.&lt;br /&gt;the entire blog appears to have some great information, and beginning flex information.&lt;br /&gt;&lt;br /&gt;in fact, im going to add this blog to my blogroll on the right.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-3368983952262326797?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/great-resource-for-flex-information.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-3700840429596572933</guid><pubDate>Thu, 29 Nov 2007 21:16:00 +0000</pubDate><atom:updated>2007-11-29T16:23:57.177-05:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>display list</category><category domain='http://www.blogger.com/atom/ns#'>actionscript</category><category domain='http://www.blogger.com/atom/ns#'>Flex</category><title>My First Package and the DisplayList</title><description>so, following along the lynda.com tutorials, i happened upon the one about the new feature in ActionScript3, and that is the "displayList".  New to ActionScript, the displayList is basically the manager for all things that APPEAR on the stage.  In order to show something on the stage you must add it to the stage, and conversely in order to NOT display some object on the stage, you can use removeChild().&lt;br /&gt;&lt;br /&gt;its nothing too crazy, and really not that hard, but it was cool to &lt;a href="http://www.f13x.com/flex/displayList/displayList.html"&gt;see my first little creation&lt;/a&gt; come to life!  now, this may appear as nothing but a circle with a line through it, but for my company, &lt;a href="http://www.navtrak.net"&gt;Navtrak, Inc.&lt;/a&gt; the icon you see bears a striking resemblance to our vehicle icon in our software.&lt;br /&gt;&lt;br /&gt;anyway, the code for this exercise is below:&lt;br /&gt;&lt;br /&gt;&lt;div class="code"&gt;package {&lt;br /&gt;import flash.display.Shape;&lt;br /&gt;import flash.display.Sprite;&lt;br /&gt;&lt;br /&gt;public class DisplayList extends Sprite {&lt;br /&gt;&lt;br /&gt; public function DisplayList() { &lt;br /&gt;  var circle:Shape = new Shape();&lt;br /&gt;  circle.graphics.lineStyle(5,0x000000,1);&lt;br /&gt;  circle.graphics.beginFill(0xcc0000,.75);  &lt;br /&gt;  circle.graphics.drawCircle(20,20,15);&lt;br /&gt;  addChild(circle);&lt;br /&gt;  circle.x  = 30;&lt;br /&gt;  circle.y = 10&lt;br /&gt;  var line:Shape = new Shape();&lt;br /&gt;  line.graphics.lineStyle(2, 0, 100);&lt;br /&gt;  line.graphics.lineTo(25, 25);&lt;br /&gt;  addChild(line);&lt;br /&gt;  line.x = 30;&lt;br /&gt;  line.y = 10;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.f13x.com/flex/displayList/displayList.html"&gt;The example is here.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-3700840429596572933?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/my-first-package-and-displaylist.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>4</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-1553633123061387578</guid><pubDate>Thu, 29 Nov 2007 13:39:00 +0000</pubDate><atom:updated>2007-11-29T08:40:56.335-05:00</atom:updated><title>So far...</title><description>well, so far in my lessons i have learned about:&lt;br /&gt;&lt;br /&gt;1. classes&lt;br /&gt;2. packages&lt;br /&gt;3. methods&lt;br /&gt;4. properties&lt;br /&gt;5. constructors&lt;br /&gt;6. variables (duhhh)&lt;br /&gt;7. expressions (duhhh)&lt;br /&gt;8. conditional things&lt;br /&gt;9. looping (duhhh)&lt;br /&gt;&lt;br /&gt;and now its time to dive into classes a bit deeper, and today in the videos im actually going to be making my first class, and hopefully displaying something on the stage!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-1553633123061387578?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/so-far.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-6138707715243678299</guid><pubDate>Mon, 26 Nov 2007 15:47:00 +0000</pubDate><atom:updated>2007-11-26T10:48:04.138-05:00</atom:updated><title>week 2 begins</title><description>ok, so a little turkey break took my time last couple days, but its week 2, and its time for some flex.  i hope today to connect my first coldfusion webservice to a flex data grid.  :) coming soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-6138707715243678299?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/week-2-begins.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-1108846832416526923</guid><pubDate>Wed, 21 Nov 2007 20:05:00 +0000</pubDate><atom:updated>2007-11-21T15:20:17.911-05:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>actionscript</category><category domain='http://www.blogger.com/atom/ns#'>Flex</category><title>the curriculum</title><description>im going to get into my curriculum a bit so that i can remind myself what i wanted to do, from the beginning, and see how that changes over time.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 1&lt;/span&gt;&lt;br /&gt;  a. read Programming Flex by Chafic Kazoun and Joey Lott&lt;br /&gt;  b. take the first set of lessons on actionscript from lynda.com&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 2&lt;/span&gt;&lt;br /&gt;  a. continue reading and re-reading the book above&lt;br /&gt;  b. wrap up on actionscript videos from lynda.com (easily the hardest part for me to pickup, being that i was more of a designer forever, and not a programmer in the oop sense of programming.  im more of a coldfusion developer who can design as well)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 3&lt;/span&gt;&lt;br /&gt;   a. &lt;a href="http://training.figleaf.com/Flex_2_Developing_Rich_Client_Applications.cfm"&gt;Flex 2: Developing Rich Client Applications&lt;/a&gt; class at &lt;a href="http://www.figleaf.com/"&gt;figleaf&lt;/a&gt; this is a two day class&lt;br /&gt;that delves into the basics of flex development&lt;br /&gt;  b. build out my first little application.  i want to make a simple CRUD system that i will eventually take into my day job (&lt;a href="http://www.navtrak.net/"&gt;www.navtrak.net&lt;/a&gt;) and implement that as part of an effort to upgrade some backend systems.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 4&lt;/span&gt;&lt;br /&gt;  a. continue reading and going over course material and working lots and lots of actionscript classes to become components for that backend app.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 5&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   &lt;/span&gt;a. christmas :) forget geek stuff for a week&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 6&lt;/span&gt;&lt;br /&gt;  a. more work on backend components and loads of interface work.  mxml i think will be the easy part for me, i think the bane of my flex existence will be actionscript.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;week 7&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;   &lt;/span&gt;a. another two day class @ figleaf, this time &lt;a href="http://training.figleaf.com/Flex_2_Dashboard_Applications.cfm"&gt;Flex 2: Dashboard Applications&lt;/a&gt;&lt;br /&gt;  b. back to back! thats right, another class at figleaf the same week: &lt;a href="http://training.figleaf.com/"&gt;Flex 2: Programming the Visual Experience&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;this is good for now... this will keep me plenty busy for some time.&lt;br /&gt;&lt;br /&gt;i hope to have examples of what im doing up here shortly.  although most of the code ive done so far is too tiny to really get into it :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-1108846832416526923?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/curriculum.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>2</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-1161498219830441115.post-7430517023779552076</guid><pubDate>Tue, 20 Nov 2007 15:31:00 +0000</pubDate><atom:updated>2007-11-20T11:19:15.345-05:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>Learning</category><category domain='http://www.blogger.com/atom/ns#'>Flex</category><category domain='http://www.blogger.com/atom/ns#'>Links</category><title>Flex 2 Useful links</title><description>This blog is going to be the chronicle of my trip through learning how to make rich internet applications with yet another tool, Flex.  I have been a web developer for about 13 years now and up until this point, everything was "ColdFusion + Javascript + CSS + Photoshop" to make it all look good and act like it should.  Well, it's now time to move on and embellish my bag of tricks.  And with that, this trip through learning Flex and its two languages, MXML and ActionScript begins!&lt;br /&gt;&lt;br /&gt;I wanted to make sure this first post had some of the most useful links that I could get my hands on and to do that I tapped into a good friend and &lt;a href="http://www.tricedesigns.com/tricedesigns_home/blog/index.html"&gt;Flex Guru God Warlord, Andy Trice&lt;/a&gt;.  Andy works for Cynergy and truly has opened my eyes to what is possible, and that it's even possible for me to start doing some of these cool things!&lt;br /&gt;&lt;br /&gt;Anyway, here is the first of which I believe there will be MANY links to &lt;a href="http://www.tricedesigns.com/tricedesigns_home/blog/index.html"&gt;his site&lt;/a&gt;,&lt;br /&gt;&lt;h3 class="post-title"&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://www.tricedesigns.com/tricedesigns_home/blog/2007/11/userful-links-for-getting-started-with.html"&gt;      Useful links for getting started with Flex 2&lt;/a&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1161498219830441115-7430517023779552076?l=www.f13x.com%2Findex.cfm'/&gt;&lt;/div&gt;</description><link>http://www.f13x.com/2007/11/flex-2-useful-links.html</link><author>noreply@blogger.com (Tony)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>5</thr:total></item></channel></rss>