<?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"
	>

<channel>
	<title>subobjective21 interactive</title>
	<atom:link href="http://flash.subobjective21.org/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://flash.subobjective21.org/wp</link>
	<description>Interactive discoveries and notes</description>
	<pubDate>Thu, 02 Oct 2008 02:51:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Adobe media player cache location.</title>
		<link>http://flash.subobjective21.org/wp/2008/08/21/adobe-media-player-cache-location/</link>
		<comments>http://flash.subobjective21.org/wp/2008/08/21/adobe-media-player-cache-location/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 12:57:20 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/?p=44</guid>
		<description><![CDATA[With the flex 360 videos that are being posted on Adobe Media player (AMP) I queued quite a bunch of file and let it run over night. I woke up to find my main hard-drive was full. Searching for methods of deleting these files proved unsuccessful. 
As I was working on some air apps I [...]]]></description>
			<content:encoded><![CDATA[<p>With the flex 360 videos that are being posted on Adobe Media player (AMP) I queued quite a bunch of file and let it run over night. I woke up to find my main hard-drive was full. Searching for methods of deleting these files proved unsuccessful. </p>
<p>As I was working on some air apps I remember running across the folder where the user specific data is saved and went hunting..</p>
<p>C:\Users\<username>\AppData\Roaming\Adobe\Adobe Media Player\Local Store\cache<br />
(this is on Vista 64bit)<br />
It would be in a similar path on the mac.<br />
I just went in and nuked the folders at this location and freed up a ton of space. </p>
<p>Now I&#8217;ll go through and watch them a few at a time.</p>
<p>Looks like AMP is missing a vital trashcan icon in a few key places.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/08/21/adobe-media-player-cache-location/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with multiple 3D objects with precise interaction.</title>
		<link>http://flash.subobjective21.org/wp/2008/07/03/working-with-multiple-3d-objects-with-precise-interaction/</link>
		<comments>http://flash.subobjective21.org/wp/2008/07/03/working-with-multiple-3d-objects-with-precise-interaction/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 03:44:32 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[3d]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/?p=42</guid>
		<description><![CDATA[The folks over at blitz and at papervision2 have come up with some interesting ways to actually have real interaction with the MovieClips you are texturing your models with.
The quick is that you always use MovieMaterials(created with a reference to an existing movieclip someplace on stage). Normally the MovieMaterial object can be offstage or even [...]]]></description>
			<content:encoded><![CDATA[<p>The folks over at <a href="http://labs.blitzagency.com/?p=315" onclick="javascript:pageTracker._trackPageview ('/outbound/labs.blitzagency.com');">blitz</a> and at <a href="http://papervision2.com/advanced-interactivity-2/" onclick="javascript:pageTracker._trackPageview ('/outbound/papervision2.com');">papervision2</a> have come up with some interesting ways to actually have real interaction with the MovieClips you are texturing your models with.</p>
<p>The quick is that you always use MovieMaterials(created with a reference to an existing movieclip someplace on stage). Normally the MovieMaterial object can be offstage or even visible=false to not see the clip; thing is they use visible=true, alpha=0 and reposition the clip actually under the mouse. A bit of trickery has the user actually interacting with the 2d flat MovieMaterial.</p>
<p>One of the nice things about this is that you can also do some testing and creating of  functionality of your MovieClips as flat 2d objects and then map them to another object.</p>
<p>In creating an app with multiple panels in a 3D space every panel needs to be attached to the stage and then used to map onto your objects. This is fine when its just one object. When there are multiple surfaces that need interactivity this can quickly get out of control. </p>
<p>If you are using puremvc or caringorn to build your app you are used to creating a view/ui class that represents the specific element as a whole, it needs to have two elements, the stage texture version and the display3d object. </p>
<p>Ok cool. Just take a step back so that your view consists of two ui elements. Your mediators/viewhelpers can then access both elements and update them appropriately.</p>
<p>Wait what if we have multiple panels with the same textures? Looks like there are two options. </p>
<ol>
<li>Use the same texture/ the same reference to the movieclip on stage and use the target of the object to figure out what object you are on(requires dynamic naming of the display objects you are using so they can be keyed in later to access the specific class). You can take advantage of the InteractiveEvent3D event which includes the DisplayObject3D element that is interacted with. </li>
<li>Use a separate instance of each texture on the stage so that it can be targeted separately for each individual item. This also needs to be dynamically named so that they do not overwrite any other textures. Destroy methods then need to make sure they clean up these 2d objects in addition to the 3d counterparts.
</ol>
<p>I also found that its a good idea to add some code that listens for the mouse to be off the given object and send the stage texture off stage and hidden. The example from blitz I found I could still click on an element even though my mouse wasn&#8217;t on the object.</p>
<p>Thanks to those guys for the hook ups of the advanced interactive elements.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/07/03/working-with-multiple-3d-objects-with-precise-interaction/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tip for searching pv3d help.</title>
		<link>http://flash.subobjective21.org/wp/2008/07/03/tip-for-searching-pv3d-help/</link>
		<comments>http://flash.subobjective21.org/wp/2008/07/03/tip-for-searching-pv3d-help/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 03:43:59 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/?p=43</guid>
		<description><![CDATA[If you are interested in adding papervision3d to your project like me you&#8217;ll find that there is a little missing in the documentation. Why because they are sooo active in making improvements its hard to keep valid documentation up to date. (At a recent conference I heard there is a book slated to be worked [...]]]></description>
			<content:encoded><![CDATA[<p>If you are interested in adding papervision3d to your project like me you&#8217;ll find that there is a little missing in the documentation. Why because they are sooo active in making improvements its hard to keep valid documentation up to date. (At a recent conference I heard there is a book slated to be worked on when the new version of pv3d comes out for flash player 10)</p>
<p>Ok, so the documentation is sometimes a little sketchy, or a little old, or nonexistant. How do you get help? <a href="http://osflash.org/mailman/listinfo/papervision3d_osflash.org" onclick="javascript:pageTracker._trackPageview ('/outbound/osflash.org');">Sign up for the papervision newsletter.</a> I&#8217;d select the daily digest that compacts the emails into larger emails that have multiple responses. Make sure you have plenty of inbox space and a filter to folder it because man it gets a lot of traffic. I feel a bit silly asking a question I&#8217;m sure has been asked before and generating even more traffic through everyone&#8217;s inboxes. I find that this little tip very handy.</p>
<p>Thanks to <a href="http://www.google.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.google.com');">google</a> you can use the site specific search function to limit your search to just the <a href="http://osflash.org/pipermail/papervision3d_osflash.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/osflash.org');">papervision archive</a>. You can also use this to same search syntax to perform sub searches of any domain. Those google guys are always thinking(of course this has been around for quite some time).</p>
<p>I have a bookmark to this <a href="http://www.google.com/search?hl=en&#038;q=site%3Ahttp%3A%2F%2Fosflash.org%2Fpipermail%2Fpapervision3d_osflash.org&#038;btnG=Search" onclick="javascript:pageTracker._trackPageview ('/outbound/www.google.com');">specific google query</a><br />
that starts me out searching the entire archive. Then I just add on additional elements in the search box, space delimited of course, and I&#8217;m off and running. No more sifting though pages and pages of countless papervision digests of emails.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/07/03/tip-for-searching-pv3d-help/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Datavis: progression of nations over time.</title>
		<link>http://flash.subobjective21.org/wp/2008/05/11/datavis-progression-of-nations-over-time/</link>
		<comments>http://flash.subobjective21.org/wp/2008/05/11/datavis-progression-of-nations-over-time/#comments</comments>
		<pubDate>Mon, 12 May 2008 02:32:09 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[1]]></category>

		<category><![CDATA[datavis]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/?p=40</guid>
		<description><![CDATA[This is some pretty interesting datavis over time. From where else? TED of course. 
gapminder/
]]></description>
			<content:encoded><![CDATA[<p>This is some pretty interesting datavis over time. From where else? TED of course. </p>
<p><a href="http://www.gapminder.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.gapminder.org');">gapminder/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/05/11/datavis-progression-of-nations-over-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Interesting service: jott</title>
		<link>http://flash.subobjective21.org/wp/2008/05/10/interesting-service-jott/</link>
		<comments>http://flash.subobjective21.org/wp/2008/05/10/interesting-service-jott/#comments</comments>
		<pubDate>Sat, 10 May 2008 20:37:23 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[internet services]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2008/05/10/interesting-service-jott/</guid>
		<description><![CDATA[Jott allows a vocal interface to a service that converts voice to text. Using this service you can do things like perform queries, setup notes/reminders, email people, blog; all from your phone. I saw someone else had used this on their blog and it seemed cool, a little odd that you could hear what they [...]]]></description>
			<content:encoded><![CDATA[<p>Jott allows a vocal interface to a service that converts voice to text. Using this service you can do things like perform queries, setup notes/reminders, email people, blog; all from your phone. I saw someone else had used this on their blog and it seemed cool, a little odd that you could hear what they said.</p>
<p><a href="http://jott.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/jott.com');">jott/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/05/10/interesting-service-jott/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AS3 Automated value object class creation tool</title>
		<link>http://flash.subobjective21.org/wp/2008/05/10/as3-automated-value-object-class-creation-tool/</link>
		<comments>http://flash.subobjective21.org/wp/2008/05/10/as3-automated-value-object-class-creation-tool/#comments</comments>
		<pubDate>Sat, 10 May 2008 20:34:00 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[code junkie]]></category>

		<category><![CDATA[air]]></category>

		<category><![CDATA[automation]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2008/05/10/as3-automated-value-object-class-creation-tool/</guid>
		<description><![CDATA[Interesting little air app for automating the creation of vo classes in as3. 
Value-object-creator
]]></description>
			<content:encoded><![CDATA[<p>Interesting little air app for automating the creation of vo classes in as3. </p>
<p><a href="http://www.dgrigg.com/post.cfm/10/17/2007/Value-object-creator" onclick="javascript:pageTracker._trackPageview ('/outbound/www.dgrigg.com');">Value-object-creator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2008/05/10/as3-automated-value-object-class-creation-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FF2007: day 3: Adobe Media Player, changing video delivery.</title>
		<link>http://flash.subobjective21.org/wp/2007/09/23/ff2007-day-3-adobe-media-player-changing-video-delivery/</link>
		<comments>http://flash.subobjective21.org/wp/2007/09/23/ff2007-day-3-adobe-media-player-changing-video-delivery/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 23:32:38 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[conferences]]></category>

		<category><![CDATA[internet services]]></category>

		<category><![CDATA[nifty tech]]></category>

		<category><![CDATA[air]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2007/09/23/ff2007-day-3-adobe-media-player-changing-video-delivery/</guid>
		<description><![CDATA[The presentation on the Adobe Media Player (AMP) was pretty hot. It may not sound exciting, yey another media player. Well this could change the way media is delivered. When 134 million internet users watch over 9 billion videos, and these people compose around 75% of the US population you can see the impact of [...]]]></description>
			<content:encoded><![CDATA[<p>The presentation on the Adobe Media Player (AMP) was pretty hot. It may not sound exciting, yey another media player. Well this could change the way media is delivered. When 134 million internet users watch over 9 billion videos, and these people compose around 75% of the US population you can see the impact of these numbers. That puts an average of 181 minutes(over 3 hours) in an average of 68 clips per month. People are not watching long videos, probably around 3-5 minutes each. That is a huge chance for content owners to deliver their media. Its big (the numbers above were gathered by the com score July 2007 report). </p>
<p>People are changing the way they watch video. They are bringing it into their world on their timeline. Tivo and downloads allow viewers to skip advertising and watch it all on their own terms.</p>
<p>Here&#8217;s the low down. </p>
<p>AMP is <a href="http://labs.adobe.com/technologies/air/" onclick="javascript:pageTracker._trackPageview ('/outbound/labs.adobe.com');">AIR powered</a>. Desktop hotness, that means its fueled with some mysql lite database power. It allows you to take your online resources offline.</p>
<p>What do the content lists look like? The content blocks are SMIL 2.1 format, so its not reinventing a new wheel, just expounding on an old one.</p>
<p>Does it support the playing local flv files? Sure does. Eventually I could see it supporting local playlists.</p>
<p>Does it support other encodings than flv? not at the moment. Seems like the new addition of the H.264 codec may make it in as AIR continues to </p>
<p>When&#8217;s it coming out? The adobe rep mentioned to watch for some announcements centered around the next <a href="http://www.adobe.com/events/max/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.adobe.com');">MAX conference</a> When its released its going to be an alpha release, and of course as AIR is still in beta, AIR will need to be flushed out fully before AMP moves to beta.</p>
<p>What kind of ads will it allow? Pre, post, and mid roll advertisements, multiple sizes of banners, and ads that can appear over the video. Yes, thats a ton of options for ad delivery. I&#8217;m hoping that providers wont over use these abilities. The ads will be able to be downloaded and cached for offline viewing. All the metrics from ad delivery is going to sync next time the viewer goes online. There&#8217;s also a full screen mode that will still take advantage of the ad delivery system, primarily delivering bug ads over the video, but potentially also banners. Its supposed to support time sensitive ads too, it someone is viewing a video offline and an ad expires because its a time sensitive ad, it will stop being delivered, no point in advertising for the super bowl after its over.</p>
<p>What about content integrity? They have encryption that allows encryption of ads and video streams to keep the video from being ripped off and uploaded to other sites. I&#8217;m sure its a matter of time before it gets hacked, but its better then is available now. It will also keep ads from being removed. The fact that this is included, sucks for viewers that simply don&#8217;t want to see ads, but in the end its the ads that are making possible &#8220;free&#8221; video. If broadcasters can be assured their viewers are getting ads, they will be more likely to deliver media this way. I don&#8217;t believe that Windows Media Player or Quicktime player currently support advertisements, so thats a huge thing thats going to drive content owners to AMP as a media delivery platform.</p>
<p>Live streaming? Eventually it will probably have abilities to pull down live feeds, but first release is only going to do so much.</p>
<p>Download to rent? Download to own? Not yet, but there are plans. There&#8217;s also word of a set top box bringing internet tv to the living room; a combatant to the apple tv box.</p>
<p>Closed captioning? Yups, I believe its using the new captioning component in flash 9 to deliver the captions. I&#8217;m not sure if you have to embed the captions in the video with time points, or if its externalized in an XML feed.</p>
<p>What kind of places are hooking up with AMP? <a href="http://www.maven.net/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.maven.net');">Maven</a> and <a href="http://www.brightcove.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.brightcove.com');">brightcove</a> are just two examples, from what I heard, large broadcasting companies are also on board, more news at MAX.</p>
<p>What&#8217;s it cost to use AMP? It costs the viewer nothing to download the player(once its available). It costs a content owner nothing if they don&#8217;t want to have ads, just use it to delivery content. Of course ad delivery and the content encryption are going to be services that people will pay for or servers they&#8217;ll need to own/leverage, most likely <a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200709/090607FMS.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.adobe.com');">FMS 3.0 servers</a>(probably more on the new release at MAX).</p>
<p>Who do I contact for more answers about all this? jen@adobe.com. She gave the presentation, but didn&#8217;t have the ability to share a ton. She did seem to hint that the MAX conference would potentially see additional information. More information to be available after AMP is available in alpha/beta.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2007/09/23/ff2007-day-3-adobe-media-player-changing-video-delivery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FF2007: day 1: Profiler for flexbuilder.</title>
		<link>http://flash.subobjective21.org/wp/2007/09/19/profiler-for-flexbuilder/</link>
		<comments>http://flash.subobjective21.org/wp/2007/09/19/profiler-for-flexbuilder/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 14:28:36 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[conferences]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2007/09/19/profiler-for-flexbuilder/</guid>
		<description><![CDATA[One of the huge things that was amazing to see demo&#8217;d was the profiler element of flexbuilder. I&#8217;ve heard about it, read some postings, and have been playing around with it a tad. Its pure hotness.
The profiler lets you see at any point whats actually happening in your application. Variable and method stack. Everything currently [...]]]></description>
			<content:encoded><![CDATA[<p>One of the huge things that was amazing to see demo&#8217;d was the profiler element of flexbuilder. I&#8217;ve heard about it, read some postings, and have been playing around with it a tad. Its pure hotness.</p>
<p>The profiler lets you see at any point whats actually happening in your application. Variable and method stack. Everything currently in memory and a memory profile of the lifetime of your application. Its such a huge addition. I&#8217;m totally pumped to see what the improvements to the debugger have been made. If anyone&#8217;s used the flash debugger you know its been a pain in the past. I heard they were looking to make updates to the debugger. Just the addition of the profiler has been amazing.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2007/09/19/profiler-for-flexbuilder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FF2007: day 1: Wednesday Keynote.</title>
		<link>http://flash.subobjective21.org/wp/2007/09/19/wednesday-keynote/</link>
		<comments>http://flash.subobjective21.org/wp/2007/09/19/wednesday-keynote/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 14:25:26 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[conferences]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2007/09/19/wednesday-keynote/</guid>
		<description><![CDATA[Just had the Wednesday keynote with Kevin Lynch. Nothing gets you pumped up about flash than hearing about it from the source.
They discussed the massive improvements of the new flash player, the incorporation of the H.264 codec. Real HD video and hardware support. 
They discussed the endeavors Adobe is taking to make everything opensourced.
Joshua Hirsch [...]]]></description>
			<content:encoded><![CDATA[<p>Just had the Wednesday keynote with Kevin Lynch. Nothing gets you pumped up about flash than hearing about it from the source.</p>
<p>They discussed the massive improvements of the new flash player, the incorporation of the H.264 codec. Real HD video and hardware support. </p>
<p>They discussed the endeavors Adobe is taking to make everything opensourced.</p>
<p>Joshua Hirsch from <a href="http://www.bigspaceship.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.bigspaceship.com');">Big Spaceship</a> showed the <a href="http://www.hbovoyeur.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.hbovoyeur.com');">HBO voyeur piece</a>. It&#8217;s impressive, I&#8217;ve seen it before. but it was cool to hear about their implementation using papervision for the city scape. The loading strategy for all the video seems like it would be pretty intense, unless it was treated as one large video. (It ended up being a a single 56mb video, 5minutes)</p>
<p>They discussed the <a href="http://www.adobe.com/go/air/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.adobe.com');">AIR platform</a> and how bad-ass that is. Real-time editing of images, audio mixing, and output of those files. There was a cool streaming audio player and a real time document editor. I see one of the next things AIR developers are going to see as a headache are picking apart file formats, or coming up with their own formats for saving a production file. Saving out an mp3 or a jpg is hot, but you need to be able to come back and edit. Perhaps we&#8217;ll see the further emergence of open file standards. Seems like these are some examples, perhaps more real applications would utilize that kind of system. Some of the applications were previously unreleased.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2007/09/19/wednesday-keynote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integration of 3rd party tools</title>
		<link>http://flash.subobjective21.org/wp/2007/07/29/integration-of-3rd-party-tools/</link>
		<comments>http://flash.subobjective21.org/wp/2007/07/29/integration-of-3rd-party-tools/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 02:04:56 +0000</pubDate>
		<dc:creator>nfrank</dc:creator>
		
		<category><![CDATA[internet services]]></category>

		<category><![CDATA[project workflow]]></category>

		<guid isPermaLink="false">http://flash.subobjective21.org/wp/2007/07/29/integration-of-3rd-party-tools/</guid>
		<description><![CDATA[I was reading the book &#8220;Getting Real&#8221; from 37 signals and saw a quote from the guys that made campaign monitor. It seems like a really cool application.
Recently I find myself in the midst of the question build or buy when it comes to client apps.

Its interesting to experience creating systems no longer completely from [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading the book &#8220;<a href="http://gettingreal.37signals.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/gettingreal.37signals.com');">Getting Real</a>&#8221; from 37 signals and saw a quote from the guys that made <a href="http://www.campaignmonitor.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.campaignmonitor.com');">campaign monitor</a>. It seems like a really cool application.</p>
<p>Recently I find myself in the midst of the question build or buy when it comes to client apps.<br />
<span id="more-29"></span><br />
Its interesting to experience creating systems no longer completely from scratch, but rather to integrate one or more solid systems that already exists. I&#8217;ve recently thought a bunch about third party tools integration. Look at <a href="http://www.google.com/analytics/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.google.com');">google analytics</a>. Look at <a href="http://www.basecamphq.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.basecamphq.com');">basecamp</a>. Look at <a href="http://www.campaignmonitor.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.campaignmonitor.com');">campaign monitor</a>. Sure they all seem like things that I could build they seem awfully simple. Simple by definition. There&#8217;s a ton of stuff going on there, but its simple to use.</p>
<p>Integrating third party tools can take a lot of work, learning overhead. How can I decide if this tool is worth learning? Looking at the Getting Real book makes a bunch of sense. If it looks complicated then integrating it is going to be complicated.</p>
<p>In the meantime I&#8217;m going to keep my eyes open for clear api&#8217;s and third party tools that seem simple to integrate.</p>
]]></content:encoded>
			<wfw:commentRss>http://flash.subobjective21.org/wp/2007/07/29/integration-of-3rd-party-tools/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
