<?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; Flex</title>
	<atom:link href="http://i-create.org/category/Flex/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>Twitter and Google Maps</title>
		<link>http://i-create.org/2009/08/03/twitter-and-google-maps/</link>
		<comments>http://i-create.org/2009/08/03/twitter-and-google-maps/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 22:37:29 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[MashUp]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Flash Develop]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter api]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=642</guid>
		<description><![CDATA[Google Maps and Twitter example, grab the user location and map it on Google maps. Please note that the Google Maps api for flash now has full 3d support this does not go into how to use that but I will make my way back to this tutorial in a bit and elaborate on how [...]]]></description>
			<content:encoded><![CDATA[<p>Google Maps and Twitter example, grab the user location and map it on Google maps.  Please note that the Google Maps api for flash now has full 3d support this does not go into how to use that but I will make my way back to this tutorial in a bit and elaborate on how to execute a 3d map in flash put for now this is just a ridiculously simple example of how to integrate a twitter map with Google quickly.  For this example I simply picked up the Google map api swc and followed the geocoding example.  I simply pass in the twitter location of the user to the geocoding services and it automagically maps my results no real frills just simple and quick example.</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYXF1YVQv" target=\"_blank\" title=\"Simple Google Maps and Twitter Geocoding\"><br />
<img src="/actionscript/twitterUserMappedonGoogle.jpg" alt="Simple Google Maps and Twitter"/></a></p>
<p>Flash Twitter and Google Map Integration:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #66cc66;">&lt;</span>?<span style="color: #0066CC;">xml</span> <span style="color: #0066CC;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #66cc66;">&gt;</span>
<span style="color: #66cc66;">&lt;</span>mx:Canvas xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;600&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;300&quot;</span>  xmlns:maps=<span style="color: #ff0000;">&quot;com.google.maps.*&quot;</span> initialize=<span style="color: #ff0000;">&quot;init()&quot;</span><span style="color: #66cc66;">&gt;</span>
 <span style="color: #66cc66;">&lt;</span>mx:VBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #66cc66;">&gt;</span>
 <span style="color: #66cc66;">&lt;</span>mx:HBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #0066CC;">visible</span>=<span style="color: #ff0000;">&quot;false&quot;</span><span style="color: #66cc66;">&gt;</span>
  <span style="color: #66cc66;">&lt;</span>mx:TextInput
     id=<span style="color: #ff0000;">&quot;address&quot;</span>
     <span style="color: #0066CC;">text</span>=<span style="color: #ff0000;">&quot;Sydney AU&quot;</span>
     dropShadowColor=<span style="color: #ff0000;">&quot;0x000000&quot;</span>
      <span style="color: #0066CC;">visible</span>=<span style="color: #ff0000;">&quot;false&quot;</span>
  <span style="color: #66cc66;">/&gt;</span>
 <span style="color: #66cc66;">&lt;/</span>mx:HBox<span style="color: #66cc66;">&gt;</span>
  <span style="color: #66cc66;">&lt;</span>maps:Map 
    id=<span style="color: #ff0000;">&quot;map&quot;</span> 
    <span style="color: #0066CC;">key</span>=<span style="color: #ff0000;">&quot;yourAPI Key&quot;</span> 
    mapevent_mapready=<span style="color: #ff0000;">&quot;onMapReady(event)&quot;</span>
    <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #66cc66;">/&gt;</span>
 <span style="color: #66cc66;">&lt;/</span>mx:VBox<span style="color: #66cc66;">&gt;</span>
 <span style="color: #66cc66;">&lt;</span>mx:Script<span style="color: #66cc66;">&gt;</span>
    <span style="color: #66cc66;">&lt;!</span><span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span>
	  <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">SampleTitleWindow</span>;
	  <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #006600;">Event</span>;
	  <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">events</span>.<span style="color: #006600;">MenuEvent</span>;
      <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">collections</span>.<span style="color: #66cc66;">*</span>;
      <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">managers</span>.<span style="color: #006600;">PopUpManager</span>;
      <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">Alert</span>;
	  <span style="color: #0066CC;">import</span> nl.<span style="color: #006600;">demonsters</span>.<span style="color: #006600;">debugger</span>.<span style="color: #006600;">MonsterDebugger</span>;
	  <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #66cc66;">*</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">services</span>.<span style="color: #006600;">ClientGeocoderOptions</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">LatLng</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">Map</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">MapEvent</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">MapMouseEvent</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">MapType</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">services</span>.<span style="color: #006600;">ClientGeocoder</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">services</span>.<span style="color: #006600;">GeocodingEvent</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">overlays</span>.<span style="color: #006600;">Marker</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">overlays</span>.<span style="color: #006600;">MarkerOptions</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">InfoWindowOptions</span>;
      <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">Alert</span>;
      <span style="color: #0066CC;">import</span> com.<span style="color: #006600;">google</span>.<span style="color: #006600;">maps</span>.<span style="color: #006600;">controls</span>.<span style="color: #006600;">ZoomControl</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> nc:<span style="color: #0066CC;">NetConnection</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">NetConnection</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> resp:Responder = <span style="color: #000000; font-weight: bold;">new</span> Responder<span style="color: #66cc66;">&#40;</span>onResult, onError<span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> resp1:Responder = <span style="color: #000000; font-weight: bold;">new</span> Responder<span style="color: #66cc66;">&#40;</span>onError<span style="color: #66cc66;">&#41;</span>;
      <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> obj:<span style="color: #0066CC;">Object</span> = <span style="color: #66cc66;">&#123;</span> <span style="color: #66cc66;">&#125;</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> tweetLocN:<span style="color: #0066CC;">int</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">int</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> geoLocationTwit:<span style="color: #0066CC;">Array</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Array</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
	  <span style="color: #66cc66;">&#123;</span>
			nc.<span style="color: #006600;">objectEncoding</span> = ObjectEncoding.<span style="color: #006600;">AMF3</span>;
			nc.<span style="color: #0066CC;">connect</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://yoursite.com/toYour/zendEndpointAMF/index.php&quot;</span><span style="color: #66cc66;">&#41;</span>;
			nc.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;TwitService.getfriendsTimeline&quot;</span>,resp<span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #66cc66;">&#125;</span>
&nbsp;
	  <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> onResult<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:<span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#41;</span>
      <span style="color: #66cc66;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">var</span> arr:<span style="color: #0066CC;">Array</span> = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
				<span style="color: #b1b100;">for</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>; i <span style="color: #66cc66;">&lt;</span> <span style="color: #0066CC;">e</span>.<span style="color: #006600;">friendsTimeline</span>.<span style="color: #0066CC;">length</span>; i++ <span style="color: #66cc66;">&#41;</span>
				<span style="color: #66cc66;">&#123;</span>
&nbsp;
					<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">locTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">!</span>= <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #66cc66;">&#41;</span>
					<span style="color: #66cc66;">&#123;</span>
					<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">locTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>+<span style="color: #ff0000;">&quot;----------------Pushed!!!!!!!!!!!!!!!!!!!!&quot;</span><span style="color: #66cc66;">&#41;</span>;
					<span style="color: #0066CC;">try</span>
					<span style="color: #66cc66;">&#123;</span>
					address.<span style="color: #0066CC;">text</span> = <span style="color: #0066CC;">e</span>.<span style="color: #006600;">locTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
					doGeocodeTwit<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">locTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>, <span style="color: #0066CC;">e</span>.<span style="color: #006600;">userTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>,<span style="color: #0066CC;">e</span>.<span style="color: #006600;">friendsTimeline</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span>;
					<span style="color: #66cc66;">&#125;</span>
					<span style="color: #0066CC;">catch</span> <span style="color: #66cc66;">&#40;</span>epicFail:<span style="color: #0066CC;">Error</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
					<span style="color: #66cc66;">&#125;</span>	
					<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;EpicFail Caught&quot;</span><span style="color: #66cc66;">&#41;</span>;
					<span style="color: #66cc66;">&#125;</span>
					<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">locTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>+<span style="color: #ff0000;">&quot;Result Fired++++++++++&quot;</span><span style="color: #66cc66;">&#41;</span>;
					tweetLocN = geoLocationTwit.<span style="color: #0066CC;">length</span>;
                    arr.<span style="color: #0066CC;">push</span><span style="color: #66cc66;">&#40;</span>obj<span style="color: #66cc66;">&#41;</span>;
				<span style="color: #66cc66;">&#125;</span>
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>obj.<span style="color: #006600;">loc</span>+<span style="color: #ff0000;">&quot;Result END++++++++++&quot;</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #808080; font-style: italic;">//datagrid.dataProvider = arr;</span>
	  <span style="color: #66cc66;">&#125;</span>
      <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> onError<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:<span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#41;</span>
	  <span style="color: #66cc66;">&#123;</span>
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;And the Error is !!!!&quot;</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span><span style="color: #66cc66;">&#41;</span>;
	  <span style="color: #66cc66;">&#125;</span>	  
      <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> onMapReady<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>
        map.<span style="color: #006600;">enableScrollWheelZoom</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
        map.<span style="color: #006600;">enableContinuousZoom</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
        map.<span style="color: #006600;">addControl</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> ZoomControl<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
       <span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
	  <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> doGeocodeTwit<span style="color: #66cc66;">&#40;</span>event:<span style="color: #0066CC;">String</span>, userTwitter:<span style="color: #0066CC;">String</span>, userTweets:<span style="color: #0066CC;">String</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
        <span style="color: #808080; font-style: italic;">// Geocoding example</span>
		<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>event+<span style="color: #ff0000;">&quot;String is+++++++++++++++++&quot;</span><span style="color: #66cc66;">&#41;</span>;
        <span style="color: #000000; font-weight: bold;">var</span> geocoder1:ClientGeocoder = <span style="color: #000000; font-weight: bold;">new</span> ClientGeocoder<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
        geocoder1.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>
          GeocodingEvent.<span style="color: #006600;">GEOCODING_SUCCESS</span>,
          <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>event:GeocodingEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
			  <span style="color: #000000; font-weight: bold;">var</span> placemarks:<span style="color: #0066CC;">Array</span> = event.<span style="color: #006600;">response</span>.<span style="color: #006600;">placemarks</span>;
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>placemarks+<span style="color: #ff0000;">&quot;+++++++===== Ran PlaceMark&quot;</span><span style="color: #66cc66;">&#41;</span>;
          <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>placemarks.<span style="color: #0066CC;">length</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
            map.<span style="color: #006600;">setCenter</span><span style="color: #66cc66;">&#40;</span>placemarks<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">point</span><span style="color: #66cc66;">&#41;</span>;
            <span style="color: #000000; font-weight: bold;">var</span> marker:Marker = <span style="color: #000000; font-weight: bold;">new</span> Marker<span style="color: #66cc66;">&#40;</span>placemarks<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">point</span><span style="color: #66cc66;">&#41;</span>;
            marker.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>MapMouseEvent.<span style="color: #006600;">CLICK</span>, <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span>event:MapMouseEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">var</span> mainTweet:<span style="color: #0066CC;">String</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">String</span><span style="color: #66cc66;">&#40;</span>userTwitter + <span style="color: #ff0000;">&quot; - User - Tweet:&quot;</span> + userTweets<span style="color: #66cc66;">&#41;</span>;
                marker.<span style="color: #006600;">openInfoWindow</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> InfoWindowOptions<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#123;</span>content: mainTweet<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
            <span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
            map.<span style="color: #006600;">addOverlay</span><span style="color: #66cc66;">&#40;</span>marker<span style="color: #66cc66;">&#41;</span>;
          <span style="color: #66cc66;">&#125;</span>
        <span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
		geocoder1.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>
          GeocodingEvent.<span style="color: #006600;">GEOCODING_FAILURE</span>,
          <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>event:GeocodingEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
            <span style="color: #808080; font-style: italic;">//Alert.show(&quot;Geocoding failed&quot;);</span>
            <span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>event<span style="color: #66cc66;">&#41;</span>;
            <span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>event.<span style="color: #0066CC;">status</span><span style="color: #66cc66;">&#41;</span>;
          <span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
        geocoder1.<span style="color: #006600;">geocode</span><span style="color: #66cc66;">&#40;</span>address.<span style="color: #0066CC;">text</span><span style="color: #66cc66;">&#41;</span>;
      <span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
    <span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&gt;</span>
  <span style="color: #66cc66;">&lt;/</span>mx:Script<span style="color: #66cc66;">&gt;</span>
&nbsp;
<span style="color: #66cc66;">&lt;/</span>mx:Canvas<span style="color: #66cc66;">&gt;</span></pre></div></div>

<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L2FjdGlvbnNjcmlwdC9Ud2l0dGVyRmxvY2tFeGFtcGxlLnppcA==" target=\"_blank\" title=\"Simple ZendAMF Twitter Gateway\">Code</a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYXF1YVQv" target=\"_blank\" title=\"Simple Google Maps and Twitter Geocoding\">Simple Google Maps and Twitter Geocoding</a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGUuZ29vZ2xlLmNvbS9hcGlzL21hcHMvZG9jdW1lbnRhdGlvbi9mbGFzaC9zZXJ2aWNlcy5odG1s" target=\"_blank\" title=\"Simple Google Maps Geocoding\">Simple Google Maps Geocoding</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=642" 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%2F2009%2F08%2F03%2Ftwitter-and-google-maps%2F&amp;linkname=Twitter%20and%20Google%20Maps"><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/2009/08/03/twitter-and-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZendAMF and the Twitter API</title>
		<link>http://i-create.org/2009/08/03/zendamf-and-the-twitter-api/</link>
		<comments>http://i-create.org/2009/08/03/zendamf-and-the-twitter-api/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 22:08:44 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[MashUp]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[amf]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[socialnetworking]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[zendamf]]></category>
		<category><![CDATA[zendframework]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=640</guid>
		<description><![CDATA[Have you ever had the urge to roll your own twitter? Well I have and I have tried a number of methods to come to the conclusion I needed to write everything from scratch. So I did and I wouldn&#8217;t say that I wasn&#8217;t without help. I did study Lee Brimelow&#8217;s gotoandlearn.com ZendAMF tutorial. So [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had the urge to roll your own twitter?  Well I have and I have tried a number of methods to come to the conclusion I needed to write everything from scratch.  So I did and I wouldn&#8217;t say that I wasn&#8217;t without help.  I did study <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dvdG9hbmRsZWFybi5jb20v" target=\"_blank\" title=\"Lee Brimelow\">Lee Brimelow&#8217;s gotoandlearn.com ZendAMF tutorial</a>.  So I went about downloading and install zend on my server and I found it was extremely easy to use.  One of the many things that attracted me to the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ZyYW1ld29yay56ZW5kLmNvbS8=" title=\"zendFramwork\" target=\"_blank\">Zend framework</a> were the prebuilt services.  The zend framework is a mature framework that has a great deal to offer developers so I will briefly show you a simple amf flash gateway built with zend to fetch the twitter service.  Also please note you will have to create your own classes if you want to extend this but it should be pretty easy to do considering..<br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYXF1YVQv" target=\"_blank\" title=\"Simple ZendAMF Twitter Gateway\"><img src="/actionscript/UserUpdatesTwitter.jpg" title="zend_amf_twitter" alt="Click to go to example" /></a></p>
<p>So first off download the zendframework.  Configure your zendAMF endpoint.<br />
Create your own ZendAMF endpoint:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">error_reporting</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">E_ALL</span><span style="color: #339933;">|</span>E_STRICT<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;display_errors&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;on&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;include_path&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">ini_get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;include_path&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;:/home/toYourZend/FrameWorkHome/frameworks/zendFramework/library/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Zend/Amf/Server.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'TwitService.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$server</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Zend_Amf_Server<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//adding our class to Zend AMF Server</span>
<span style="color: #000088;">$server</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setClass</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;TwitService&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$server</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">handle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Now configure your zend Twitter Service<br />
Create Your Twitter Service Class:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">error_reporting</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">E_ALL</span><span style="color: #339933;">|</span>E_STRICT<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;display_errors&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;on&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;include_path&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">ini_get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;include_path&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;:/home/toYourZend/FrameWorkHome/frameworks/zendFramework/library/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">require_once</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Zend/Service/Twitter.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'VOgetFriendsTimeline.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//connection info</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">class</span> TwitService <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$tmp</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$twitter</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$response</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> __construct<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getfriendsTimeline<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$twitter</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Zend_Service_Twitter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'YourUserName'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'YourPassword'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #000088;">$response</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$twitter</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">friendsTimeline</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #000088;">$tmp</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> VOgetFriendsTimeline<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;=</span> <span style="color: #cc66cc;">18</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #666666; font-style: italic;">// array_push($tmp-&gt;userTwit, $response-&gt;status[$i]);</span>
	 		<span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tmp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">userTwit</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>string<span style="color: #009900;">&#41;</span><span style="color: #000088;">$response</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">screen_name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 		<span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tmp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">statusPic</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>string<span style="color: #009900;">&#41;</span><span style="color: #000088;">$response</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">profile_image_url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 		<span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tmp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">locTwit</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>string<span style="color: #009900;">&#41;</span><span style="color: #000088;">$response</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">location</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     		<span style="color: #990000;">array_push</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tmp</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">friendsTimeline</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>string<span style="color: #009900;">&#41;</span><span style="color: #000088;">$response</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 	<span style="color: #009900;">&#125;</span>
	 <span style="color: #b1b100;">return</span> <span style="color: #000088;">$tmp</span><span style="color: #339933;">;</span>
	 <span style="color: #009900;">&#125;</span>
&nbsp;
	 <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> UserPostUpdate<span style="color: #009900;">&#40;</span><span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	 <span style="color: #000088;">$twitter</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Zend_Service_Twitter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'YourUserName'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'YourPassword'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	 <span style="color: #000088;">$response</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$twitter</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">status</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">update</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	 
	 <span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Now configure your flash variable object that is exposed by the service.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">class</span> VOgetFriendsTimeline <span style="color: #009900;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$user_twit</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$pass_twit</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$locTwit</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$friendsTimeline</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$statusPic</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$userTwit</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000088;">$text</span><span style="color: #339933;">;</span>
     <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> __construct<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Finally configure your flex project to consume the service.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #66cc66;">&lt;</span>?<span style="color: #0066CC;">xml</span> <span style="color: #0066CC;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #66cc66;">&gt;</span>
<span style="color: #66cc66;">&lt;</span>mx:Canvas xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;600&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;300&quot;</span> initialize=<span style="color: #ff0000;">&quot;init()&quot;</span><span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:Script<span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;!</span><span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span>
        	<span style="color: #0066CC;">import</span> com.<span style="color: #006600;">SampleTitleWindow</span>;
            <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">events</span>.<span style="color: #006600;">MenuEvent</span>;
            <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">Alert</span>;
            <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">collections</span>.<span style="color: #66cc66;">*</span>;
            <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">managers</span>.<span style="color: #006600;">PopUpManager</span>;
            <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">Alert</span>;
			<span style="color: #0066CC;">import</span> nl.<span style="color: #006600;">demonsters</span>.<span style="color: #006600;">debugger</span>.<span style="color: #006600;">MonsterDebugger</span>;
			<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #66cc66;">*</span>;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> nc:<span style="color: #0066CC;">NetConnection</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">NetConnection</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> resp:Responder = <span style="color: #000000; font-weight: bold;">new</span> Responder<span style="color: #66cc66;">&#40;</span>onResult, onError<span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">var</span> resp1:Responder = <span style="color: #000000; font-weight: bold;">new</span> Responder<span style="color: #66cc66;">&#40;</span>onError<span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #66cc66;">&#123;</span>
			nc.<span style="color: #006600;">objectEncoding</span> = ObjectEncoding.<span style="color: #006600;">AMF3</span>;
			nc.<span style="color: #0066CC;">connect</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://yoursite.com/toYour/zendEndpointAMF/index.php&quot;</span><span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;I was ran!&quot;</span><span style="color: #66cc66;">&#41;</span>;
			nc.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;TwitService.getfriendsTimeline&quot;</span>,resp<span style="color: #66cc66;">&#41;</span>;
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> onResult<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:<span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #66cc66;">&#123;</span>
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;Recieved Object...&quot;</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #808080; font-style: italic;">//userPosts.dataProvider = e.friendsTimeline;</span>
				<span style="color: #000000; font-weight: bold;">var</span> arr:<span style="color: #0066CC;">Array</span> = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
				<span style="color: #b1b100;">for</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>; i <span style="color: #66cc66;">&lt;</span> <span style="color: #0066CC;">e</span>.<span style="color: #006600;">friendsTimeline</span>.<span style="color: #0066CC;">length</span>; i++ <span style="color: #66cc66;">&#41;</span>
				<span style="color: #66cc66;">&#123;</span>
                    <span style="color: #000000; font-weight: bold;">var</span> obj:<span style="color: #0066CC;">Object</span> = <span style="color: #66cc66;">&#123;</span><span style="color: #66cc66;">&#125;</span>;
                    obj.<span style="color: #0066CC;">text</span> =  <span style="color: #0066CC;">e</span>.<span style="color: #006600;">friendsTimeline</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
                    obj.<span style="color: #006600;">from</span> =  <span style="color: #0066CC;">e</span>.<span style="color: #006600;">userTwit</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
					obj.<span style="color: #006600;">pic</span> = <span style="color: #0066CC;">e</span>.<span style="color: #006600;">statusPic</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
&nbsp;
                    arr.<span style="color: #0066CC;">push</span><span style="color: #66cc66;">&#40;</span>obj<span style="color: #66cc66;">&#41;</span>;
				<span style="color: #66cc66;">&#125;</span>
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span><span style="color: #66cc66;">&#41;</span>;
				datagrid.<span style="color: #006600;">dataProvider</span> = arr;
			<span style="color: #66cc66;">&#125;</span>
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> zendPost<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #66cc66;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">var</span> tweetPost:<span style="color: #0066CC;">String</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">String</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
				tweetPost = twitPost.<span style="color: #0066CC;">text</span>;
				nc.<span style="color: #006600;">objectEncoding</span> = ObjectEncoding.<span style="color: #006600;">AMF3</span>;
				nc.<span style="color: #0066CC;">connect</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;http://yoursite.com/toYour/zendEndpointAMF/index.php&quot;</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;I was ran!&quot;</span><span style="color: #66cc66;">&#41;</span>;
				nc.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;TwitService.UserPostUpdate&quot;</span>,resp1,tweetPost<span style="color: #66cc66;">&#41;</span>;
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
			<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> onError<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:<span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #66cc66;">&#123;</span>
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;And the Error is !!!!&quot;</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span><span style="color: #66cc66;">&#41;</span>;
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
		<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&gt;</span>
    <span style="color: #66cc66;">&lt;/</span>mx:Script<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:VBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> minWidth=<span style="color: #ff0000;">&quot;600&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:VBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> minWidth=<span style="color: #ff0000;">&quot;600&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;80%&quot;</span> verticalAlign=<span style="color: #ff0000;">&quot;top&quot;</span> horizontalAlign=<span style="color: #ff0000;">&quot;center&quot;</span><span style="color: #66cc66;">&gt;</span>
    <span style="color: #66cc66;">&lt;</span>mx:DataGrid id=<span style="color: #ff0000;">&quot;datagrid&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> minHeight=<span style="color: #ff0000;">&quot;150&quot;</span> maxHeight=<span style="color: #ff0000;">&quot;200&quot;</span><span style="color: #66cc66;">&gt;</span>
        <span style="color: #66cc66;">&lt;</span>mx:columns<span style="color: #66cc66;">&gt;</span>
            <span style="color: #66cc66;">&lt;</span>mx:DataGridColumn headerText=<span style="color: #ff0000;">&quot;Tweet&quot;</span> dataField=<span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #0066CC;">wordWrap</span>=<span style="color: #ff0000;">&quot;true&quot;</span>  <span style="color: #66cc66;">/&gt;</span>
			 <span style="color: #66cc66;">&lt;</span>mx:DataGridColumn headerText=<span style="color: #ff0000;">&quot;Avatar&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;150&quot;</span> id=<span style="color: #ff0000;">&quot;imgAvatar&quot;</span> itemRenderer=<span style="color: #ff0000;">&quot;mx.controls.Image&quot;</span> dataField=<span style="color: #ff0000;">&quot;pic&quot;</span> <span style="color: #66cc66;">/&gt;</span>
            <span style="color: #66cc66;">&lt;</span>mx:DataGridColumn headerText=<span style="color: #ff0000;">&quot;@user&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;150&quot;</span> dataField=<span style="color: #ff0000;">&quot;from&quot;</span><span style="color: #66cc66;">/&gt;</span>
        <span style="color: #66cc66;">&lt;/</span>mx:columns<span style="color: #66cc66;">&gt;</span>
    <span style="color: #66cc66;">&lt;/</span>mx:DataGrid<span style="color: #66cc66;">&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #66cc66;">&lt;/</span>mx:VBox<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:VBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;100%&quot;</span> verticalAlign=<span style="color: #ff0000;">&quot;top&quot;</span> horizontalAlign=<span style="color: #ff0000;">&quot;center&quot;</span><span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:HBox <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;98%&quot;</span> verticalAlign=<span style="color: #ff0000;">&quot;middle&quot;</span> <span style="color: #0066CC;">height</span>=<span style="color: #ff0000;">&quot;10%&quot;</span> horizontalAlign=<span style="color: #ff0000;">&quot;center&quot;</span><span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:TextArea id=<span style="color: #ff0000;">&quot;twitPost&quot;</span> <span style="color: #0066CC;">width</span>=<span style="color: #ff0000;">&quot;90%&quot;</span> horizontalCenter=<span style="color: #ff0000;">&quot;true&quot;</span> <span style="color: #66cc66;">&gt;&lt;/</span>mx:TextArea<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;</span>mx:<span style="color: #0066CC;">Button</span> x=<span style="color: #ff0000;">&quot;10&quot;</span> y=<span style="color: #ff0000;">&quot;10&quot;</span> label=<span style="color: #ff0000;">&quot;Post&quot;</span> click=<span style="color: #ff0000;">&quot;zendPost()&quot;</span> <span style="color: #66cc66;">/&gt;</span>
	<span style="color: #66cc66;">&lt;/</span>mx:HBox<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;/</span>mx:VBox<span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;/</span>mx:VBox<span style="color: #66cc66;">&gt;</span>
<span style="color: #66cc66;">&lt;/</span>mx:Canvas<span style="color: #66cc66;">&gt;</span></pre></div></div>

<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L2FjdGlvbnNjcmlwdC9Ud2l0dGVyRmxvY2tFeGFtcGxlLnppcA==" target=\"_blank\" title=\"Simple ZendAMF Twitter Gateway\">Code</a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYXF1YVQv" target=\"_blank\" title=\"Simple ZendAMF Twitter Gateway\">Thats it! View the live example here!</a></p>
<p>Other Cool Twitter Mashup links can be found:<br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RlbGljaW91cy5jb20vQnJlbmRvbi5TbWl0aF9TZWFDbG91ZDkvdHdpdHRlcg==" target=\"_blank\" title=\"Twitter MashUPs\"><br />
Twitter MashUp Links</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dvdG9hbmRsZWFybi5jb20v" target=\"_blank\" title=\"Lee Brimelow\"><br />
Don&#8217;t forget to check out Lee Brimelow&#8217;s GotoandLearn AMF video.</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ZyYW1ld29yay56ZW5kLmNvbS8=" title=\"zendFramwork\" target=\"_blank\">Zend framework</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ZyYW1ld29yay56ZW5kLmNvbS9tYW51YWwvZW4vemVuZC5zZXJ2aWNlLnR3aXR0ZXIuaHRtbA==" title=\"zendFramwork\" target=\"_blank\">Zend Services</a> </p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=640" 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%2F2009%2F08%2F03%2Fzendamf-and-the-twitter-api%2F&amp;linkname=ZendAMF%20and%20the%20Twitter%20API"><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/2009/08/03/zendamf-and-the-twitter-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>myUniveRSS goes too Facebook</title>
		<link>http://i-create.org/2009/03/28/myuniverss-goes-too-facebook/</link>
		<comments>http://i-create.org/2009/03/28/myuniverss-goes-too-facebook/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 21:35:51 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[i-create]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=501</guid>
		<description><![CDATA[I have been very busy for at work learning Ruby on Rails.  I have even managed to create a cool facebook application using Ruby on Rails and AS3/Papervision3D feed reader I also utilized facebooker rails plugin. It is currently not open to the public but will be soon.  I still have a few bugs to [...]]]></description>
			<content:encoded><![CDATA[<p>I have been very busy for at work learning <a title=\"Ruby on Rails\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3J1YnlvbnJhaWxzLm9yZy8=" target=\"_blank\">Ruby on Rails</a>.  I have even managed to create a cool facebook application using Ruby on Rails and AS3/<a title=\"PaperVision3D API\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cucGFwZXJ2aXNpb24zZC5vcmcv" target=\"_blank\">Papervision3D</a> feed reader I also utilized <a title=\"facebooker rails&lt;br &gt;&lt;/a&gt;         plugin\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpdGh1Yi5jb20vbW1hbmdpbm8vZmFjZWJvb2tlci90cmVlL21hc3Rlcg==" target=\"_blank\">facebooker rails plugin.</a> It is currently not open to the public but will be soon.  I still have a few bugs to work out it is a little challenging when it comes to RSS/Crossdomain/XML/Flash/RubyOnRails all in one little facebook application.  I have also recently ordered a book <a title=\"flex on rails\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL0ZsZXgtUmFpbHMtQnVpbGRpbmctQXBwbGljYXRpb25zLURldmVsb3BlcnMvZHAvMDMyMTU0MzM3OC9yZWY9cGRfYmJzX3NyXzE/aWU9VVRGOCZhbXA7cz1ib29rcyZhbXA7cWlkPTEyMzgyNzMzNDcmYW1wO3NyPTgtMQ==" target=\"_blank\">Flex on Rails</a>!  I do love the way rails handels REST and XML it is so easy to make applications that can spit out JSON and XML.  With the facebook it is not exactly easy to share ones personal information (what I mean to say is their are limitations to the api and is secure and built this way on purpose to protect users) but I can see now how something like Ruby on Rails + AS3 could be used to generate some very cool social web games.  I do think that the video game models of the past are limited and social networks will open new niches for social/video games that are revenue generated by advertising.  When you think about most facebook applications they are relatively simple although I see more useful applications coming to social networks and I see social networks creating a webOS or webtop.  I will be taking the same application and make it available for wordpress plugin as well.  It is fun and challenging making facebook applications.  I have also been busy working on my next portfolio which I  have been working on for a considerable time.  I am also releasing a commercial site aimed at getting myself some freelance contracts and jobs.  In short I want to code widgets that people want for blogs, iphone/android applications, facebook and Open Social.  I believe there will be a growing need for companies to place their content within other applications that people use not too mention the fact that these  applications are adopted by users much more quickly than traditional applications.  This is not to say that I will stop working on traditional applications.  I will work on interactive web sites and branding sites for clients these web applications will be intuitive for the users to update and be primarily based off of open source stacks.</p>
<p><img title="myUniveRSS will be on facebook soon" src="http://i-create.org/myUniveRSS.jpg" alt="myUniveRSS will be on facebook soon" /></p>
<p>In other news I gave a presentation to the Lincoln .Net user group on Ruby on Rails it went well and I didn&#8217;t stutter too much. Although I did call esb, fsb in a slip (ha ha)  In short we created a simple task list.  You can find the notes and simple example application <a title=\"Zip File Contaning Simple Ruby on Rails ToDo List\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9Eb3ROZXRVc2VyR3JvdXAuemlw" target=\"_blank\">here</a>.</p>
<p>I have also been looking at the new version of Silverlight3 and it does look pretty sweet they have a few pixel shaders and perspective 3D built in now.  I am sure that silverlight3 will be an excellent skill to complement my C# skills.  I hope the Moonlight Project can catch up to where silverlight3 is currently.  I still don&#8217;t think silverlight3 will be as useful as Flex, I guess I just have a prejudice for the Flash Platform.  I really love flash.  I am also looking forward to Flash Catalyst a new product from adobe that will bridge Fireworks / Photoshop directly into Flex which will be great to say the least! I found a cool Netbeans plugin the <a title=\"FlexBean\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NvdXJjZWZvcmdlLm5ldC9wcm9qZWN0cy9mbGV4YmVhbg==" target=\"_blank\">Flexbean </a>and I personally use Netbeans quite a bit on my Ubuntu box I find it extremely helpful when working with Ruby On Rails or whatever language for that matter.</p>
<p><a title=\"Accelerated 3D Web via Khronos/Mozzilla 3D\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5raHJvbm9zLm9yZy9uZXdzL3ByZXNzL3JlbGVhc2VzL2tocm9ub3MtbGF1bmNoZXMtaW5pdGlhdGl2ZS1mb3ItZnJlZS1zdGFuZGFyZC1mb3ItYWNjZWxlcmF0ZWQtM2Qtb24td2ViLw==" target=\"_blank\">Accelerated 3D Web via Khronos/Mozzilla 3D</a> is coming to javascript which should be interesting no question about it javascript is very powerful just very frustrating to behave consistenly in multiple browsers.  This should prove to be interesting and with ie8 now I wonder if ie8 will support it?</p>
<p>Does flash matter on mobile devices?  Yes of course it does this is one feature the iPhone and Windows mobile Flash Lite is wonderful but we want the whole enchilada! <a title=\"Flash going on Android\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pbmZvcm1hdGlvbndlZWsuY29tL25ld3MvcGVyc29uYWxfdGVjaC9zbWFydHBob25lcy9zaG93QXJ0aWNsZS5qaHRtbD9hcnRpY2xlSUQ9MjE2NDAwMzgw" target=\"_blank\">Well it is coming to the Android Platform for sure!</a> It will only be a matter of time before Silverlight follow suit.  If you didn&#8217;t know Microsoft released an iPhone app <a title=\"PhotoSynth\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xpdmVsYWJzLmNvbS9waG90b3N5bnRoLw==" target=\"_blank\">PhotoSynth</a> for those of you who don&#8217;t know photosynth connects multiple pictures of places and displays them in a kind of pseudo panoramic images that are very cool and one can&#8217;t help but think silverlight might not be far behind.</p>
<p>Unity 3D for the iPhone why use it?</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RpYW1vbmR0ZWFyei5vcmcvYmxvZy8yMDA5LzAzLzI2L21pY3Jva2FydC1hbm90aGVyLXVuaXR5LWdhbWUtcmFjZXMtdXAtdGhlLWNoYXJ0cy8=">The numbers speak for themselves people are willing to shell out an arm and a leg for simple racing games Unity3D has been around for awhile and it is developing into a great engine for content on the Wii and iPhone</a>.  This is not the first time I have mentioned this product either.</p>
<p>I have also purchased a book from <a title=\"O'Reilly Head First Design Patterns!\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL0ZpcnN0LURlc2lnbi1QYXR0ZXJucy1FbGlzYWJldGgtRnJlZW1hbi9kcC8wNTk2MDA3MTI0L3JlZj1zcl8xXzI/aWU9VVRGOCZhbXA7YW1wO3M9Ym9va3MmYW1wO2FtcDtxaWQ9MTIzODA3ODU5NyZhbXA7YW1wO3NyPTEtMg==" target=\"_blank\">O&#8217;Reilly Head First Design Patterns!</a> The reason is simple not coming from an OOP  background it has been challenging to teach myself OOP and now that I understand OOP it would be ideal for me to become  familiar with design patterns not just MVC but multiple design patterns. I see this as helping myself out in future jobs.  I will be able to look at most corporate applications and just get it (little less time dedicated to the debugger).  This will help me see what their programmers are doing and know why they have programmed in the manner they have.  This book also sheds lots of light on MVC that is used in many frameworks like <a title=\"pureMVC\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3B1cmVtdmMub3JnLw==" target=\"_blank\">pureMVC</a>, <a title=\"CakePHP\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Nha2VwaHAub3JnLw==" target=\"_blank\">CakePHP</a>, and of course <a title=\"Ruby On Rails\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3J1YnlvbnJhaWxzLm9yZy8=" target=\"_blank\">Rails</a>. is so nice now that spring is finally here!</p>
<p>We are looking forward to going on Taco Ride.  Well Lisa and I have decided to go back to Ireland this summer.  So it should be a fun trip with lots of photos to share with you all.</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYWxwaGEvcGljcy8=" target=\"_blank\"><br />
<img title="St. James Gate Dublin" src="http://i-create.org/Dublin.jpg" alt="St. James Gate Dublin" /><br />
</a></p>
<p>really cool podcasts:</p>
<p><a title=\"FlasherMag\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGFzaGVybWFnLmNvbS8=" target=\"_blank\">FlasherMag</a></p>
<p><a title=\"Railscasts\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3JhaWxzY2FzdHMuY29tLw==" target=\"_blank\">Railscasts</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=501" 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%2F2009%2F03%2F28%2Fmyuniverss-goes-too-facebook%2F&amp;linkname=myUniveRSS%20goes%20too%20Facebook"><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/2009/03/28/myuniverss-goes-too-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision3D 3D Picasa</title>
		<link>http://i-create.org/2009/01/19/papervision3d-3d-picasa/</link>
		<comments>http://i-create.org/2009/01/19/papervision3d-3d-picasa/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 02:05:12 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[MediaRSS AS3 Code Library]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=498</guid>
		<description><![CDATA[I have been busy at work and in my spare time I have been working on redoing my portfolio.  It is my goal to have a new version up soon and I will most likely be removing the old.  Through this process I have increased my knowledge of flex and as3.  I have been displaying [...]]]></description>
			<content:encoded><![CDATA[<p>I have been busy at work and in my spare time I have been working on redoing my portfolio.  It is my goal to have a new version up soon and I will most likely be removing the old.  Through this process I have increased my knowledge of flex and as3.  I have been displaying a few alphas on my blog these will eventually all be rolled into the main application.  So here is yet another alpha.  I have created a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cucGFwZXJ2aXNpb24zZC5vcmcv" target=\"_blank\">Papervision3D</a> RSS parser for Picasa.  Please note on google code you can find a library for AS3 Picasa I choose not to use it because it did not suit my specific needs in this project.  I found an extremely useful library of code that easily allows me to parse out MediaRSS one important thing to point out is because I used picasa not only did I have to parse out the MediaRSS but I had to use<a title=\"as3 File Reference How To\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy50aGVkYW5vc3BoZXJlLmNvbS8yMDA4LzA1L2FzMy1maWxlcmVmZXJlbmNlLWV4YW1wbGUv" target=\"_blank\"> flash file reference</a> to check when the images are loaded.  Another tricky gotcha I found was the fact that Picasa will not allow you to embed pictures that are larger than <a title=\"Read Comment 18 no Images larger than 800px\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGUuZ29vZ2xlLmNvbS9wL2dkYXRhLWlzc3Vlcy9pc3N1ZXMvZGV0YWlsP2lkPTQyMyNjMTk=" target=\"_blank\">800 pixels wide in the flash player</a>.  It took me awhile to discover this the odd thing about this in particular is in FireFox it will load your images and render them but in Chrome, IE, and Safari you will see nothing.  The previously mentioned <a title=\"awesome library for MediaRSS\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy52aWRlby1mbGFzaC5kZS9pbmRleC9hczNzeW5kaWNhdGlvbmxpYi1yc3MtdW5kLWF0b20tZmVlZHMtbWl0LWFjdGlvbnNjcmlwdC0zLXBhcnNlbi8=" target=\"_blank\">MediaRSS</a> parser will also come in handy when writing mashups that interact with youTube (also utilizes MediaRSS). <a title=\"Picasa 3D\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYWxwaGEvcGljcy8=" target=\"_blank\"> I love Picasa and that is why I have chosen to create a 3D version of my Photo Albums</a>. When you click here to see the photo album please note that I have not yet implemented a loader yet.  You can scroll though the images by rolling your mouse wheel.  Please be sure to keep in mind this is only an alpha.</p>
<p><a title=\"Papervision3d Picasa Album\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYWxwaGEvcGljcy8=" target=\"_blank\"><img title="Picasa 3D Alpah" src="/AlphaPicasa3DPic.jpg" alt="Picasa 3D Alpah" width="325" height="340" /></a></p>
<p>This will eventually be incorporated into my new portfolio.  So as you can see I have been very busy. I am also excited to utilize FlashCS4 I love the fact that adobe  has released <a title=\"Pixel Bender\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9waXhlbGJlbmRlci8=" target=\"_blank\">Pixel Bender</a>.  This will make creating filters a snap and you will be able to use them in After Effects, Photoshop, and Flash.  Adobe has also been working on <a title=\"Catalyst Tutorials\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RoZWZsYXNoYmxvZy5jb20vP3A9NjE5" target=\"_blank\">Flash Catalyst</a> formerly Thermo.  I am also excited to see a new application in the flash family.  I believe this will enable designers to easily port their photoshop documents to Flex without having to write any code(which I am sure they will like).  It will also be nice for developers because it is built to directly integrate into the Flex workflow.   Another development worth mentioning is <a title=\"SWXFormat\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3N3eGZvcm1hdC5vcmcv" target=\"_blank\">SWX has released an AS3</a> Version.  So that completely rocks and it makes writing mashups for flash a snap:)  I will be making some of these items flash components and selling them.</p>
<p><a title=\"Papervision3d Picasa Album\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NlYWNsb3VkOS5vcmcvYWxwaGEvcGljcy8=" target=\"_blank\">PaperVision3D Picasa Album Reader Alpha</a><br />
<a title=\"MediaRSS AS3 Library\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy52aWRlby1mbGFzaC5kZS9pbmRleC9hczNzeW5kaWNhdGlvbmxpYi1yc3MtdW5kLWF0b20tZmVlZHMtbWl0LWFjdGlvbnNjcmlwdC0zLXBhcnNlbi8=" target=\"_blank\">MediaRSS AS3 Code Library</a><br />
<a title=\"Pixel Bender Tutorial\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RoZWZsYXNoYmxvZy5jb20vP3A9NDM1" target=\"_blank\">Pixel Bender Tutorial </a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=498" 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%2F2009%2F01%2F19%2Fpapervision3d-3d-picasa%2F&amp;linkname=Papervision3D%203D%20Picasa"><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/2009/01/19/papervision3d-3d-picasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alchemy Its No Myth</title>
		<link>http://i-create.org/2008/11/27/alchemy-its-no-myth/</link>
		<comments>http://i-create.org/2008/11/27/alchemy-its-no-myth/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:26:05 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Nicolas Cannasse]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web applications]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=492</guid>
		<description><![CDATA[The future of web applications lies in the hands of rich internet application developers. The two main platforms of the future will be Adobe Flash/Flex/Air and Silverlight. This should be extremely apparent to most web developers now. Web applications have been evolving more and more to act like desktop applications. In web 2.0 we saw [...]]]></description>
			<content:encoded><![CDATA[<p>The future of web applications lies in the hands of <a title=\"what is a rich internet application?\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9SaWNoX0ludGVybmV0X2FwcGxpY2F0aW9u" target=\"_blank\">rich internet application developers.</a> The two main platforms of the future will be Adobe Flash/Flex/Air and Silverlight.  This should be extremely apparent to most web developers now.  Web applications have been evolving more and more to act like desktop applications.  In web 2.0 we saw many applications that utilize <a title=\"What is AJAX\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9BamF4Xyhwcm9ncmFtbWluZyk=" target=\"_blank\">AJAX</a>.  AJAX should be required for most if not all web applications today because people have come to expect interactions AJAX enables developers to create.  The problem with AJAX lies in the fact that you have to create css, javascript, and xml and then have the browser execute it.  This causes problems because different browsers execute the same code with a variety of results.  The end result to the developer; well I think it was covered in <a title=\"I have no idea what an inferno is?\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9EaXZpbmVfQ29tZWR5" target=\"_blank\">Dante&#8217;s Inferno</a> somewhere around the Ninth Circle of Hell.  It isn’t a pleasant place to be making things work in multiple browsers sucks it’s very difficult it is doable but ads to your production costs.  In comes our savior RIA’s why because they use plugins.  Now you can actually develop an application and expect it to work in a specific manner every time you use it.   Who would have thought?  Adobe flash is by far the most developed RIA platform to date.  <a title=\"Adobes many generous offereing to the community of developers\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29wZW5zb3VyY2UuYWRvYmUuY29tL3dpa2kvZGlzcGxheS9zaXRlL0hvbWU=" target=\"_blank\">Adobe has also made many strides to open source its code and share with the community</a>.  Today there are numerous tools that will allow you to build swf files.</p>
<p><img src="/Alchemy_Its_No_Myth.jpg" alt="Alchemy Its No Myth" /></p>
<p>Recently Adobe announced <a title=\"Adobe Releases Alchemy Turns C/C++ to Gold\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9hbGNoZW15Lw==" target=\"_blank\">Alchemy</a> they have been talking about it for years but it is now out on their labs site for download.  So what is Alchemy it enables the developer to utilize any c/c++ code that is open source and automagically convert it into something more useful an SWC file that can be utilized in flash!  So you can now execute the code in the Flash Player and this of course rocks.  You have already seen people utilizing it and creating games with it like <a title=\"Doom on Alchemy\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hc3ZndXkuY29tLzIwMDgvMTEvYS1mbGFzaC1vZi1kb29tLWFuLWFsY2hlbXktdGhhdC13b3Jrcy5odG1s" target=\"_blank\">Doom</a> in flash.  I think is well worth looking at some of those old c/c++ projects over on sourceforge and experimenting with Alchemy.</p>
<p>Now to be fare they are not the only company to think of a solution like this.  If you look at silverlight you will find that you can utilize the <a title=\"What is the Dynamic Language Runtime?\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9EeW5hbWljX0xhbmd1YWdlX1J1bnRpbWU=" target=\"_blank\">Dynamic Language Runtime</a>(DLR) and this allows developers for the most part to pick and choose their favorite programming language and work with it like ruby, java, or php you get the idea.   At first I must admit I really hated the idea of Silverlight but over the years and after studying the new release I am sold.  I have been working on applications for a new version of my portfolio and I will be utilizing both Silverlight and Flash. One thing I might add about the dynamic language runtime is it is different from Alchemy.  Why?  The dynamic language runtime allows developers to utilize multiple languages in a project when it is done it is sent to the compiler and becomes bytecode.  When you use alchemy you are using LLVM it actually converts the code into AVM2 bytecode.  I would suggest reading <a title=\"Nicolas Cannasse blogs on Alchemy\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25jYW5uYXNzZS5mci9ibG9nL2Fkb2JlX2FsY2hlbXk=" target=\"_blank\">Nicolas Cannasse&#8217;s blog</a> it will give you a clearer perspective at what Alchemy actually is and what it means.  I am anxious to see what Alchemy can do and as a result I have installed in on a virtual Ubuntu machine.   One thing that is nice about the DLR is you can mix different languages into the same project you can also share the same variables across multiple languages while this may not be good for large projects and could generate unmanageable code I can see it coming in handy in a pinch.  One thing I might add about silverlight is I believe that Microsoft is going to port lots of .Net to run in silverlight.</p>
<p>So what platform do you develop for?  I say both.  Everyone loves flash and flash will be on <a title=\"Flash Goes Mobile\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpem1vZG8uY29tLzUwOTI1NzgvYWRvYmUtYXJtLXRlYW1pbmctdXAtdG8tb3B0aW1pemUtZmxhc2gtb24tbW9iaWxlLWRldmljZXM=" target=\"_blank\">ARM</a> devices soon.  It already has Android and Windows Mobile devices.  Adobe engineers will make it work!  For now their seems to be no sign of Apple’s iPhone or iPodTouch devices utilizing flash which really sucks for the user but is evidently good for Steve Jobs.  It seems apple is destined to make the same mistakes over and over again.  What developers really want is to create something once and run it anywhere and everywhere.  Silverlight will soon go mobile too and I would expect them to run into the same issues on apple devices which is a shame for the consumer I guess they will be able to sell more iTunes app this way though.</p>
<p>Thoughts on Alchemy it took sometime to install I had to change the default config file that Alchemy came with for Ubuntu it was looking for the syslinks for <a title=\"What is Low Level Virtual Machine?\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xsdm0ub3JnLw==" target=\"_blank\">LLVM</a> in the wrong spot in short just change the location in the config file than run it also make sure you have all your paths correct in .bashrc once you have these you should be good to go some of the information on the labs website is maybe a little difficult to interpret.  I also found these links (<a title=\"Alchemy has arrived eventually!\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3JjaDg1MC5ibG9nc3BvdC5jb20vMjAwOC8xMS9hbGNoZW15LWhhcy1hcnJpdmVkLWV2ZW50dWFsbHkuaHRtbA==" target=\"_blank\">Alchemy has arrived eventually!</a> And <a title=\"Solution for nothing on Linux\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vY2Z1c2lvbi93ZWJmb3J1bXMvZm9ydW0vbWVzc2FnZXZpZXcuY2ZtP2ZvcnVtaWQ9NzImYW1wO2NhdGlkPTc1NSZhbXA7dGhyZWFkaWQ9MTQwNjcxNCZhbXA7ZW50ZXJ0aHJlYWQ9eQ==" target=\"_blank\">Solution for nothing on Linux</a>)  and they helped solve my problems.   If anyone want I can post my .bashrc and config just let me know.</p>
<p>In other news:<br />
<a title=\"Proce55ing awesome for Data Visualization!\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3Byb2Nlc3Npbmcub3JnLw==">Processing is now out of Beta!</a><br />
You can find books on Processing <a title=\"Processing Books on Amazon\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL3MvcmVmPW5iX3NzX2d3P3VybD1zZWFyY2gtYWxpYXMlM0RhcHMmYW1wO2ZpZWxkLWtleXdvcmRzPXByb2Nlc3NpbmcmYW1wO3g9MCZhbXA7eT0w" target=\"_blank\">here</a>.</p>
<p>Links of Interest:<br />
<a title=\"Download and Get Started with Adobe Alchemy\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3dpa2kvaW5kZXgucGhwL0FsY2hlbXk6RG9jdW1lbnRhdGlvbjpHZXR0aW5nX1N0YXJ0ZWQ=" target=\"_blank\">Alchemy on Adobe Labs</a><br />
<a title=\"Understanding What Adobe Alchemy Is\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hdXRvbWF0YXN0dWRpb3MuY29tLzIwMDgvMTEvMjEvdW5kZXJzdGFuZGluZy1hZG9iZS1hbGNoZW15Lw==" target=\"_blank\">Understanding Adobe Alchemy</a><br />
<a title=\"Nicolas Cannasse Weblogs on Adobe Alchemy\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25jYW5uYXNzZS5mci9ibG9nL2Fkb2JlX2FsY2hlbXk=" target=\"_blank\">Nicolas Cannasse Weblogs on Adobe Alchemy</a><br />
<a title=\"Doom On-Line\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGUuZ29vZ2xlLmNvbS9wL2Rvb21lZG9ubGluZS8=" target=\"_blank\">Doom</a> – <a title=\"PaperQuake\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGUuZ29vZ2xlLmNvbS9wL3BhcGVycXVha2Uv" target=\"_blank\">Quake</a> – <a title=\"How to edit Quake II C/C++ Code in Visual Studio\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jb2RlcHJvamVjdC5jb20vS0IvbWNwcC9xdWFrZTIuYXNweA==">How to edit Quake Code in Visual Studio</a><br />
<a title=\"Reminds of Ruby on Rails\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cueDJvZnJhbWV3b3JrLmNvbS8=" target=\"_blank\">X2O Project </a><br />
<a title=\"Use Visual Studio to Create Flex Projects\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5lbnNlbWJsZS5jb20v" target=\"_blank\">Ensemble</a><br />
<a title=\"Flash Goes Mobile\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpem1vZG8uY29tLzUwOTI1NzgvYWRvYmUtYXJtLXRlYW1pbmctdXAtdG8tb3B0aW1pemUtZmxhc2gtb24tbW9iaWxlLWRldmljZXM=" target=\"_blank\">Flash Goes Mobile</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=492" 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%2F11%2F27%2Falchemy-its-no-myth%2F&amp;linkname=Alchemy%20Its%20No%20Myth"><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/11/27/alchemy-its-no-myth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ScaleNine Skins in Flash Develop3</title>
		<link>http://i-create.org/2008/10/30/using-scalenine-skins-in-flash-develop3/</link>
		<comments>http://i-create.org/2008/10/30/using-scalenine-skins-in-flash-develop3/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 23:45:21 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Develop]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=480</guid>
		<description><![CDATA[Have you ever wanted to use a Scale Nine Skin in your Flash Develop environment? Well its easy. Here is an example you can download. Here are few easy steps to accomplish your goal: Install Flash Develop by Downloading it here. Configure your compiler and download the Flex SDK if you haven&#8217;t yet. Go to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to use a Scale Nine Skin in your Flash Develop environment? Well its easy. Here is an example you can <a title=\"Flash Develop Project Download template that uses ScaleNine\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9teG1sY19Qcm9qZWN0cy56aXA=" target=\"_blank\">download</a>.  Here are few easy steps to accomplish your goal:</p>
<ul>
<li>Install <a title=\"Flash Develop Releases\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGFzaGRldmVsb3Aub3JnL2NvbW11bml0eS92aWV3Zm9ydW0ucGhwP2Y9MTE=" target=\"_blank\">Flash Develop</a> by Downloading it here.</li>
<li>Configure your compiler and download the Flex SDK if you haven&#8217;t yet.</li>
<li>Go to<a title=\"ScaleNine.com Flex Skins\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NjYWxlbmluZS5jb20v" target=\"_blank\"> Scalenine.com</a> find a skin.</li>
<li>Now create a new Flex Project AS3.</li>
<li>Connect all libraries or SWC by adding them to the project.</li>
<li>Go through the css and make sure everything is linked to the correct asset, image, etc.</li>
<li>Copy the MXML in the sample and place it in the Main.mxml of your project.</li>
<li>Now build. It&#8217;s that easy.</li>
</ul>
<p><a title=\"Flash Develop Project Download template that uses ScaleNine\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9teG1sY19Qcm9qZWN0cy56aXA=" target=\"_blank\"><img title="ScaleNine Skin in Flash Develop3" src="/Scale9_Skin_in_FlashDevelop.jpg" alt="" /></a><br />
So now you can examine the template and modify it if you like. It is a fairly painless process and with flash develop you can now see how to use the skin with the default .mxml file. So that should be enough to get you working on building cool interfaces for your flash develop project.  You can see this <a title=\"ScaleNine Skin in Flash Develop Example\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL1NlYUNsb3VkOS5vcmcvZmxleC8=" target=\"_blank\">example here</a> and you can download the flash develop <a title=\"Flash Develop Project Download template that uses ScaleNine\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9teG1sY19Qcm9qZWN0cy56aXA=" target=\"_blank\">project here</a>.</p>
<p>Links of Interest:<br />
<a title=\"Flash Develop Releases\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGFzaGRldmVsb3Aub3JnL2NvbW11bml0eS92aWV3Zm9ydW0ucGhwP2Y9MTE=" target=\"_blank\">Flash Develop</a><br />
<a title=\"ScaleNine.com Flex Skins\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NjYWxlbmluZS5jb20v" target=\"_blank\">ScaleNine</a><br />
<a title=\"Silverlight Skins\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jb2RlcGxleC5jb20vU2lsdmVybGlnaHQ=" target=\"_blank\">Silverlight Skins</a><br />
<a title=\"Flash Develop Project Download template that uses ScaleNine\" href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9teG1sY19Qcm9qZWN0cy56aXA=" target=\"_blank\">Flash Develop Project Files to Download</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=480" 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%2F10%2F30%2Fusing-scalenine-skins-in-flash-develop3%2F&amp;linkname=Using%20ScaleNine%20Skins%20in%20Flash%20Develop3"><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/10/30/using-scalenine-skins-in-flash-develop3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A.vairy interesting site</title>
		<link>http://i-create.org/2008/06/01/avairy-interesting-site/</link>
		<comments>http://i-create.org/2008/06/01/avairy-interesting-site/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 07:05:54 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=461</guid>
		<description><![CDATA[Well if you haven&#8217;t heard that RIA are eventually going to rule the web and the fact that your desktop computer applications are on the cusp of converging on the web than you must be living in hole somewhere without the interent (in that case don&#8217;t read this it doesn&#8217;t concern You). So what the [...]]]></description>
			<content:encoded><![CDATA[<p> Well if you haven&#8217;t heard that <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9SaWNoX0ludGVybmV0X2FwcGxpY2F0aW9u" title=\"about RIA\" target=\"_blank\">RIA</a> are eventually going to rule the web and the fact that your desktop computer applications are on the cusp of converging on the web than you must be living in hole somewhere without the interent (in that case don&#8217;t read this it doesn&#8217;t concern You). So what the hell does that mean well we all know that mobile devices are the next big thing they are all going to communicate with the web and the web will actually host all of your applications. Wouldn&#8217;t it be nice if you didn&#8217;t have to synch your application well thats all going to happen quickly. Everything will be done on the web. How is this possible?? Rich interent applilcation are going to take us there thats how. You can create RIA in a number of ways one might ask well what are these technologies?</p>
<p> RIA Technologies:</p>
<p> <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9BZG9iZV9GbGFzaA==" title=\"About Flash\" target=\"_blank\">Flash</a>/<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9BZG9iZV9GbGV4" title=\"About Flex\" target=\"_blank\">Flex</a><br /> <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9TaWx2ZXJsaWdodA==" title=\"about Silverlight\" target=\"_blank\">SilverLight</a>/<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9Nb29ubGlnaHRfJTI4cnVudGltZSUyOQ==" title=\"about moonlight\" target=\"_blank\">MoonLight</a><br /> <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9BSkFY" title=\"about AJAX\" target=\"_blank\">AJAX</a></p>
<p> Ok so thats nifty. Which one of these technologies should I choose? Well wouldn&#8217;t it be nice if you could have a standarized way of comparing these technologies side by side. Guess what people are out their right now implmenting just that take a look <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jcmFmdHltaW5kLmNvbS9ndWltYXJrLw==" title=\"RIA benchmark\" target=\"_blank\">here</a>. Your next thought is ok what is all of the fps stuff well it simple frames per second. Do you ever notice how your desktop is not a static enviorment. It doesn&#8217;t just sit their you are constantly interacting with it. It&#8217;s animated to give it that Microsoft patened &#8220;WOW&#8221; effect (insert sarcasm where ever). If you are a good student than your next resonable deduction of this brief look at RIA benchmarks is hey that flex/flash is out performing it&#8217;s competitors. So can you give me some examples..</p>
<p> Here is one innovative new application <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2EudmlhcnkuY29tLw==" target=\"_blank\">A.vairy</a> just sit back and contemplate what this is and what it is capable of.</p>
<p><object width="325" height="255"><param name="movie" value="http://www.youtube.com/v/ZaewPQrvsEQ"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ZaewPQrvsEQ" type="application/x-shockwave-flash" wmode="transparent" width="325" height="255"></embed></object></p>
<p> In case you haven&#8217;t heard all of the big players in the game are all in a race to place their applications on the web qucikly. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25ld3MuY25ldC5jb20vODMwMS0xMDc4NF8zLTk5MDM0NDYtNy5odG1s" target=\"_blank\">Adobe</a>, <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5vZmZpY2VsaXZlLmNvbS8=" target=\"_blank\">Microsoft</a>, etc.. are all locked in a race to place their applications on the web. With the help of Moores law you will have small devices everywhere that communicate with the web. Do you know where Apples next fronteir is going to be? <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3B0ZWNoLmFsbHRoaW5nc2QuY29tLzIwMDgwNTIyL2FwcGxlLWRheWRyZWFtaW5nLXJlcG9ydC1wcmVkaWN0cy1tb3ZlLXRvd2FyZC1ob21lLWRldmljZXMv" target=\"_blank\">Your Home.</a> </p>
<p>People also use Flash in particular to generate new and innovative art. For example study the use of flash in <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9HZW5lcmF0aXZlX2FydA==" title=\"about generative art\" target=\"_blank\">generative art</a>:</p>
<p><object width="325" height="255"><param name="movie" value="http://www.youtube.com/v/ievaK2WACTY&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ievaK2WACTY&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="325" height="255"></embed></object><br/>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2pvdC5lcmlrbmF0emtlLmNvbS8=" target=\"_blank\">more art from Eric Natzke</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=461" 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%2F01%2Favairy-interesting-site%2F&amp;linkname=A.vairy%20interesting%20site"><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/01/avairy-interesting-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Open Sources Flex!</title>
		<link>http://i-create.org/2007/04/26/adobe_open_sources_flex/</link>
		<comments>http://i-create.org/2007/04/26/adobe_open_sources_flex/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ActionScript]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Adobe announced today it has plans to make Flex open source.  This will of course help ensure Adobe wins the RIA platform race.  M$ might make silverlight an open source project but I strongly doubt it (they will probably announce how Zunes can now play pac-man).  They have an announcement coming out at MIX.  Adobe already has all the developer tools that integrate well together.  Flex since its release has seen slow adoption.  Now that it is open source it will be sure to be popping up all over the web.   This is great because anyone who has studied or used flex knows it is capable of making extremely intuitive applications that is simply unmatched in any other platform on the web! </p><p><a href="http://labs.adobe.com/wiki/index.php/Flex:Open_Source" target="_blank">Adobe Announces Flex Going Open Source</a><br /><a href="http://ifbin.com/" target="_blank">Open Flex Source Files</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Adobe announced today it has plans to make Flex open source.  This will of course help ensure Adobe wins the RIA platform race.  M$ might make silverlight an open source project but I strongly doubt it (they will probably announce how Zunes can now play pac-man).  They have an announcement coming out at MIX.  Adobe already has all the developer tools that integrate well together.  Flex since its release has seen slow adoption.  Now that it is open source it will be sure to be popping up all over the web.   This is great because anyone who has studied or used flex knows it is capable of making extremely intuitive applications that is simply unmatched in any other platform on the web!</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3dpa2kvaW5kZXgucGhwL0ZsZXg6T3Blbl9Tb3VyY2U=" target=\"_blank\">Adobe Announces Flex Going Open Source</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2lmYmluLmNvbS8=" target=\"_blank\">Open Flex Source Files</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=435" 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%2F26%2Fadobe_open_sources_flex%2F&amp;linkname=Adobe%20Open%20Sources%20Flex%21"><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/26/adobe_open_sources_flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash For Drupal and WordPress</title>
		<link>http://i-create.org/2007/04/24/flash_for_drupal_and_wordpress/</link>
		<comments>http://i-create.org/2007/04/24/flash_for_drupal_and_wordpress/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Anyone who has designed in flash knows first hand what a pleasure it is and how nice the results can be. Flash has come a long way since future splash and it shows. A number of people in the open source community have been developing flash skins for everyones favorite content management systems namely Drupal and WordPress! Drupal recently added Services module with version 5 makes configuration a breeze! </p><p><a href="http://www.adobe.com/devnet/flex/articles/drupal.html" target="_blank">You can find an excellent article by Justin Girard here on how to integrate drupal with Flex using amfphp! </a></p><p><a href="http://sourceforge.net/projects/flash-blog/" target="_blank">For those of you in the wordpress camp you can also enjoy a flash front-end! </a></p><p>Drupal and Wordpress developers have also been working on an extension that integrates the administration featuers directly into firefox with </p><p><a href="http://groups.drupal.org/node/1331">http://groups.drupal.org/node/1331 </a></p><p><a href="http://www.schloebe.de/firefox-extensions/wordpress-helper/#english">http://www.schloebe.de/firefox-extensions/wordpress-helper/#english </a></p><p><a href="https://addons.mozilla.org/en-US/firefox/addon/1730" target="_blank">ScribeFox</a></p><p>Through the use of <a href="http://www.amfphp.org/" target="_blank">amf-php</a> it would also be a good idea to develop an <a href="http://labs.adobe.com/technologies/apollo/%20" target="_blank">Apollo</a> authoring application. </p><p>&#160;</p><p>Side Note on M$ Silver Pile of Poo:</p><p><a href="http://blogs.msdn.com/tims/comments/2150326.aspx" target="_blank">Lets make it simple it is not cross platform otherwise it would support Linux. You don't even get all the advatages of using it if you are an Apple user. It is simply too little too late for microsoft. I personally wish they would stick with their operating system and not bother with creative applications that should be left to the professionals at Adobe. Maybe with their free time they could make ie7 better.. </a></p><p><a href="http://www.adobe.com/products/flash/special/flashanniversary/%20" target="_blank">11Years of Flash</a> - Long Live Flash! </p><p>Other Cool Sites:</p><p><a href="http://blog.papervision3d.org/" target="_blank">PaperVision3d</a><br/> <a href="http://osflash.org/" target="_blank">OSFlash</a><br/><a href="http://www.riaforge.org/" target="_blank">RIAForge</a><br/> </p>]]></description>
			<content:encoded><![CDATA[<p>Anyone who has designed in flash knows first hand what a pleasure it is and how nice the results can be. Flash has come a long way since future splash and it shows. A number of people in the open source community have been developing flash skins for everyones favorite content management systems namely Drupal and WordPress! Drupal recently added Services module with version 5 makes configuration a breeze!</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vZGV2bmV0L2ZsZXgvYXJ0aWNsZXMvZHJ1cGFsLmh0bWw=" target=\"_blank\">You can find an excellent article by Justin Girard here on how to integrate drupal with Flex using amfphp! </a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3NvdXJjZWZvcmdlLm5ldC9wcm9qZWN0cy9mbGFzaC1ibG9nLw==" target=\"_blank\">For those of you in the wordpress camp you can also enjoy a flash front-end! </a></p>
<p>Drupal and WordPress developers have also been working on an extension that integrates the administration featuers directly into firefox with</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dyb3Vwcy5kcnVwYWwub3JnL25vZGUvMTMzMQ==">http://groups.drupal.org/node/1331 </a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zY2hsb2ViZS5kZS9maXJlZm94LWV4dGVuc2lvbnMvd29yZHByZXNzLWhlbHBlci8jZW5nbGlzaA==">http://www.schloebe.de/firefox-extensions/wordpress-helper/#english </a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cHM6Ly9hZGRvbnMubW96aWxsYS5vcmcvZW4tVVMvZmlyZWZveC9hZGRvbi8xNzMw" target=\"_blank\">ScribeFox</a></p>
<p>Through the use of <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWZwaHAub3JnLw==" target=\"_blank\">amf-php</a> it would also be a good idea to develop an <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9hcG9sbG8vJTIw" target=\"_blank\">Apollo</a> authoring application.</p>
<p>Side Note on M$ Silver Pile of Poo:</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2dzLm1zZG4uY29tL3RpbXMvY29tbWVudHMvMjE1MDMyNi5hc3B4" target=\"_blank\">Lets make it simple it is not cross platform otherwise it would support Linux. You don&#8217;t even get all the advatages of using it if you are an Apple user. It is simply too little too late for microsoft. I personally wish they would stick with their operating system and not bother with creative applications that should be left to the professionals at Adobe. Maybe with their free time they could make ie7 better.. </a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hZG9iZS5jb20vcHJvZHVjdHMvZmxhc2gvc3BlY2lhbC9mbGFzaGFubml2ZXJzYXJ5LyUyMA==" target=\"_blank\">11Years of Flash</a> &#8211; Long Live Flash!</p>
<p>Other Cool Sites:</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cucGFwZXJ2aXNpb24zZC5vcmcv" target=\"_blank\">PaperVision3d</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29zZmxhc2gub3JnLw==" target=\"_blank\">OSFlash</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5yaWFmb3JnZS5vcmcv" target=\"_blank\">RIAForge</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=434" 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%2F24%2Fflash_for_drupal_and_wordpress%2F&amp;linkname=Flash%20For%20Drupal%20and%20WordPress"><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/24/flash_for_drupal_and_wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FC64</title>
		<link>http://i-create.org/2006/09/05/fc64/</link>
		<comments>http://i-create.org/2006/09/05/fc64/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[--Site-of-the-Week--]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p><a href="http://codeazur.com.br/stuff/fc64_final/" target="_blank"><img src="/fc64.jpg" border="0" alt="" width="300" height="185" /></a></p> <p>Why because an <a href="http://osflash.org/fc64" target="_blank">open source commodore 64</a> emulator is way cool (after all it was a <a href="http://www.flashforwardconference.com/finalists" target="_blank">flashforward</a> finalist this year). <a href="http://www.darronschall.com/weblog/" target="_blank">Darron Schall</a> and <a href="http://wahlers.com.br/claus/blog/" target="_blank">Claus Wahlers</a>.out did themselves with this creation that utilizes the flash 9 player and flex 2! I highly recommend <a href="http://codeazur.com.br/stuff/fc64_final/" target="_blank">checking it out</a> after all it is open source so at least you can see what makes it tick! Flex 2 has a great deal to offer developers. The over all strategy for Adobe right now is to enable developers to create highly dynamic applications that are for the most part operating system free. </p> ]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGVhenVyLmNvbS5ici9zdHVmZi9mYzY0X2ZpbmFsLw==" target=\"_blank\"><img src="/fc64.jpg" border="0" alt="" width="300" height="185" /></a></p>
<p>Why because an <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29zZmxhc2gub3JnL2ZjNjQ=" target=\"_blank\">open source commodore 64</a> emulator is way cool (after all it was a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGFzaGZvcndhcmRjb25mZXJlbmNlLmNvbS9maW5hbGlzdHM=" target=\"_blank\">flashforward</a> finalist this year). <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5kYXJyb25zY2hhbGwuY29tL3dlYmxvZy8=" target=\"_blank\">Darron Schall</a> and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dhaGxlcnMuY29tLmJyL2NsYXVzL2Jsb2cv" target=\"_blank\">Claus Wahlers</a>.out did themselves with this creation that utilizes the flash 9 player and flex 2! I highly recommend <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NvZGVhenVyLmNvbS5ici9zdHVmZi9mYzY0X2ZpbmFsLw==" target=\"_blank\">checking it out</a> after all it is open source so at least you can see what makes it tick! Flex 2 has a great deal to offer developers. The over all strategy for Adobe right now is to enable developers to create highly dynamic applications that are for the most part operating system free.</p>
<p><!--break--></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=327" 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%2F09%2F05%2Ffc64%2F&amp;linkname=FC64"><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/09/05/fc64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash &amp; Flex Source Files</title>
		<link>http://i-create.org/2006/08/04/flash__flex_source_files/</link>
		<comments>http://i-create.org/2006/08/04/flash__flex_source_files/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[--Site-of-the-Week--]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Apollo]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p><a href="http://www.ifbin.com/" target="_blank"><img src="/ifbin.jpg" border="0" alt="" width="350" height="111" /></a></p>  <p>This week site of the week is a tie between <a href="http://www.ifbin.com/" target="_blank">IFBIN</a> and <a href="http://www.mtasc.org/" target="_blank">MTASC</a> (Motion Twin). The <a href="http://www.ifbin.com/" target="_blank">ifBin</a> is an excellent resource for flash developers there is a considerable amount of code to learn from, it also happens to be one of the only areas on the web where you can <a href="http://www.ifbin.com/" target="_blank">download source files for Flex projects</a>. If you are a developer I strongly encourage anyone learning Flex or Flash to dig through the <a href="http://www.ifbin.com/" target="_blank">ifBin</a> and see what you can find. The <a href="http://www.ifbin.com/" target="_blank">ifBin</a> has some pretty neat projects like a FLEX news aggregator that is cool. This site also used to charge a $250 membership fee; now you can receive all the projects for free!! <a href="http://www.mtasc.org/" target="_blank">Motion Twin is an action script library open source compiler</a>. This means you can create .swf by simply writing the code and compiling it. This is great if you know exactly what you want to do and can code it. I am also interested to see if anyone tries to create a gui for it and then it would be great but one thing at a time is fine with me! The bottom line is both of these sites are worth your time so check them out. <a href="/ifbin.html" target="_blank">Click Here for ifbin in aciton? </a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\"><img src="/ifbin.jpg" border="0" alt="" width="350" height="111" /></a></p>
<p>This week site of the week is a tie between <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\">IFBIN</a> and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5tdGFzYy5vcmcv" target=\"_blank\">MTASC</a> (Motion Twin). The <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\">ifBin</a> is an excellent resource for flash developers there is a considerable amount of code to learn from, it also happens to be one of the only areas on the web where you can <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\">download source files for Flex projects</a>. If you are a developer I strongly encourage anyone learning Flex or Flash to dig through the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\">ifBin</a> and see what you can find. The <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZmJpbi5jb20v" target=\"_blank\">ifBin</a> has some pretty neat projects like a FLEX news aggregator that is cool. This site also used to charge a $250 membership fee; now you can receive all the projects for free!! <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5tdGFzYy5vcmcv" target=\"_blank\">Motion Twin is an action script library open source compiler</a>. This means you can create .swf by simply writing the code and compiling it. This is great if you know exactly what you want to do and can code it. I am also interested to see if anyone tries to create a gui for it and then it would be great but one thing at a time is fine with me! The bottom line is both of these sites are worth your time so check them out. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L2lmYmluLmh0bWw=" target=\"_blank\">Click Here for ifbin in aciton? </a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=321" 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%2F08%2F04%2Fflash__flex_source_files%2F&amp;linkname=Flash%20%26%23038%3B%20Flex%20Source%20Files"><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/08/04/flash__flex_source_files/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>
