<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://ericcarroll.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>flash</title>
 <link>http://ericcarroll.org/logs/flash</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Flashforks &amp; iTorches</title>
 <link>http://ericcarroll.org/logs/flashforks-itorches</link>
 <description>&lt;p&gt;After Jobs&#039; open letter, &lt;a href=&quot;http://www.apple.com/hotnews/thoughts-on-flash/&quot;&gt;Thoughts on Flash&lt;/a&gt;, the Flashforks and iTorches have come out.&lt;/p&gt;
&lt;p&gt;I&#039;ve always experienced issues with Flash running on a multitude of Macs so I&#039;m not heart-broken for Adobe&#039;s Flash. I realize Apple isn&#039;t perfect, either, but they do have a good model going. Although, many question their moves in regard to the App Store, it&#039;s been very lucrative for them and other app developers.&lt;/p&gt;
&lt;p&gt;For me, I&#039;m excited to get into mobile app development and mobile &lt;em&gt;web&lt;/em&gt; app development. I see myself as starting with one foot in iPhone app development the other foot in mobile web app development and then possibly reaching out to the Android market later on, but the mobile web apps may take care of that.&lt;/p&gt;
&lt;p&gt;Regardless, I need something new to learn and am looking forward to working more with HTML5, CSS3, Webkit, Objective-C and bridging the standalone apps and web apps.&lt;/p&gt;
&lt;p&gt;The next 6-18 months should be very interesting.&lt;/p&gt;
&lt;p&gt;Amazon, I&#039;m still waiting on my books to arrive.&lt;/p&gt;
</description>
 <comments>http://ericcarroll.org/logs/flashforks-itorches#comments</comments>
 <category domain="http://ericcarroll.org/logs/apple">apple</category>
 <category domain="http://ericcarroll.org/logs/arguments">arguments</category>
 <category domain="http://ericcarroll.org/logs/flash">flash</category>
 <category domain="http://ericcarroll.org/logs/web">web</category>
 <pubDate>Thu, 29 Apr 2010 10:49:33 -0500</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">4501 at http://ericcarroll.org</guid>
</item>
<item>
 <title>CLObject</title>
 <link>http://ericcarroll.org/logs/clobject</link>
 <description>&lt;h3&gt;Conditional Love Object&lt;/h3&gt;
&lt;p&gt;CLObject (in order to give it an actual name), came about after frustration with getting Suckerfish Dropdowns to work with SWFobject. My Suckerfish dropdowns were behind my Flash animation in IE only. After trying various CSS changes (z-index, absolute positioning, etc), I realized that it might be possible to put conditional comments for IE on the embed tag, but Camino/Firefox/Flock would choke and not show anything at all while Safari and IE were fine.&lt;/p&gt;
&lt;h3&gt;Beat me to it&lt;/h3&gt;
&lt;p&gt;I worked for hours trying to get this right and testing things by trial and error (because, sometimes, you just want to figure it out on your own). Then, much later in the day, I come across &lt;a href=&quot;http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml&quot;&gt;David Grudl&#039;s post&lt;/a&gt; about the same thing I was working on so I tried his, but I was getting the HTMLtidy errors with Safari. I just had to simplify the comments a bit and it worked great for me.&lt;/p&gt;
&lt;p&gt;After David&#039;s post deflated me a bit, which is not surprising since there are tons of smarter people than myself, I guess all I can be accused of is giving it a name (Great. Now I am in marketing?).&lt;/p&gt;
&lt;p&gt;I give &lt;a href=&quot;http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml&quot;&gt;David Grudl&lt;/a&gt; full credit for this, unless someone can prove otherwise, but, either way, I think it is a great method for inserting Flash while still validating.&lt;/p&gt;
&lt;p&gt;Even though my findings were almost three months later, I&#039;ll explain it here, anyway, but for more indepth information please see &lt;a href=&quot;http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml&quot;&gt;David&#039;s post&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;The Code&lt;/h3&gt;
&lt;p&gt;This code uses Conditional Comments for IE to hide one object &lt;em&gt;from&lt;/em&gt; IE while the other is fed &lt;em&gt;only&lt;/em&gt; to IE.&lt;/p&gt;
&lt;h4&gt;For Camino/Firefox/Flock, Opera and Safari&lt;/h4&gt;
&lt;p&gt;This bit is read as normal by most browsers, except for IE. The &quot;!&quot; tells IE to leave it alone and go on about it&#039;s quirky business.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;!--[if !IE]&amp;gt;--&amp;gt;&lt;br /&gt;
&amp;lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;flash_content.swf&quot;&lt;br /&gt;
width=&quot;500&quot; height=&quot;100&quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&quot;alternate_image.jpg&quot; width=&quot;500&quot; height=&quot;100&quot; alt=&quot;alternate content&quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;!--&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;h4&gt;For IE&lt;/h4&gt;
&lt;p&gt;This bit is skipped by non-IE browsers. IE reads it and does it&#039;s thing.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;!--[if IE]&amp;gt;&lt;br /&gt;
&amp;lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;&lt;br /&gt;
codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0&quot;&lt;br /&gt;
width=&quot;500&quot; height=&quot;100&quot;&amp;gt;&lt;br /&gt;
&amp;lt;param name=&quot;movie&quot; value=&quot;flash_content.swf&quot; /&amp;gt;&lt;br /&gt;
&amp;lt;img src=&quot;alternate_image.jpg&quot; width=&quot;500&quot; height=&quot;100&quot; alt=&quot;alternate content&quot; /&amp;gt;&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;What I had come up with didn&#039;t fix the Eolas issue with Flash content, but &lt;a href=&quot;http://latrine.dgx.cz/how-to-avoid-activation-of-active-x-in-ie&quot;&gt;David has that covered as well in another post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I could have just dug deeper for someone else&#039;s solution, but I did enjoy the challenge.&lt;/p&gt;
</description>
 <comments>http://ericcarroll.org/logs/clobject#comments</comments>
 <category domain="http://ericcarroll.org/logs/code">code</category>
 <category domain="http://ericcarroll.org/logs/flash">flash</category>
 <pubDate>Sat, 17 Feb 2007 22:59:32 -0600</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">6 at http://ericcarroll.org</guid>
</item>
</channel>
</rss>

