<?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-create &#124; therefore-i am &#187; Air</title>
	<atom:link href="http://i-create.org/tag/Air/feed/" rel="self" type="application/rss+xml" />
	<link>http://i-create.org</link>
	<description>i-create &#124; therefore i-am &#124; a blog about opensource technology and rich internet applications</description>
	<lastBuildDate>Thu, 05 Aug 2010 04:19:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Yahoo Pipes + AS3 = Some Issues</title>
		<link>http://i-create.org/2008/06/09/yahoo-pipes-as3-some-issues/</link>
		<comments>http://i-create.org/2008/06/09/yahoo-pipes-as3-some-issues/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 17:57:13 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Apollo]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=462</guid>
		<description><![CDATA[Well I have been working with ActionScript3 and come across a few gotchas. Here is my conundrum. Yes it is the infamous TypeError: Error #1085: This error occurs when an html tag is not closed properly. I have been using Yahoo Pipes and combining it with flash for fun and most of the time with [...]]]></description>
			<content:encoded><![CDATA[<p>Well I have been working with ActionScript3 and come across a few gotchas.  Here is my conundrum. Yes it is the infamous TypeError: Error #1085: This error occurs when an html tag is not closed properly.  I have been using Yahoo Pipes and combining it with flash for fun and most of the time with good results.  Unfortunately when you run into error #1085 everything stops or if the html is not correctly formatted even if you wrap it in a CDATA tag nothing appears.  So that kind of sucks.  I will look into creating a class that analyzes the string and corrects the issue but it may not even be possible to fix this error.  Any way the code below works for the most part (as long as your html is coded correctly).  It would be easy to say well why don’t you just fix the html which would of course be easy assuming it is mine but in this situation it is not….  I do love actionscript3 it is definitely what adobe needed to do with actionscript it is nice because ActionScript three is not so different from C# and it is a full blown object oriented programming language.  I have also attempted to get the information in JSON and render it but of course I run into the same issue. I will have you know you can do some cool stuff with the JSON class.  I will be posting a new AIR application within the next 4-5 months.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #0066CC;">stage</span>.<span style="color: #0066CC;">scaleMode</span> = StageScaleMode.<span style="color: #006600;">NO_SCALE</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> myXML:<span style="color: #0066CC;">XML</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">XML</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> XML_URL:<span style="color: #0066CC;">String</span> = <span style="color: #ff0000;">&quot;http://pipes.yahoo.com/pipes/pipe.run?_id=f207a19ea9a846e4ca242c5239a0d0df&amp;amp;_render=rss&quot;</span>;
<span style="color: #000000; font-weight: bold;">var</span> myXMLURL:URLRequest = <span style="color: #000000; font-weight: bold;">new</span> URLRequest<span style="color: #66cc66;">&#40;</span>XML_URL<span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> myLoader:URLLoader = <span style="color: #000000; font-weight: bold;">new</span> URLLoader<span style="color: #66cc66;">&#40;</span>myXMLURL<span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">//myLoader.addEventListener(Event.COMPLETE, onComplete);</span>
myLoader.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;complete&quot;</span>, xmlLoaded<span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> outXML:XMLList = <span style="color: #000000; font-weight: bold;">new</span> XMLList<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> rssOutput:<span style="color: #0066CC;">String</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> xmlLoaded<span style="color: #66cc66;">&#40;</span>event:Event<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
<span style="color: #66cc66;">&#123;</span>
    myXML = <span style="color: #0066CC;">XML</span><span style="color: #66cc66;">&#40;</span>myLoader.<span style="color: #0066CC;">data</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>myXML.<span style="color: #006600;">namespace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">!</span>= <span style="color: #0066CC;">undefined</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">default</span> <span style="color: #0066CC;">xml</span> namespace = myXML.<span style="color: #006600;">namespace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&quot;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
	myHead_txt.<span style="color: #0066CC;">htmlText</span>=<span style="color: #ff0000;">&quot;Digg News&quot;</span>+<span style="color: #ff0000;">&quot;RIA News&quot;</span>+<span style="color: #ff0000;">&quot;MXNA News&quot;</span>+<span style="color: #ff0000;">&quot;MSDN News&quot;</span>;
	<span style="color: #b1b100;">for</span> each <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> item:<span style="color: #0066CC;">XML</span> <span style="color: #b1b100;">in</span> myXML..<span style="color: #006600;">item</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">var</span> itemTitle:<span style="color: #0066CC;">String</span> = item.<span style="color: #006600;">title</span>.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #000000; font-weight: bold;">var</span> itemDescription:<span style="color: #0066CC;">String</span> = item.<span style="color: #006600;">description</span>.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #000000; font-weight: bold;">var</span> itemLink:<span style="color: #0066CC;">String</span> = item.<span style="color: #006600;">link</span>.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		outXML += buildItemHTML<span style="color: #66cc66;">&#40;</span>itemTitle, itemDescription, itemLink<span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
	<span style="color: #0066CC;">XML</span>.<span style="color: #006600;">prettyPrinting</span> = <span style="color: #000000; font-weight: bold;">false</span>;
	rssOutput = outXML.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	myText_txt.<span style="color: #0066CC;">htmlText</span>=rssOutput;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> buildItemHTML<span style="color: #66cc66;">&#40;</span>itemTitle:<span style="color: #0066CC;">String</span>, itemDescription:<span style="color: #0066CC;">String</span>, itemLink:<span style="color: #0066CC;">String</span><span style="color: #66cc66;">&#41;</span>:XMLList
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">default</span> <span style="color: #0066CC;">xml</span> namespace = <span style="color: #000000; font-weight: bold;">new</span> Namespace<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #000000; font-weight: bold;">var</span> body:XMLList = <span style="color: #000000; font-weight: bold;">new</span> XMLList<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	body += <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">XML</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&lt;strong&gt;&quot;</span> + itemTitle + <span style="color: #ff0000;">&quot;&lt;/strong&gt;&quot;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #000000; font-weight: bold;">var</span> p:<span style="color: #0066CC;">XML</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">XML</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;
&nbsp;
&quot;</span>+ <span style="color: #ff0000;">&quot;&lt;!--[CDATA[&quot;</span> + itemDescription +<span style="color: #ff0000;">&quot;]]--&gt;&quot;</span>+<span style="color: #ff0000;">&quot;
&nbsp;
&quot;</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//remove the CDATA tag this was only an attempt to correct fubared html</span>
	<span style="color: #808080; font-style: italic;">//var img:XML = &lt;img alt=&quot;&quot; /&gt;</span>
	<span style="color: #000000; font-weight: bold;">var</span> link:<span style="color: #0066CC;">XML</span> = <span style="color: #66cc66;">&lt;</span>a<span style="color: #66cc66;">&gt;&lt;/</span>a<span style="color: #66cc66;">&gt;</span>;
	link.<span style="color: #66cc66;">@</span>href = itemLink;
	link.<span style="color: #0066CC;">font</span>.<span style="color: #66cc66;">@</span><span style="color: #0066CC;">color</span> = <span style="color: #ff0000;">&quot;#990000&quot;</span>; 
&nbsp;
	link.<span style="color: #0066CC;">font</span> = <span style="color: #ff0000;">&quot;More...&quot;</span>;
&nbsp;
	p.<span style="color: #0066CC;">appendChild</span><span style="color: #66cc66;">&#40;</span>
<span style="color: #66cc66;">&#41;</span>;
	p.<span style="color: #0066CC;">appendChild</span><span style="color: #66cc66;">&#40;</span>link<span style="color: #66cc66;">&#41;</span>;
	body += p;
	<span style="color: #b1b100;">return</span> body;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>Managed  to fix some of my issues.  You will notice when you send a yahoo pipe through a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ZlZWR2YWxpZGF0b3Iub3JnLw==" target=\"_blank\">feed validation</a> some pipes absolutely explode. So of course their not going to work with flash.  One work around is an attempt to cleanse the pipe so to speak I have had good results sending a dirty pipe through <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RhcHBlci5uZXQ=" target=\"_blank\">the Dapper</a> to clean it. It is a round about process but it seems to work just fine.  I have to give the people at yahoo credit <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3BpcGVzLnlhaG9vLmNvbQ==" target=\"_blank\">yahoo pipes</a> is truly amazing.  I am also confident in the final release they will have no issues.  While looking for ways to clean dirty html / xml I managed to teach myself a great deal!  I also found this article that discusses how to use pipes to send a feed through a web page to append information creating the clean output of an rss feed combined with an html web page chunk sound weird I know. This displays an interesting use of the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NnaS53My5vcmcvY2dpLWJpbi90aWR5P2RvY0FkZHI9JiMwMzg7Zm9yY2VYTUw9b24=" target=\"_blank\">HTML tidy service.</a> Any way check it out <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NhcmxvLnpvdHRtYW5uLm9yZy8yMDA3LzA5LzE3L3lhaG9vLXBpcGVzLXR1dG9yaWFsLWhvdy10by1wcm9jZXNzLWh0bWwtcGFnZXMv" target=\"_blank\">here.</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=462" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2008%2F06%2F09%2Fyahoo-pipes-as3-some-issues%2F&amp;linkname=Yahoo%20Pipes%20%2B%20AS3%20%3D%20Some%20Issues"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2008/06/09/yahoo-pipes-as3-some-issues/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CS3 and Apollo</title>
		<link>http://i-create.org/2007/04/12/cs3_and_apollo/</link>
		<comments>http://i-create.org/2007/04/12/cs3_and_apollo/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apollo]]></category>
		<category><![CDATA[CS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Air]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[ Well it looks like the people at adobe are finally integrating the macromedia folks and by the end of the month we should have some new killer apps to play with. For those of you out their that don?t know Adobe has been doing some really revolutionary things lately. They have begun to take their apps to the web. Just take a look at PhotoBucket.com and the integration with adobes on-line video editor remix. Adobe has also made it clear they are interested in multiple models of distribution. So I guess what I am getting at is PhotoBucket is not going to be the only social network with adobes on-line editing tools. This is excellent news for all the budding social networks out there. Adobe is also working on placing a Photoshop app on the web as well with an advertising model to support it to compete more directly with Googles Picasa! So you may be wondering what else you can expect out of Adobe and CS 3. Well for starters you may have heard the latest rumors of the new version of Flash. You may have heard people talking about new abilities to turn frame based animations into action script with the click of a button. Does that sound good to you that is just for starters no question about it Action Script 3 is what flash developers have been carving for since Flash 3. If you have downloaded the Beta I recommend you try it! I personally am anxious to see what they do with DreamWeaver lets hope for an overhaul of the CSS tools and maybe some <a href="http://labs.adobe.com/technologies/spry/" target="_blank" title="Spry Ajax">Spry Ajax integration</a>. <br /><br />Adobe has also been rumored to be working on a Windows Platform Killer called Apollo. You may be wonder just what is <a href="http://youtube.com/results?search_query=adobe+apollo&#38;search=Search" title="Apollo">Apollo</a>?<br /><br />Apollo will be used to create a hybrid applications that are truly cross platform (that Includes Linux). You will be able to use your desktop horse power to make changes to video and image files while saving them on-line. It will also have a host of other features as well. In short I expect this application to kill off applications like MDM studio and other methods of creating flash applications on the desktop. Apollo will also integrate more with the applications suites adobe already has<span style="font-family: Wingdings">J So Apollo is definitely worth checking out and I would expect to see some pleasant surprises in the Adobe Labs relatively soon! So check out some of the rumors for yourself:<br /><br /><a href="http://news.com.com/Adobe+sees+its+future+on+the+Web/2008-1012_3-6164143.html?tag=st.num">http://news.com.com/Adobe+sees+its+future+on+the+Web/2008-1012_3-6164143.html?tag=st.num</a>   <a href="http://www.appleinsider.com/article.php?id=2544">http://www.appleinsider.com/article.php?id=2544</a>    <a href="http://www.whatisinthebox.co.uk/">http://www.whatisinthebox.co.uk/</a><br /><br />Flash9 and Action Script 3<br /><br />   Well Action Script 3 is quite a revolution! Check out <a href="http://blog.papervision3d.org/" target="_blank">PaperVision3D!</a> PaperVision is a 3d engine for Flash that uses XML or Collada files. It looks extremely powerful and you can now expect flash to boldly go where no other web plugin has gone before (Well no other plugin has that kind of penetration). It is also nice to see that <a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200611/110706Mozilla.html" target="_blank">Adobe has handed over the Flash Virtual Machine code to the FireFox foundation</a>. Just what does this mean to you well for starters flash will truly be cross platform. I am also anxious to see it used in new ways that were previously not thought of. Thinking of FireFox Check out some of Alessandro Crugnola firefox extensions.<br />  <br /><a href="http://www.sephiroth.it/firefox/">http://www.sephiroth.it/firefox/</a><br /><br />Crugnola also has an extremely useful open source editor you can use to create .swf files if you good at coding Action Script it also has Motion Twin integrated into the application so you can actually build and test your .swf files. In short the web is looking better and better as a platform for applications, video, and interactive media. Adobe has some great things in store for us so keep a vigilant eye out on what is on the horizon.<a href="http://youtube.com/results?search_query=adobe+apollo&#38;search=Search" target="_blank" title="ApolloVids">YouTube Apollo Videos</a> </span>]]></description>
			<content:encoded><![CDATA[<p>Well it looks like the people at adobe are finally integrating the macromedia folks and by the end of the month we should have some new killer apps to play with. For those of you out their that don?t know Adobe has been doing some really revolutionary things lately. They have begun to take their apps to the web. Just take a look at PhotoBucket.com and the integration with adobes on-line video editor remix. Adobe has also made it clear they are interested in multiple models of distribution. So I guess what I am getting at is PhotoBucket is not going to be the only social network with adobes on-line editing tools. This is excellent news for all the budding social networks out there. Adobe is also working on placing a Photoshop app on the web as well with an advertising model to support it to compete more directly with Googles Picasa! So you may be wondering what else you can expect out of Adobe and CS 3. Well for starters you may have heard the latest rumors of the new version of Flash. You may have heard people talking about new abilities to turn frame based animations into action script with the click of a button. Does that sound good to you that is just for starters no question about it Action Script 3 is what flash developers have been carving for since Flash 3. If you have downloaded the Beta I recommend you try it! I personally am anxious to see what they do with DreamWeaver lets hope for an overhaul of the CSS tools and maybe some <a title=\"Spry Ajax\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9zcHJ5Lw==" target=\"_blank\">Spry Ajax integration</a>.</p>
<p>Adobe has also been rumored to be working on a Windows Platform Killer called Apollo. You may be wonder just what is <a title=\"Apollo\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3lvdXR1YmUuY29tL3Jlc3VsdHM/c2VhcmNoX3F1ZXJ5PWFkb2JlK2Fwb2xsbyZhbXA7c2VhcmNoPVNlYXJjaA==">Apollo</a>?</p>
<p>Apollo will be used to create a hybrid applications that are truly cross platform (that Includes Linux). You will be able to use your desktop horse power to make changes to video and image files while saving them on-line. It will also have a host of other features as well. In short I expect this application to kill off applications like MDM studio and other methods of creating flash applications on the desktop. Apollo will also integrate more with the applications suites adobe already has<span style="font-family: Wingdings;">J So Apollo is definitely worth checking out and I would expect to see some pleasant surprises in the Adobe Labs relatively soon! So check out some of the rumors for yourself:</span></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25ld3MuY29tLmNvbS9BZG9iZStzZWVzK2l0cytmdXR1cmUrb24rdGhlK1dlYi8yMDA4LTEwMTJfMy02MTY0MTQzLmh0bWw/dGFnPXN0Lm51bQ==">http://news.com.com/Adobe+sees+its+future+on+the+Web/2008-1012_3-6164143.html?tag=st.num</a> <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hcHBsZWluc2lkZXIuY29tL2FydGljbGUucGhwP2lkPTI1NDQ=">http://www.appleinsider.com/article.php?id=2544</a> <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy53aGF0aXNpbnRoZWJveC5jby51ay8=">http://www.whatisinthebox.co.uk/</a></p>
<p>Flash9 and Action Script 3</p>
<p>Well Action Script 3 is quite a revolution! Check out <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cucGFwZXJ2aXNpb24zZC5vcmcv" target=\"_blank\">PaperVision3D!</a> PaperVision is a 3d engine for Flash that uses XML or Collada files. It looks extremely powerful and you can now expect flash to boldly go where no other web plugin has gone before (Well no other plugin has that kind of penetration). It is also nice to see that <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vYWJvdXRhZG9iZS9wcmVzc3Jvb20vcHJlc3NyZWxlYXNlcy8yMDA2MTEvMTEwNzA2TW96aWxsYS5odG1s" target=\"_blank\">Adobe has handed over the Flash Virtual Machine code to the FireFox foundation</a>. Just what does this mean to you well for starters flash will truly be cross platform. I am also anxious to see it used in new ways that were previously not thought of. Thinking of FireFox Check out some of Alessandro Crugnola firefox extensions.</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zZXBoaXJvdGguaXQvZmlyZWZveC8=">http://www.sephiroth.it/firefox/</a></p>
<p>Crugnola also has an extremely useful open source editor you can use to create .swf files if you good at coding Action Script it also has Motion Twin integrated into the application so you can actually build and test your .swf files. In short the web is looking better and better as a platform for applications, video, and interactive media. Adobe has some great things in store for us so keep a vigilant eye out on what is on the horizon.<a title=\"ApolloVids\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3lvdXR1YmUuY29tL3Jlc3VsdHM/c2VhcmNoX3F1ZXJ5PWFkb2JlK2Fwb2xsbyZhbXA7c2VhcmNoPVNlYXJjaA==" target=\"_blank\">YouTube Apollo Videos</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=431" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2007%2F04%2F12%2Fcs3_and_apollo%2F&amp;linkname=CS3%20and%20Apollo"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2007/04/12/cs3_and_apollo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apollo Project</title>
		<link>http://i-create.org/2006/06/29/apollo_project/</link>
		<comments>http://i-create.org/2006/06/29/apollo_project/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Apollo]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Air]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/apollo_tunes_viz_small.jpg" alt="" width="400" height="274" /><br />  <p>The end of the desktop has been upon us for awhile now but <a href="http://adobe.com">Adobe</a> is really getting their ducks in order. If you have noticed lately they release <a href="http://www.adobe.com/products/flex/" target="_blank">Flex 2</a> which supports Action Script 3 and <a href="http://www.adobe.com/products/flex/" target="_blank">MXML</a> (Introduced by Adobe/Macromedia for the Flex line). They have had the beta available for download for some time so if you didnÃ¢â‚¬â„¢t take advantage of the Beta I guess it kind of sucks to be you.. (Kidding) If you have been paying attention to Microsoft and its <a href="http://www.microsoft.com/products/expression/en/interactive_designer/id_free_trial.aspx" target="_blank">sparkle (Interactive Designer)</a> uses <a href="http://en.wikipedia.org/wiki/XAML" target="_blank">XAML</a>. I guess I would compare MXML to XAML because they do share many similarities. The benefit of using MXML is of course you donÃ¢â‚¬â„¢t have to have the windows presentation foundation running on your machine it just uses the flash player! Adobe had been focusing all of it energy toward the <a href="http://www.appleinsider.com/article.php?id=1772" target="_blank">Apollo Project</a> its goal to render the desktop obsolete. Flash has had the ability for awhile now to create executables that connect to the internet and gather information. When you combine Flash with Flex you have the ability to create enterprise level applications. I can see flex being used in the financial area soon it has a seemingly endless shelf life and a massive amount of potential. I am also excited to see flex working with PHP relatively easily! <a href="http://blogs.adobe.com/mikepotter/2006/06/php_conference.html" target="_blank">They also demoed a Flex interface for Drupal recently.</a> So the next wave of web applications is almost here in the next few years the web will rapidly change and hopefully become what it was originally intended for connecting us all easily and cost efficiently! I highly recommend getting a Flex server it has vast potential.</p>  <p>Useful Links:<br />    <a href="http://seminars.breezecentral.com/p35808495/" target="_blank">Discussion</a><br />    <a href="http://www.adobe.com/devnet/flex/" target="_blank">Flex In Action</a></p>  ]]></description>
			<content:encoded><![CDATA[<p><img src="/apollo_tunes_viz_small.jpg" alt="" width="400" height="274" /></p>
<p>The end of the desktop has been upon us for awhile now but <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Fkb2JlLmNvbQ==">Adobe</a> is really getting their ducks in order. If you have noticed lately they release <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vcHJvZHVjdHMvZmxleC8=" target=\"_blank\">Flex 2</a> which supports Action Script 3 and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vcHJvZHVjdHMvZmxleC8=" target=\"_blank\">MXML</a> (Introduced by Adobe/Macromedia for the Flex line). They have had the beta available for download for some time so if you didnâ€™t take advantage of the Beta I guess it kind of sucks to be you.. (Kidding) If you have been paying attention to Microsoft and its <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Byb2R1Y3RzL2V4cHJlc3Npb24vZW4vaW50ZXJhY3RpdmVfZGVzaWduZXIvaWRfZnJlZV90cmlhbC5hc3B4" target=\"_blank\">sparkle (Interactive Designer)</a> uses <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9YQU1M" target=\"_blank\">XAML</a>. I guess I would compare MXML to XAML because they do share many similarities. The benefit of using MXML is of course you donâ€™t have to have the windows presentation foundation running on your machine it just uses the flash player! Adobe had been focusing all of it energy toward the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hcHBsZWluc2lkZXIuY29tL2FydGljbGUucGhwP2lkPTE3NzI=" target=\"_blank\">Apollo Project</a> its goal to render the desktop obsolete. Flash has had the ability for awhile now to create executables that connect to the internet and gather information. When you combine Flash with Flex you have the ability to create enterprise level applications. I can see flex being used in the financial area soon it has a seemingly endless shelf life and a massive amount of potential. I am also excited to see flex working with PHP relatively easily! <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2dzLmFkb2JlLmNvbS9taWtlcG90dGVyLzIwMDYvMDYvcGhwX2NvbmZlcmVuY2UuaHRtbA==" target=\"_blank\">They also demoed a Flex interface for Drupal recently.</a> So the next wave of web applications is almost here in the next few years the web will rapidly change and hopefully become what it was originally intended for connecting us all easily and cost efficiently! I highly recommend getting a Flex server it has vast potential.</p>
<p>Useful Links:<br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlbWluYXJzLmJyZWV6ZWNlbnRyYWwuY29tL3AzNTgwODQ5NS8=" target=\"_blank\">Discussion</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vZGV2bmV0L2ZsZXgv" target=\"_blank\">Flex In Action</a></p>
<p><!--break--></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=300" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F06%2F29%2Fapollo_project%2F&amp;linkname=Apollo%20Project"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/06/29/apollo_project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
