<?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>Flash inside</title>
	<atom:link href="http://www.flashinside.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashinside.net</link>
	<description>Flash technology blog</description>
	<lastBuildDate>Fri, 20 Jan 2012 10:06:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Brand new property MovieClip.isPlaying</title>
		<link>http://www.flashinside.net/actionscript3/brand-new-property-movieclip-isplaying/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=brand-new-property-movieclip-isplaying</link>
		<comments>http://www.flashinside.net/actionscript3/brand-new-property-movieclip-isplaying/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 11:46:23 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[ActionScript3]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=769</guid>
		<description><![CDATA[I have discovered recently the new isPlaying property for the MovieClip class that Adobe introduced in Flash Player 11. I do recommend you read What&#8217;s New in Flash Player 11 where you will find interesting new features like this one. It&#8217;s great we finally have an easy way to know if our animations are running [...]]]></description>
			<content:encoded><![CDATA[<p>I have discovered recently the new <b><i>isPlaying</i></b> property for the MovieClip class that Adobe introduced in Flash Player 11.</p>
<p>I do recommend you read <a href="http://shop.oreilly.com/product/0636920021698.do" target="_blank"><b>What&#8217;s New in Flash Player 11</b></a> where you will find interesting new features like this one.</p>
<p>It&#8217;s great we finally have an easy way to know if our animations are running or simply stopped.</p>
<p>Take a look at the following code:</p>
<div class="codecolorer-container actionscript3 mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br /></div></td><td><div class="actionscript3 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #0033ff; font-weight: bold;">this</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">ENTER_FRAME</span><span style="color: #000066; font-weight: bold;">,</span> onLoop<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #004993;">stage</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">CLICK</span><span style="color: #000066; font-weight: bold;">,</span> onClick<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
mc<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #339966; font-weight: bold;">function</span> onLoop<span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; txtInfo<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">text</span> = mc<span style="color: #000066; font-weight: bold;">.</span>isPlaying <span style="color: #000066; font-weight: bold;">?</span> <span style="color: #990000;">&quot;MovieClip playing!&quot;</span> <span style="color: #000066; font-weight: bold;">:</span> <span style="color: #990000;">&quot;MovieClip stopped&quot;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #000000;">&#125;</span><br />
<br />
<span style="color: #339966; font-weight: bold;">function</span> onClick<span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>mc<span style="color: #000066; font-weight: bold;">.</span>isPlaying<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; mc<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span> <span style="color: #0033ff; font-weight: bold;">else</span> <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; mc<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></td></tr></tbody></table></div>
<p>As we see the use of this property keep things very simple and this is really welcome! Quite surprising this has not been available before.</p>
<p>Note the <b><i>mc.play()</i></b> in line 7. It seems this property does not know the MovieClip is playing by default, and the value gets updated when we use the MovieClip playback functions such as <b><i>play()</i></b>, <b><i>stop()</i></b> and so on&#8230;</p>
<p>If you are going to use the <b><i>isPlaying</i></b> property ensure to use those functions to have the correct value.</p>
<p>This is the result of the above code (Flash Player 11 required):</p>
<div height="1px" style="margin-top:5px; margin-bottom:10px; margin-left:90px;">
<object width="300" height="250">
<param name="movie" value="http://www.flashinside.net/blog/wp-content/uploads/2012/01/isplaying.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="opaque"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#ebebeb"></param>
<embed type="application/x-shockwave-flash" width="300" height="250" src="http://www.flashinside.net/blog/wp-content/uploads/2012/01/isplaying.swf" quality="high" bgcolor="#ebebeb" wmode="opaque" menu="false" ></embed>
</object>
</div>
<p>You can download this example in Flash CS5 <a href="http://www.flashinside.net/blog/wp-content/uploads/2012/01/isplaying.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/actionscript3/brand-new-property-movieclip-isplaying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing your content with 9-slice scaling</title>
		<link>http://www.flashinside.net/flash/resizing-your-content-with-9-slice-scaling/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=resizing-your-content-with-9-slice-scaling</link>
		<comments>http://www.flashinside.net/flash/resizing-your-content-with-9-slice-scaling/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:22:34 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=739</guid>
		<description><![CDATA[I&#8217;ve found these days some designers and even programmers not aware of the 9-slice scaling that Flash provides, and that&#8217;s why I&#8217;d like to introduce it here for those who does not know it either. This feature allows you to determine the way a MovieClip is scaled. Doing that you will be able to resize [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I&#8217;ve found these days some designers and even programmers not aware of the 9-slice scaling that Flash provides, and that&#8217;s why I&#8217;d like to introduce it here for those who does not know it either.</p>
<p>This feature allows you to determine the way a MovieClip is scaled. Doing that you will be able to resize without unwanted results like your MovieClip is distorted.</p>
<p>With tablets and smart phones on the market, it&#8217;s a good idea to resize our content accordingly to the area we have available, and here is where 9-slice scaling will help you out.</p>
<p>Look at the picture below and notice the rounded corners it has:<br />
<img class="alignnone" style="margin-left:175px;margin-top:20px;margin-bottom:20px;" src="http://www.flashinside.net/blog/wp-content/uploads/2012/01/9-slice1.jpg" alt="" width="190" height="91" /></p>
<p>Now look at the difference we get after applying an horizontal resize of the MovieClip:<br />
<img class="alignnone" style="margin-left:20px;margin-top:20px;margin-bottom:20px;" src="http://www.flashinside.net/blog/wp-content/uploads/2012/01/9-slice2.jpg" alt="" width="478" height="157" /></p>
<p>As you can see with 9-slice scaling we can achieve the result we really expect.</p>
<p>In order to enable this feature, you just need to open the Properties panel of the MovieClip and select <b>Enable guides for 9-slice scaling</b> as shown in the picture below:<br />
<img class="alignnone" style="margin-top:20px;margin-bottom:20px;" src="http://www.flashinside.net/blog/wp-content/uploads/2012/01/9-slice3.jpg" alt="" width="581" height="251" /></p>
<p>Then when you edit the MovieClip it will show you the guides that you can easily adjust to your needs as seen in the following picture:<br />
<img class="alignnone" style="margin-left:150px;margin-top:20px;margin-bottom:20px;" src="http://www.flashinside.net/blog/wp-content/uploads/2012/01/9-slice4.jpg" alt="" width="234" height="123" /></p>
<p>This scaling mode cannot be applied to Buttons or Graphics Symbols. The same applies when we nest them inside a MovieClip. The 9-scale scaling will only be applied to the compatible content.</p>
<p>It would be perfect to have 9-slice scaling for Bitmaps as a built-in capability in Flash, but meanwhile Grant Skinner created a nice solution called <a href="http://gskinner.com/blog/archives/2010/04/bitmapslice9_sc.html" target="_blank">BitmapSlice9</a>. It allows you to break your Bitmaps in pieces and use the 9-slice scaling with a great results!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flash/resizing-your-content-with-9-slice-scaling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving game development with Texture Packer</title>
		<link>http://www.flashinside.net/general/improving-game-development-with-texture-packer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=improving-game-development-with-texture-packer</link>
		<comments>http://www.flashinside.net/general/improving-game-development-with-texture-packer/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 11:34:22 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[TexturePacker]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=718</guid>
		<description><![CDATA[If you have ever tried game development surely you noticed how important the management of the images is. A 2D game involves lots of images for the animations of our characters. Having a good organization and optimization is quite a tricky job. Here is where Texture Packer comes to save our lives. This is a [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.flashinside.net/blog/wp-content/uploads/2011/12/texture_packer.jpg" title="Texture Packer" class="alignleft" width="200" height="150" />If you have ever tried game development surely you noticed how important the management of the images is. A 2D game involves lots of images for the animations of our characters.</p>
<p>Having a good organization and optimization is quite a tricky job.</p>
<p>Here is where Texture Packer comes to save our lives. This is a great utility that will help you to build your games better, faster and optimized.</p>
<p>This tool supports a lot of different popular frameworks like <b>Cocos2d</b>, <b>Corona</b> and <b>Sparrow</b> among others. Specially for Flash, if you are using <b>Starling</b> framework it will suit you perfectly as it&#8217;s based on Sparrow.</p>
<p>It comes with features like quality color reduction, automatic resizing, trimming of your graphics and reuse of the same graphic data to avoid duplicates.</p>
<p>Now Texture Packer added recently the option to import SWF files. A very welcome feature that helps a lot when you manage Flash graphics for your art work.</p>
<p>Congratulation to Andreas Löw who is the author of this amazing tool.</p>
<p>You can check it out in the official website <a href="http://www.texturepacker.com/" target="_blank">here</a>.</p>
<p>Happy game development!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/general/improving-game-development-with-texture-packer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New mouse capabilities in Flash Player 11.2 and AIR 3.2</title>
		<link>http://www.flashinside.net/flash/new-mouse-capabilities-in-flash-player-11-2-and-air-3-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-mouse-capabilities-in-flash-player-11-2-and-air-3-2</link>
		<comments>http://www.flashinside.net/flash/new-mouse-capabilities-in-flash-player-11-2-and-air-3-2/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 17:33:21 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=712</guid>
		<description><![CDATA[Adobe just released the beta of Flash Player 11.2 and AIR 3.2 for Desktop with brand new capabilities. One of the great new additions is the mouse right and middle click events. That means we finally can remove completely the context menu! Focusing in games we have the mouse lock that will be available only [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe just released the beta of Flash Player 11.2 and AIR 3.2 for Desktop with brand new capabilities.</p>
<p>One of the great new additions is the mouse right and middle click events. That means we finally can remove completely the context menu! Focusing in games we have the mouse lock that will be available only in fullscreen mode and new relative mouse coordinates.</p>
<p>You can take a closer look at it in this <a href="http://www.bytearray.org/?p=3755" target="_blank">post</a> from Thibault Imbert.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flash/new-mouse-capabilities-in-flash-player-11-2-and-air-3-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT 5 is here!</title>
		<link>http://www.flashinside.net/general/fdt-5-is-here/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fdt-5-is-here</link>
		<comments>http://www.flashinside.net/general/fdt-5-is-here/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 17:37:44 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[FDT]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=698</guid>
		<description><![CDATA[Cool stuff is what we find in this new release of FDT from PowerFlasher. This great ActionScript plugin for Eclipse Platform is released this time with a Free version without restictions in time but with limited features that will suit you for small projects. On the other side the FDT 5 Max, which is the [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.flashinside.net/blog/wp-content/uploads/2011/11/fdt5.jpg" title="FDT 5" class="alignleft" width="198" height="183" />Cool stuff is what we find in this new release of FDT from PowerFlasher.</p>
<p>This great ActionScript plugin for Eclipse Platform is released this time with a Free version without restictions in time but with limited features that will suit you for small projects.<br />
<br/><br/><br />
On the other side the FDT 5 Max, which is the complete version of the plugin, comes with a new great bunch of new features like:</p>
<ul>
<li>haXe Support</li>
<li>ASDoc Support</li>
<li>Advanced Refactoring</li>
<li>FDT &#038; Mobile</li>
<li>SWC Source Attachement</li>
<li>AIR SDK Merging</li>
</ul>
<p>You can get the full details of FDT 5 <a href="http://fdt.powerflasher.com/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/general/fdt-5-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What about Flex?</title>
		<link>http://www.flashinside.net/flex/what-about-flex/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-about-flex</link>
		<comments>http://www.flashinside.net/flex/what-about-flex/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 10:50:41 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=695</guid>
		<description><![CDATA[After the announcement that Adobe stopped the development of Flash Player in mobile browsers, everybody was concerned about Flex. Adobe has published a post trying to give answer to the most important questions regarding the future of Flex. It&#8217;s worth a read. You can find it here.]]></description>
			<content:encoded><![CDATA[<p>After the announcement that Adobe stopped the development of Flash Player in mobile browsers, everybody was concerned about Flex. Adobe has published a post trying to give answer to the most important questions regarding the future of Flex.</p>
<p>It&#8217;s worth a read. You can find it <a href="" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flex/what-about-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player 11.1 and AIR 3.1 available!</title>
		<link>http://www.flashinside.net/flash/flash-player-11-1-and-air-3-1-available/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flash-player-11-1-and-air-3-1-available</link>
		<comments>http://www.flashinside.net/flash/flash-player-11-1-and-air-3-1-available/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 15:41:30 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=689</guid>
		<description><![CDATA[Adobe just released the Flash Player 11.1 and AIR 3.1 for desktop and mobile devices. I wouldn&#8217;t wait a minute to give it a try! You can find an article from Adobe here. More joy for Flash enthusiasts]]></description>
			<content:encoded><![CDATA[<p>Adobe just released the Flash Player 11.1 and AIR 3.1 for desktop and mobile devices. I wouldn&#8217;t wait a minute to give it a try!</p>
<p>You can find an article from Adobe <a href="http://blogs.adobe.com/flashplayer/2011/11/adobe-flash-player-11-1-and-adobe-air-3-1-are-now-available.html" target="_blank">here</a>.</p>
<p>More joy for Flash enthusiasts <img src='http://www.flashinside.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flash/flash-player-11-1-and-air-3-1-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe ceases Flash player development in mobile browsers</title>
		<link>http://www.flashinside.net/flash/adobe-ceases-flash-player-development-in-mobile-browsers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-ceases-flash-player-development-in-mobile-browsers</link>
		<comments>http://www.flashinside.net/flash/adobe-ceases-flash-player-development-in-mobile-browsers/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 15:31:22 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=678</guid>
		<description><![CDATA[These past few days have been crazy after the announcement that Adobe stops the development of Flash Player for mobile browsers. Flash always has been the technology that was able to do things that HTML couldn&#8217;t. With the big improvements the web is experimenting with HTML5, Flash has less room to be the chosen technology [...]]]></description>
			<content:encoded><![CDATA[<p>These past few days have been crazy after the <a href="http://blogs.adobe.com/conversations/2011/11/flash-focus.html" target="_blank">announcement</a> that Adobe stops the development of Flash Player for mobile browsers.</p>
<p>Flash always has been the technology that was able to do things that HTML couldn&#8217;t. With the big improvements the web is experimenting with HTML5, Flash has less room to be the chosen technology for all the interactive content in the World Wide Web.</p>
<p>I have been working recently with Flash on an Android tablet for the browser and talking about performance I have to say you have to create the content thinking on the device to get good results. I believe this is an important reason why Flash in the mobile browsers are not always welcome.</p>
<p>I am working on the elearning industry and this decision causes we take measures, as we need to run the content within the browser, Flash is not a good choice when we want to bring courses to tablets or mobiles.</p>
<p>Sad days&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flash/adobe-ceases-flash-player-development-in-mobile-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Flash Player 11 to Flash Pro CS5 and CS5.5</title>
		<link>http://www.flashinside.net/flash/adding-flash-player-11-to-flash-pro-cs5-and-cs5-5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-flash-player-11-to-flash-pro-cs5-and-cs5-5</link>
		<comments>http://www.flashinside.net/flash/adding-flash-player-11-to-flash-pro-cs5-and-cs5-5/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 14:43:58 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=671</guid>
		<description><![CDATA[Richard Galvan from Adobe has published a great article explaining how to add Flash Player 11 to our Flash Pro CS5 or CS5.5. Especially interesting if you want to take advantage of the brand new Stage3D. You can read the article here.]]></description>
			<content:encoded><![CDATA[<p>Richard Galvan from Adobe has published a great article explaining how to add Flash Player 11 to our Flash Pro CS5 or CS5.5. Especially interesting if you want to take advantage of the brand new Stage3D.</p>
<p>You can read the article <a href="http://blogs.adobe.com/rgalvan/2011/11/adding-fp11-support-to-flash-pro-cs5-and-cs5-5.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/flash/adding-flash-player-11-to-flash-pro-cs5-and-cs5-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe MAX 2011 sneak peeks online!</title>
		<link>http://www.flashinside.net/general/adobe-max-2011-sneak-peeks-online/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-max-2011-sneak-peeks-online</link>
		<comments>http://www.flashinside.net/general/adobe-max-2011-sneak-peeks-online/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 12:10:51 +0000</pubDate>
		<dc:creator>Alejandro Mendez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.flashinside.net/?p=641</guid>
		<description><![CDATA[Adobe just shared the sneak peeks of Adobe MAX 2011. We can see some new cool features that we may have available in Adobe products. They are doing an amazing work! You can watch the videos on Adobe TV here.]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.flashinside.net/blog/wp-content/uploads/2011/10/Adobe-MAX-2011.png" title="Adobe MAX 2011" class="alignleft" width="150" height="150" />Adobe just shared the sneak peeks of Adobe MAX 2011. We can see some new cool features that we may have available in Adobe products. They are doing an amazing work!</p>
<p>You can watch the videos on Adobe TV <a href="http://tv.adobe.com/show/max-2011-sneak-peeks/" target="_blank">here</a>.<br />
<br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashinside.net/general/adobe-max-2011-sneak-peeks-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

