<?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>No.inc Blog</title>
	<atom:link href="http://blog.noinc.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.noinc.com</link>
	<description>Thoughts, Ideas, Notes, Stuff</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:24:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Formatting Numbers in AS3 / Flex</title>
		<link>http://blog.noinc.com/2010/07/15/formatting-numbers-in-as3-flex/</link>
		<comments>http://blog.noinc.com/2010/07/15/formatting-numbers-in-as3-flex/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 18:06:40 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=501</guid>
		<description><![CDATA[A quick google search of this topic yields, pages and pages of people rolling their own number formatting functions.
Everyone has their own little tweaks to their function. Isn&#8217;t there a built in function to do something so trivial ?
Yes, it&#8217;s the NumberFormatter class, Why does nobody talk about how to use the NumberFormatter class that [...]]]></description>
			<content:encoded><![CDATA[<p>A quick google search of this topic yields, pages and pages of people rolling their own number formatting functions.</p>
<p>Everyone has their own little tweaks to their function. Isn&#8217;t there a built in function to do something so trivial ?</p>
<p>Yes, it&#8217;s the NumberFormatter class, Why does nobody talk about how to use the <a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/formatters/NumberFormatter.html">NumberFormatter </a>class that has been around since Flash 9/CS3 Era ?</p>
<p>I&#8217;m not sure, but if you don&#8217;t want to roll your own here is some example code to get you started.</p>
<p><a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/formatters/NumberFormatter.html">Adobe&#8217;s website</a> gives you instructions on how to use it in a more flex style manner, if you want a pure as3 example.</p>
<pre>// Import the class
</pre>
<pre>import mx.formatters.NumberFormatter;</pre>
<pre>
</pre>
<pre>function somefunction(value:Number):void</pre>
<pre>{</pre>
<pre>  // Initialize the NumberFormatter Object
</pre>
<pre>  var fmt:NumberFormatter = new NumberFormatter();</pre>
<pre>  var formattedString:String;</pre>
<pre>  // Set some of the options available
</pre>
<pre>  fmt.precision = 2;
  fmt.useThousandsSeparator = true;</pre>
<pre>  // Format our value and return a formatted string
</pre>
<pre>  formattedString = fmt.format(value);</pre>
<pre>  // Do something with our newly formatted string
</pre>
<pre>  someobject.sometextfield.text = formattedString;
</pre>
<pre>}
</pre>
<p>Works like a champ.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/07/15/formatting-numbers-in-as3-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mechanic Center Graphics</title>
		<link>http://blog.noinc.com/2010/05/21/mechanic-center-graphics/</link>
		<comments>http://blog.noinc.com/2010/05/21/mechanic-center-graphics/#comments</comments>
		<pubDate>Fri, 21 May 2010 15:06:49 +0000</pubDate>
		<dc:creator>Andy Spangler</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Baltimore]]></category>
		<category><![CDATA[Downtown]]></category>
		<category><![CDATA[Mechanic Theater]]></category>
		<category><![CDATA[Signage]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=493</guid>
		<description><![CDATA[We are finishing up a project with the Downtown Partnership that helps envision the new changes that are happening around the old Mechanic Theater.
The area will be undergoing some heavy construction and right now all the shops are closed and boarded up. The new window graphics really help to get rid of the eyesore of [...]]]></description>
			<content:encoded><![CDATA[<p>We are finishing up a project with the <a href="http://www.godowntownbaltimore.com/">Downtown Partnership</a> that helps envision the new changes that are happening around the old Mechanic Theater.</p>
<p>The area will be undergoing some heavy construction and right now all the shops are closed and boarded up. The new window graphics really help to get rid of the eyesore of broken glass and plywood.</p>
<p>While I was shooting these pictures there were a lot of people walking buy checking out the pictures and trying to fugure out where all these new shops will go.</p>
<p>My favorite shot is the old Taco Bell where we used to get delicious Chaluppas.</p>
<p><a href="http://blog.noinc.com/wp-content/uploads/2010/05/mechanic_image.jpg"></a><a href="http://blog.noinc.com/wp-content/uploads/2010/05/mechanic_image1.jpg"><img class="size-full wp-image-495 alignnone" title="mechanic_image" src="http://blog.noinc.com/wp-content/uploads/2010/05/mechanic_image1.jpg" alt="Mechanic Theater" width="477" height="900" /></a></p>
<p>Great job to the designer<strong> Davina</strong> and <strong>Bill</strong> our officer of collaboration!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/05/21/mechanic-center-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 + video Tag + iPhone, iPad = iHaveHeadache!</title>
		<link>http://blog.noinc.com/2010/05/13/html5-video-tag-iphone-ipad-ihaveheadache/</link>
		<comments>http://blog.noinc.com/2010/05/13/html5-video-tag-iphone-ipad-ihaveheadache/#comments</comments>
		<pubDate>Thu, 13 May 2010 22:15:23 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=479</guid>
		<description><![CDATA[
Here at no.inc we try to keep things fresh, support new technologies and devices.  So recently we have a client who wants some videos on their site, and we decide to make it work with both PC&#8217;s and mobile devices (and specifically the iPhone and iPad).
The Approach
Well, since flash 9.0.115 flash supports h.264 video [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.noinc.com/wp-content/uploads/2010/05/brokeniphone.jpg"><img class="alignleft size-medium wp-image-491" style="width: 200px; height: 300px; margin: 20px;" title="brokeniphone" src="http://blog.noinc.com/wp-content/uploads/2010/05/brokeniphone-200x300.jpg" alt="" width="200" height="300" /></a></p>
<p>Here at no.inc we try to keep things fresh, support new technologies and devices.  So recently we have a client who wants some videos on their site, and we decide to make it work with both PC&#8217;s and mobile devices (and specifically the iPhone and iPad).</p>
<h2>The Approach</h2>
<p>Well, since flash 9.0.115 flash supports h.264 video encoding, the iPhone and iPad support html5 and the  &lt;video&gt; tag, and also support h.264 encoding.  So the idea is to encode the videos in h.264, detect some mobile devices (iPad, iPhone) and serve up the same file in 2 different &#8216;players&#8217;.  Now I know what you&#8217;re saying, most modern browsers also support html5 and the  &lt;video&gt; tag, so we could just deliver it like that.  Well &#8230; IE9 isn&#8217;t out yet, and IE8 and below don&#8217;t support it, besides, I&#8217;m not quite sure html5 and video have become a standard and gotten all the kinks out, so we&#8217;re sticking with flash for the PC.</p>
<h2>First Round Success</h2>
<p>This round was easy, basically encode our videos to h264, write a flash video player in as3, have it take the video file as a flashvar argument and serve it up, swfObject to embed it.</p>
<pre><span style="color: #ff0000;">&lt;?php
 /* if $iphone is false, insert the swfObject code that will replace the div with our flash player */
 if(!$iphone):
 ?&gt;
&lt;script type="text/javascript"&gt;
 var flashvars =
 {
  auto: 0,
  preview: "/images/&lt;?=$brand?&gt;/vid-pre-&lt;?=$vidId?&gt;.jpg",
  skindir: "swfs%2f",
  video: "&lt;?=("/videos/$brand/$vidId.mp4")?&gt;",
  width: "640",
  height: "360",
  type: "mp4"
 };

 var params =
 {
  menu: "false",
  wmode: "transparent"
 };

 var attributes =
 {
  id: "aVid",
  name: "aVid"
 };

 swfobject.embedSWF("/swfs/player.swf", "player", "502", (282 + 40), "9.0.115", "/swfs/expressInstall.swf", flashvars, params, attributes);
 &lt;/script&gt;
&lt;?php
 endif;
 ?&gt;</span>
</pre>
<p>Now we just need to detect a mobile device, and serve up different content pointing to the same video:</p>
<pre><span style="color: #ff0000;">&lt;?php
/* this goes in the header */
$agent = $_SERVER['HTTP_USER_AGENT'];
$iphone =
 ( (strpos($agent, 'iPhone') != false) ||
 (strpos($agent, 'iPad') != false) ||
 ((strpos($agent, 'AppleWebKit') != false) &amp;&amp; (strpos($agent, 'Mobile') != false)) ||
 ((strpos($agent, 'AppleWebKit') != false) &amp;&amp; (strpos($agent, 'webOS') != false)) ||
 (isset($_GET['iphone']))
 ) ? 1:0;
?&gt;

&lt;?php
 if($iphone):
 ?&gt;
 &lt;video id="aVid" width="502" height="282" controls="controls" poster="images/&lt;?php echo"$brand"; ?&gt;/vid-pre-&lt;?=$vidId?&gt;.jpg"&gt;
 &lt;source src="videos/&lt;?=$brand?&gt;/&lt;?=$vidId?&gt;.mp4" type="video/mp4"&gt;&lt;/source&gt;
 &lt;/video&gt;
 &lt;?php
 else:
 ?&gt;
 &lt;div id="player"&gt;
 &lt;p&gt;&lt;a href="http://www.adobe.com/go/getflashplayer"&gt;&lt;img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /&gt;&lt;/a&gt;&lt;/p&gt;
 &lt;/div&gt;
 &lt;?php
 endif;
 ?&gt;</span>
</pre>
<p>So what we&#8217;re looking at above is, we added the code to give us a true or false statement in the variable $iphone if we detect a mobile browser that can do html5 and the video tag.  If $iphone is true, we output the video tag code pointing to our ${vidId}.mp4, otherwise we output the div that swfobject will replace (and inside the div is the info to get your flash player if you don&#8217;t have it).</p>
<p>and we&#8217;ll change the doctype too if we&#8217;re serving up html5:</p>
<pre><span style="color: #ff0000;">&lt;?php
if ($iphone):
?&gt;
&lt;!DOCTYPE html&gt;
&lt;?php
else:
?&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;?php
endif;
?&gt;</span>
</pre>
<p>So this works, like a champ&#8230; for the most part.</p>
<p>* First of all, the iPhone doesn&#8217;t appear to even fetch the file if  file extension is not .mp4.  Flash wants to make its h264 file extension as .f4v, but its ok with them named .flv, or .mov, or probably anything!</p>
<p>* Second, encoding a video using adobe&#8217;s h264 encoder doesn&#8217;t mean it works with the iPhone, however, encoding a video for the iPhone works with flash.  I recommend using handbrake with the iPhone setting and &#8216;Web Optimized&#8217; checked.</p>
<p>This setup works and we&#8217;re happy with it.  But here&#8217;s where the headache comes in.</p>
<h2>The headache</h2>
<p>First let me explain the problem:  While testing the iPhone, and the PC everything seemed fine.  Then while thinking we are done, we notice the iPad is behaving irregular.  Basically with this setup the iPad has some odd race condition or something, the &lt;video&gt; tag loads in the video, and the poster comes in and shows a preview of the movie, but the play button is gone.  It&#8217;s not related to the controls argument on the video tag, its not the actual poster, something was just messed up.</p>
<p>Upon diagnosis of adding/removing/changing things around we found that removing the included external javascript files caused it to work properly.  Well that doesn&#8217;t make sense really, so we changed the js files, changed the contents of the js, replaced the js with empty files&#8230; basically if the js files were included (and external js), it would hide the play button.  It doesn&#8217;t matter WHAT the js is, if its garbage, jQuery, an alert&#8230; if you include external js, you lose play.</p>
<p>We found that moving the &lt;javascript&gt; tags to the bottom of the file (we were thinking race condition, or socket limitation or something), this fixed it&#8230; the js was there, the js worked, the play button was there, the video plays! YAY! &#8230;.</p>
<p>That is until we went back to the iPhone.  Now this is where things got really weird.  The newly discovered iPhone bug was some how related to the change of the iPad code, but it made less sense than the iPad bug.  Now the iPad&#8217;s bug was it would hide the play button.  The iPhone bug would give the &#8216;invalid video codec&#8217; symbol.  What ?  Invalid codec ?  You just played this file earlier&#8230;  While checking the webserver logs, the iPhone doesn&#8217;t even attempt to fetch the .mp4 file and check its codec, it just says invalid codec, and you get none.</p>
<p>Trying to figure out the culprit of this one took about 2 days of headaches.  We stripped the html down and found it&#8217;s somehow related to the stylesheet&#8230;. not the contents of the stylesheet, the inclusion of an external stylesheet.</p>
<p>Let me give you an example.</p>
<pre><span style="color: #ff0000;">&lt;link rel="stylesheet" href="css/all.css" type="text/css" media="all" /&gt;

</span></pre>
<p>You can remove type and media arguments without any difference.  If you change the rel or remove it, it suddenly works again!, if you remove the href, it suddenly works again!, if you point the href to a empty file, or just put in &#8216;fisdanfois&#8217; gibberish, it doesn&#8217;t work&#8230; the file doesn&#8217;t have to be valid it can be a 404, it just simply won&#8217;t work if you have that link tag.  We ended up with a small test file&#8230; that consisted of nothing really, as plain as below:</p>
<pre><span style="color: #ff0000;">&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;link rel='stylesheet' href='css/all.css'/&gt;
&lt;/head&gt;
&lt;body&gt;
 &lt;video controls&gt;
 &lt;source src='vidoes/video.mp4'&gt;&lt;/source&gt;
 &lt;/video&gt;
&lt;/body&gt;
&lt;/html&gt;</span>
</pre>
<p>That html above, does not work.  If you remove the &lt;link&gt; tag, it works, if you change rel= to something it works&#8230;</p>
<p>So after these 2 long days of debugging, we didn&#8217;t put 2 and 2 together until we backtracked far enough to undo the iPad fix.  Undoing the iPad fix made it work again, but we were puzzled because the &lt;link&gt; tag was there, and it worked! &#8230; so it must have been directly related to the &lt;javascript&gt; tag movement.  Now it&#8217;s not that the iPhone doesn&#8217;t like &lt;javascript&gt; placed somewhere, it simply doesn&#8217;t want to have a &lt;link&gt; tag in the header, without a &lt;javascript&gt; tag pointing to an external file&#8230;.</p>
<p>I can&#8217;t explain it, all I know is what I seen.  Sure, it makes no sense, it has to be some bug with the iPhone, and iPad for that matter, different bugs, both related to something in the &lt;head&gt;.  We already spent too much time on this fiasco, so the only solution was to specifically look for the iPad&#8217;s agent string, and move the js if its an iPad.  I know, it&#8217;s lame but I have to move on.</p>
<pre><span style="color: #ff0000;">// in the top of the php file, after the $iphone detect
$ipad = strpos($agent, 'iPad') != false;

// in the head
&lt;?php if(!$ipad): ?&gt;
&lt;javascript includes&gt;
&lt;?php endif; ?&gt;

// at the bottom of the file
&lt;?php if($ipad): ?&gt;
&lt;javascript includes&gt;
&lt;?php endif; ?&gt;</span>
</pre>
<p>Well there you go, I hope apple fixes this bug, but until then feel free to just do what we did, maybe you can save a few hairs from falling out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/05/13/html5-video-tag-iphone-ipad-ihaveheadache/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Retail Traffic Magazine does an article on our property leasing portfolio application</title>
		<link>http://blog.noinc.com/2010/04/15/retail-traffic-magazine-does-an-article-on-our-property-leasing-portfolio-application/</link>
		<comments>http://blog.noinc.com/2010/04/15/retail-traffic-magazine-does-an-article-on-our-property-leasing-portfolio-application/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 20:07:12 +0000</pubDate>
		<dc:creator>James Hagen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=475</guid>
		<description><![CDATA[PROPERTY CAPSULE TAKES LEASING PRESENTATIONS INTO THE MODERN ERA
APR 14, 2010 2:47 PM
As the retail real estate industry moves into the era of smart phones and tablet PCs, some traditional ways of doing business seem awfully outdated. For example, many leasing professionals still lug heavy folders with property information and marketing materials to meetings with [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">PROPERTY CAPSULE TAKES LEASING PRESENTATIONS INTO THE MODERN ERA</div>
<p>APR 14, 2010 2:47 PM<br />
As the retail real estate industry moves into the era of smart phones and tablet PCs, some traditional ways of doing business seem awfully outdated. For example, many leasing professionals still lug heavy folders with property information and marketing materials to meetings with prospective tenants. In addition to being a pain to deal with, these paper documents cost a fortune to produce, even though they have to be tossed whenever a property’s tenant roster or site plan changes.</p>
<p>More here: <a href="http://bit.ly/dj4bBs">http://bit.ly/dj4bBs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/04/15/retail-traffic-magazine-does-an-article-on-our-property-leasing-portfolio-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a custom preloader in AS3 with wmode=transparent</title>
		<link>http://blog.noinc.com/2010/03/31/using-a-custom-preloader-in-as3-with-wmodetransparent/</link>
		<comments>http://blog.noinc.com/2010/03/31/using-a-custom-preloader-in-as3-with-wmodetransparent/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:32:51 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=449</guid>
		<description><![CDATA[
Recently we had trouble with a flash piece for a client.  The swf&#8217;s we made would not load and just show the loading progress bar.  Upon further investigation it turns out we changed the swf to wmode transparent.  Now I know from past experiences that flash&#8217;s internal timing changes with transparent and normally I recommend [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.noinc.com/wp-content/uploads/2010/03/loading.png"><img class="alignleft size-full wp-image-451" title="loading screen" src="http://blog.noinc.com/wp-content/uploads/2010/03/loading.png" alt="" width="199" height="199" /></a></p>
<p>Recently we had trouble with a flash piece for a client.  The swf&#8217;s we made would not load and just show the loading progress bar.  Upon further investigation it turns out we changed the swf to wmode transparent.  Now I know from past experiences that flash&#8217;s internal timing changes with transparent and normally I recommend it be avoided at all costs, but this is a simple piece, just a little image gallery with some tweens, not a game where fps and timing are important.</p>
<p>Being stuck at the preloader lead me to believe something with the preloader is not acting right in wmode transparent.  It turns out the ProgressEvent.PROGRESS event&#8217;s are not firing.  Why ?  I can&#8217;t say, but I think Adobe needs to look into wmode transparent as this isn&#8217;t the only odd thing that happens.</p>
<p>The fix is to simply use an Event.ENTER_FRAME event to check the preload status rather than a ProgressEvent.PROGRESS, since Event.ENTER_FRAME event&#8217;s still fire flawlessly.</p>
<p><strong>Normal preloader code:</strong></p>
<pre>this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, loading);

var pct:Number = 0;

function loading(event:ProgressEvent):void
{
 pct = event.bytesLoaded / event.bytesTotal;
 loading.loadedBar.scaleX = pct;
 trace(pct);
 if(pct &gt;= 1)
 {
   this.loaderInfo.removeEventListener(ProgressEvent.PROGRESS, loading);
   gotoAndPlay(2);
 }
}</pre>
<p><strong>wmode = transparent preloader:</strong></p>
<pre>this.addEventListener(Event.ENTER_FRAME, loading);

var pct:Number = 0;

function loading(event:Event)
{
 pct = this.loaderInfo.bytesLoaded / this.loaderInfo.bytesTotal
 loading.loadedBar.scaleX = pct;

 trace(pct);

 if(pct &gt;= 1)
 {
  this.removeEventListener(Event.ENTER_FRAME, loading);
  gotoAndPlay(2);
 }
}

**** UPDATE 7/26/2010 By Paul ****

I haven't tested it, but looking through the changelog for 10.1 flash player I noticed:
"[FP-1585] loaderInfo Event.COMPLETE not dispatched if wmode is "transparent" or "opaque". (2345794)"
This may be related to the progress bug as well, makes sense, there's just an event dispatch problem in wmode transparent.</pre>
<pre>
Adobe _MAY_ have fixed this bug.  That doesn't help the stragglers using old flash versions, but its better then nothing.</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/03/31/using-a-custom-preloader-in-as3-with-wmodetransparent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google phases out support for IE6</title>
		<link>http://blog.noinc.com/2010/02/01/google-phases-out-support-for-ie6/</link>
		<comments>http://blog.noinc.com/2010/02/01/google-phases-out-support-for-ie6/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:10:45 +0000</pubDate>
		<dc:creator>Matt Cummings</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=248</guid>
		<description><![CDATA['Google has begun to phase out support for Internet Explorer 6, the browser identified as the weak link in a cyber attack on the search engine.' - BBC NEWS]]></description>
			<content:encoded><![CDATA[<p>&#8216;<strong>Google has begun to phase out support for Internet Explorer 6, the browser identified as the weak link in a cyber attack on the search engine.&#8217;</strong></p>
<p><strong></strong>Its about time some of the bigger names starting phasing out support of IE6. Even Microsoft would much prefer users upgrade to IE7. From a html/css perspective, including support for decade-old IE6 always adds a fair amount of additional debugging time.</p>
<p>My latest trend has been to &#8216;coax&#8217; users to upgrade. I try to keep all functionally intact but almost purposely cut back on some of the eye candy and additional interactivity. For instance, If I have a nice little png drop shadow or hover effect on a div.. IE6, no drop shadow for you!  Everything works, but.. you want an upgraded experience, upgrade your browser, please.</p>
<p>Read the full story here at BBC NEWS: <a href="http://news.bbc.co.uk/2/hi/technology/8488751.stm">http://news.bbc.co.uk/2/hi/technology/8488751.stm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/02/01/google-phases-out-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accordians and Ukuleles</title>
		<link>http://blog.noinc.com/2010/01/21/accordians-and-ukuleles/</link>
		<comments>http://blog.noinc.com/2010/01/21/accordians-and-ukuleles/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:52:46 +0000</pubDate>
		<dc:creator>Andy Spangler</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[actionscript]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=221</guid>
		<description><![CDATA[

At no&#124;inc we love creating online games ( check out Water Street Fighter,  Cake Boss)!
Recently we had the opportunity to license a copy of our Accordion Hero game to MVNP, a marketing firm out of Honolulu for their own spin &#8220;Ukulele Hero&#8220;.

]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span><br />
<mce:style><!  st1\:*{behavior:url(#ieooui) } --></p>
<p><!--[endif]--></p>
<p class="MsoNormal">At no|inc we love creating online games ( check out <a href="http://www.noinc.com/holiday08/" target="_blank">Water Street Fighter,</a> <span> </span><a href="http://tlc.discovery.com/tv/cake-boss/games/delivery-dash.html" target="_blank">Cake Boss</a>)!</p>
<p class="MsoNormal">Recently we had the opportunity to license a copy of our Accordion Hero game to <a href="http://www.mvnp.com/" target="_blank">MVNP</a>, a marketing firm out of Honolulu for their own spin <a href="http://www.hawaiiukulelehero.com/" target="_blank">&#8220;Ukulele Hero</a>&#8220;.</p>
<p class="MsoNormal"><a href="http://blog.noinc.com/wp-content/uploads/2010/01/hawaiiukulelehero.png"><img class="alignleft size-medium wp-image-227" title="Hawaii Ukulele Hero" src="http://blog.noinc.com/wp-content/uploads/2010/01/hawaiiukulelehero-300x231.png" alt="" width="300" height="231" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2010/01/21/accordians-and-ukuleles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>no&#124;inc is taking a snow day!</title>
		<link>http://blog.noinc.com/2009/12/31/noinc-is-taking-a-snow-day/</link>
		<comments>http://blog.noinc.com/2009/12/31/noinc-is-taking-a-snow-day/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 18:54:36 +0000</pubDate>
		<dc:creator>James Hagen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/2009/12/31/noinc-is-taking-a-snow-day/</guid>
		<description><![CDATA[no&#124;inc is taking a snow day!
]]></description>
			<content:encoded><![CDATA[<p>no|inc is taking a snow day!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2009/12/31/noinc-is-taking-a-snow-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ICSC NYC</title>
		<link>http://blog.noinc.com/2009/12/09/icsc-nyc/</link>
		<comments>http://blog.noinc.com/2009/12/09/icsc-nyc/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 14:22:07 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=211</guid>
		<description><![CDATA[The ICSC (International Counsel of Shopping Centers) national trade show was held in New York Dec 7-8. Alex Markson and I attended the event on a mission to persuade real estate development company marketing and leasing execs to forgo paper property collateral and use digital presentation methods instead. No&#124;inc has created the application and interface [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">The ICSC (International Counsel of Shopping Centers) national trade show was held in New York Dec 7-8.<span> </span>Alex Markson and I attended the event on a mission to persuade real estate development company marketing and leasing execs to forgo paper property collateral and use digital presentation methods instead.<span> </span>No|inc has created the application and interface for this conversion and we were curious to see, if after 5 years of use by our clients, we had any competition.</p>
<p class="MsoNormal">We walked the show and stopped at every exhibit, meeting with marketing and leasing folks and incredibly not a single company other than our client, DLC Management Corp, were using database driven, digital property presentations…..in 2009?…all using paper? They all have websites with property listings and leasing interfaces but when it comes to making “deals” as it’s known in this business, they print out “flyers”, cute. Then throw 75% of them away after the shows. Don’t even get me started on the green thing.</p>
<p class="MsoNormal">Think about this, arguably the most critical industry responsible for our economic recovery is doing business at the speed of trees growing. One would think a faster pace might be in order when racing against extinction.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2009/12/09/icsc-nyc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cake Boss Game on Discovery</title>
		<link>http://blog.noinc.com/2009/11/23/cake-boss-game/</link>
		<comments>http://blog.noinc.com/2009/11/23/cake-boss-game/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 20:20:15 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.noinc.com/?p=188</guid>
		<description><![CDATA[It&#8217;s now live.  We hope you have fun playing it!
Check it out on Discovery&#8217;s web site:
http://tlc.discovery.com/tv/cake-boss/games/delivery-dash.html

]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s now live.  We hope you have fun playing it!</p>
<p>Check it out on Discovery&#8217;s web site:</p>
<p><a href="http://tlc.discovery.com/tv/cake-boss/games/delivery-dash.html">http://tlc.discovery.com/tv/cake-boss/games/delivery-dash.html</a></p>
<p><a href="http://tlc.discovery.com/tv/cake-boss/games/delivery-dash.html"><img class="alignleft size-full wp-image-189" title="Cake Boss Game" src="http://blog.noinc.com/wp-content/uploads/2009/11/cakeboss.jpg" alt="Cake Boss Game" width="480" height="401" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.noinc.com/2009/11/23/cake-boss-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
