<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>FlashComGuru.com - The Original Flash Video, Flash Media Server and Flash Platform Resource</title>
			<link>http://www.flashcomguru.com/index.cfm</link>
			<description>Flashcomguru.com is a comprehensive resource on Flash Video, Flash Media Server, online video and related technologies.</description>
			<language>en-us</language>
			<pubDate>Thu, 02 Sep 2010 22:51:28 --0100</pubDate>
			<lastBuildDate>Fri, 27 Aug 2010 09:55:00 --0100</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>stefan@flashcomguru.com</managingEditor>
			<webMaster>stefan@flashcomguru.com</webMaster>
			
			<item>
				<title>Screen Sharing Now Available in Flash - With LCCS</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/8/27/lccs-screensharing-in-flash</link>
				<description>
				
				&lt;img src=&quot;http://www.flashcomguru.com/images/lccs_logo.jpg&quot; align=&quot;left&quot; hspace=&quot;10&quot; vspace=&quot;10&quot;&gt;I&apos;m not sure whether to laugh or cry, but as you&apos;ve &lt;a href=&quot;http://blogs.adobe.com/collabmethods/2010/08/screen-sharing-and-recording-august-feature-tsunami.html&quot; target=&quot;_blank&quot;&gt;probably heard already&lt;/a&gt; it is now possible to &lt;a href=&quot;http://blogs.adobe.com/collabmethods/2010/08/screen-sharing-and-recording-august-feature-tsunami.html&quot; target=&quot;_blank&quot;&gt;incorporate screensharing functionality&lt;/a&gt; into your Flash and Flex based applications. This is pretty huge considering that developers have been asking for this feature for the best part of 10 year, but it&apos;s also a slight disappointment to see this feature tied to &lt;a href=&quot;http://www.adobe.com/devnet/flashplatform/services/collaboration/&quot; target=&quot;_blank&quot;&gt;LiveCycle Collaboration Service (LCCS)&lt;/a&gt; and not as an inherent Flash Player feature which can be leveraged with other technologies such as Flash Media Server. All things considered though it is a step in the right direction. Will we see screensharing become usable with FMS one day? I&apos;m not too sure...  [More]
				</description>
				
				<category>Events</category>				
				
				<pubDate>Fri, 27 Aug 2010 09:55:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/8/27/lccs-screensharing-in-flash</guid>
				
			</item>
			
			<item>
				<title>Flash Camp Birmingham, 7th September 2010 - Are You Coming?</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/8/26/flash-camp-birmingham-2010</link>
				<description>
				
				&lt;img src=&quot;http://flashmidlands.com/flashcamp/birminghamLogo.png&quot; hspace=&quot;10&quot; vspace=&quot;10&quot;&gt;&lt;p&gt;
UPDATE - FlashCamp Birmingham has now been postponed until March 2011&lt;p&gt;
There&apos;s less than 2 weeks to go to Flash Camp Birmingham, right in the heart of sunny England. Ok, it may not be sunny but that&apos;s just one more reason to spend a day at the Birmingham Library Theatre. In case you have been thinking about attending I recommend you &lt;a href=&quot;http://flashmidlands.com/flashcamp/birmingham.html&quot; target=&quot;_blank&quot;&gt;sign up right now&lt;/a&gt; and grab one of the FREE (yes free!) tickets and catch some of the great sessions by Seb-Lee Delisle, Niqui Merrett, Steve Carpenter and other well known figures.&lt;p&gt;
Yours truly will be attending and I&apos;m very much looking forward to catching up with old and new friends alike. Flash Camp Birmingham - Miss it at your peril. &lt;a href=&quot;http://flashmidlands.com/flashcamp/birmingham.html&quot; target=&quot;_blank&quot;&gt;Register now&lt;/a&gt;. 
				</description>
				
				<category>Events</category>				
				
				<pubDate>Thu, 26 Aug 2010 10:12:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/8/26/flash-camp-birmingham-2010</guid>
				
			</item>
			
			<item>
				<title>Funciton AS3 Library for FMS (Clientside Load Balancing)</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/8/17/as3-fms-lib</link>
				<description>
				
				Fernando Florez has just shared some interesting classes for FMS on the Flash Media List. SThey are handy if you want to load balance FMS connections on the client side. Why would you do that? It&apos;s cheaper than doing it serverside and also you have more control to switch servers for new connected clients on the fly without restarts, let you work with different providers, etc.
&lt;p&gt;
Here&apos;s some sample code:
&lt;code&gt;

import funciton.models.UpstreamServer;
import funciton.utils.DateUtils;
import funciton.net.BaseConnector;
import funciton.utils.PendingCall;

var upstream1:UpstreamServer = new UpstreamServer(&quot;myhost1&quot;, &quot;myDemoApp&quot;, 1935, &quot;rtmp&quot;);

var upstream2:UpstreamServer = new UpstreamServer(&quot;myhost2&quot;, &quot;myDemoApp&quot;, 443, &quot;rtmps&quot;); // box with security certificate
upstream2.down = true; // it is down for maintenance

var upstream3:UpstreamServer = new UpstreamServer(&quot;myhostAtOutsourceCompany&quot;, &quot;myDemoApp&quot;, 1935, &quot;rtmp&quot;);
upstream3.max_fails = 3; // if it fails for more than 3 times disable it from the pool
upstream3.expires = DateUtils.HOUR_IN_MS; // if it reaches max_fails re-enable it on the pool after an hour
upstream3.backup = true; // it&apos;s a backup server. Use it only if upstream1 fails

var baseConnector:BaseConnector = new BaseConnector();
var ncHandler:PendingCall = baseConnector.connect(new Vector([upstream1, upstream2, upstream3]);
ncHandler.onResult = function(nc:NetConnection):void{
trace (&quot;connection ok&quot;);
}
ncHandler.onFault = function():void{
trace (&quot;connection failed&quot;);
}
&lt;/code&gt;
&lt;p&gt;
BaseConnector class will do all the pool handling/logic. The first successful connection is kept and the rest are closed / discarded. With upstreams declared you can implement round robin or client hash logic easily.&lt;p&gt;
The code is on github and can be found here: &lt;a href=&quot;http://github.com/funciton/funciton-aslib&quot; target=&quot;_blank&quot;&gt;http://github.com/funciton/funciton-aslib&lt;/a&gt;
&lt;p&gt;
Thanks Fernando, great stuff. 
				</description>
				
				<category>FMS</category>				
				
				<pubDate>Tue, 17 Aug 2010 09:59:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/8/17/as3-fms-lib</guid>
				
			</item>
			
			<item>
				<title>Cheap Mobile Broadband When Visiting Germany</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/8/16/mobile-broadband-germany</link>
				<description>
				
				I&apos;ve recently traveled around France and Germany with my family and needed to get online cheaply whilst there - yes, the idea of &apos;switching off&apos; is nice in theory but if you have paying customers who aren&apos;t pleased when a server goes down then you know the importance of being online to least check your email. As you probably know, roaming charges for data are charged (for no apparent reason tbh) at ridiculous rates, mine being &#xa3;3 per MB via my provider which is O2. If you know me then you&apos;ll know that I&apos;m no fan of being ripped off so I looked for a cheaper solution - read on for more info.&lt;p&gt;
We had free WIFI at our accommodation in France but since my father (with whom we stayed in Germany) neither has a landline nor a mobile broadband tariff (&apos;Interweb? What do I need that for&apos;) I had to find another solution - and I quickly found one (but read on to the end for an even cheaper one).  [More]
				</description>
				
				<category>Off topic</category>				
				
				<pubDate>Mon, 16 Aug 2010 12:05:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/8/16/mobile-broadband-germany</guid>
				
			</item>
			
			<item>
				<title>FMS User Group: Adobe Flash Access - Your Questions Answered</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/8/12/flash-access-user-group</link>
				<description>
				
				We have another FMS User Group Event coming up on August 19th. This time the topic will be Flash Access, &apos;a robust content protection and monetization solution that lets content owners, distributors, and advertisers realize new sources of revenue by providing seamless access to premium content.&#xa0; Sounds straight-forward enough, but have you ever wanted to ask the Product Manager specific, pointed questions to get answers that you can apply to your use case?&#xa0; Well, now is your chance to do exactly that.&apos;
&lt;p&gt;
Join Florian Pestoni, Principal Product Manager at Adobe, on the August 19th meeting of the FMSUG (&lt;a href=&quot;http://fms.groups.adobe.com/index.cfm?event=post.display&amp;postid=29673&quot; target=&quot;_blank&quot;&gt;http://fms.groups.adobe.com/index.cfm?event=post.display&amp;postid=29673&lt;/a&gt;) for an in-depth Q&amp;A session on Flash Access, the next-generation content protection and monetization system for streaming and download of premium video.
&lt;p&gt;
Do you have technical, roadmap, or licensing questions?&#xa0; This is your chance to ask!&#xa0; Please submit your questions to Josh Lucero (josh@realeyes.com) by TODAY Thursday, August 12th -- we may not be able to answer all questions, but we&apos;ll try to cover as much ground as possible.&#xa0;
&lt;p&gt;
You can find more information about Flash Access on the product page (&lt;a href=&quot;http://adobe.com/products/flashaccess&quot; target=&quot;_blank&quot;&gt;http://adobe.com/products/flashaccess&lt;/a&gt;) as well as online documentation (&lt;a href=&quot;http://www.adobe.com/support/documentation/en/flashaccess&quot; target=&quot;_blank&quot;&gt;http://www.adobe.com/support/documentation/en/flashaccess&lt;/a&gt;).
&lt;p&gt;
Times by Time Zone:&lt;br&gt;
Eastern Time - 12:00 Noon&lt;br&gt;
Central Time- 11:00am&lt;br&gt;
Mountain Time- 10:00am&lt;br&gt;
Pacific Time- 9:00am&lt;br&gt;
&lt;br&gt; 
				</description>
				
				<category>Events</category>				
				
				<pubDate>Thu, 12 Aug 2010 10:00:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/8/12/flash-access-user-group</guid>
				
			</item>
			
			<item>
				<title>Hardening Guide for Flash Media Server</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/7/21/fms-hardening-guide</link>
				<description>
				
				Asa Whillock has posted a great article on Adobe&apos;s Developer Center titled &lt;a href=&quot;http://www.adobe.com/devnet/flashmediaserver/articles/hardening_guide.html&quot; target=&quot;_blank&quot;&gt;&apos;Hardening Guide for Flash Media Server&apos;&lt;/a&gt;. In it he covers &apos;ways to prevent your FMS from being used for unintended purposes, as well as understand how to disable features you don&apos;t need and gain insights about some things you may not have known about your server.&apos;
&lt;p&gt;
&lt;a href=&quot;http://www.adobe.com/devnet/flashmediaserver/articles/hardening_guide.html&quot; target=&quot;_blank&quot;&gt;This is a must read&lt;/a&gt; for everyone who deals with FMS. 
				</description>
				
				<category>FMS</category>				
				
				<pubDate>Wed, 21 Jul 2010 09:36:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/7/21/fms-hardening-guide</guid>
				
			</item>
			
			<item>
				<title>Migrating StyleManager.getStyleDeclaration (Flex 3) to IStyleManager2.getStyleDeclaration (Flex 4)</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/7/16/getStyleDeclaration-to-IStyleManager2-flex</link>
				<description>
				
				&lt;p&gt;Today I was working on a Flex 3 application which I now want to compile using the Flex 4 SDK. One of the warnings that cropped up in the Flash Builder Problems panel was the following message:&lt;br /&gt;
3608: &apos;getStyleDeclaration&apos; has been deprecated since 4.0.  Please use &apos;IStyleManager2.getStyleDeclaration on a style manager instance&apos;.&lt;/p&gt;
&lt;p&gt;The line in question was  the following which applies a global theme color after a color value has been loaded from a remote data source::&lt;br /&gt;
&lt;code&gt;StyleManager.getStyleDeclaration(&apos;global&apos;).setStyle(&apos;themeColor&apos;, &apos;0x&apos;+gradient_to);
&lt;/code&gt;
&lt;p&gt;It took me some time to figure out what the heck the &apos;use IStyleManager2.getStyleDeclaration on a style manager instance&apos; actually meant... it was by no means a straight forward warning. After some Googling and trial and error I came up with this which seems to do the job:&lt;br /&gt;
&lt;code&gt;
var cssDeclaration:CSSStyleDeclaration = FlexGlobals.topLevelApplication.styleManager.getStyleDeclaration(&apos;global&apos;);
cssDeclaration.setStyle(&apos;themeColor&apos;, &apos;0x&apos;+gradient_to);
&lt;/code&gt;
&lt;br /&gt;
  &lt;br /&gt;
I&apos;m not sure if this is the correct and/or best way to achieve the same thing but it appears to work which generally is good enough for my requirements :-) &lt;br /&gt;
Hope this helps someone, please leave feedback and corrections where applicable.&lt;/p&gt; 
				</description>
				
				<category>Flex</category>				
				
				<category>Flash Player</category>				
				
				<pubDate>Fri, 16 Jul 2010 10:08:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/7/16/getStyleDeclaration-to-IStyleManager2-flex</guid>
				
			</item>
			
			<item>
				<title>YouTube: &apos;Flash Platform Is Best For Video Distribution&apos;</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/29/youtube-thumbs-up-to-flash</link>
				<description>
				
				John Harding, Software Engineer at Google, has posted a &lt;a href=&quot;http://apiblog.youtube.com/2010/06/flash-and-html5-tag.html&quot; target=&quot;_blank&quot;&gt;lengthy article&lt;/a&gt; about the pros and cons of &lt;a href=&quot;http://apiblog.youtube.com/2010/06/flash-and-html5-tag.html&quot; target=&quot;_blank&quot;&gt;Flash video and HTML5 video support&lt;/a&gt; in today&apos;s browsers. It&apos;s fair to say that the post is in essence a major thumbs up to the Flash Platform. The author points out that video on the web today is much more than a simple video tag pointed at a file, but involves other considerations such as widely supported codecs, secure delivery mechanisms where required by content owners, two way video and audio for recording live via webcam as well as immersive fullscreen options. &lt;br&gt;
All this is of course supported today via the Flash Player but not via HTML5, and whilst we all agree that it&apos;d be very nice not to have to wrap a video into a SWF wrapper we must also face the reality that in many cases a simple click and play experience just doesn&apos;t cut it anymore. HTML5&apos;s video capabilities could have given Flash a run for its money about 10 years ago when Flash first started building momentum for online video delivery, but they are no match for the type of features that web users today are accustomed to and demand as standard. &lt;p&gt;
Sure, of course I am biased, but I am also smart enough to know when I&apos;m beating a dead horse, and Flash definitely is not one of those. Whilst new technologies such as HTML5 are most welcome, especially when they make a developer&apos;s life easier they also need to make sure that they don&apos;t over-promise and under-deliver. The amount of hype some companies have been able to generate around HTML5 is almost unreal, yet the follow-up on that hype remains to be seen. In the meantime I&apos;ll get back to work to make bling with Flash, clients are waiting and the biggest app store of all is still the web ;-)&lt;p&gt;How did I get here? Sorry - &lt;a href=&quot;http://apiblog.youtube.com/2010/06/flash-and-html5-tag.html&quot; target=&quot;_blank&quot;&gt;here&apos;s the YouTube blog post&lt;/a&gt; again. 
				</description>
				
				<category>Flash Player</category>				
				
				<pubDate>Tue, 29 Jun 2010 19:56:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/29/youtube-thumbs-up-to-flash</guid>
				
			</item>
			
			<item>
				<title>Downgrading Apple iPhone OS 4.0 to 3.1.3</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/25/apple-ios4-downgrade</link>
				<description>
				
				I&apos;ve had major performance issues on my iPhone 3G (which is over 2 years old) after upgrading to the new iOS 4.0. Apps took much longer to launch, password entry forms did not respond quickly enough and the whole experience was just much much worse than using the 3.1.3 firmware version. Unfortunately I quickly found out that Apple does not like you to downgrade the OS and firmware for reasons that are only known to them, regardless of the fact that the new OS clearly does not perform well on a 3G model. &lt;br&gt;
I tried the &apos;normal&apos; downgrade process using iTunes 9.2, a 3.1.3 firmware file which I downloaded from &lt;a href=&quot;http://www.felixbruns.de/iPod/firmware/&quot; target=&quot;_blank&quot;&gt;this site&lt;/a&gt; and entering the phone into DFU mode as described in various guides. However at the end of the restore process I always got Error 1015 which basically translates to &apos;Nice try my boy&apos;. &lt;p&gt;
Fortunately after unsuccessfully trying a few different approaches I came across &lt;a href=&quot;http://www.funkyspacemonkey.com/downgrade-iphone-os-40-313-mac-windows&quot; target=&quot;_blank&quot;&gt;this guide&lt;/a&gt; which uses the iRecovery tool after Error 1015 has manifested itself and this worked a treat. I managed to downgrade to 3.1.3 without issues following &lt;a href=&quot;http://www.funkyspacemonkey.com/downgrade-iphone-os-40-313-mac-windows&quot; target=&quot;_blank&quot;&gt;the steps described&lt;/a&gt;. So if you too are stuck at Error 1015 then give that guide a try - but you do so at your own risk of course. &lt;p&gt;
Hope this helps someone. 
				</description>
				
				<category>Off topic</category>				
				
				<pubDate>Fri, 25 Jun 2010 09:01:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/25/apple-ios4-downgrade</guid>
				
			</item>
			
			<item>
				<title>Flex Whiteboard Component Now Available For Wowza (and FMS and RED5)</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/24/flex-wowza-whiteboard-component</link>
				<description>
				
				&lt;img src=&quot;http://www.flashcomguru.com/images/mediaservers.jpg&quot; align=&quot;left&quot; hspace=&quot;7&quot; vspace=&quot;7&quot;&gt;I&apos;m happy to announce the immediate availability of our &lt;a href=&quot;http://www.flashcomguru.com/components/flex_whiteboard/index.cfm&quot;&gt;Flex Whiteboard Component for Wowza Media Server&lt;/a&gt;. Darren did a terrific job of porting our existing Red5 version (which in turn is based on the FMS version), and it turned out that only minimal client side changes were necessary.&lt;br&gt;
The &lt;a href=&quot;http://www.flashcomguru.com/components/flex_whiteboard/index.cfm&quot;&gt;whiteboard component for Wowza&lt;/a&gt; is priced in the same way as the other two versions for FMS and Red5: $499 for the component version (.swc), with an optional source code license priced at $3,000.00 (most users won&apos;t need the source version since the component has an &lt;a href=&quot;/components/flex_whiteboard/class_doc/index.html&quot; target=&quot;_blank&quot;&gt;extensive API&lt;/a&gt;). &lt;p&gt;
To purchase the component please use the &lt;a href=&quot;http://www.flashcomguru.com/components/flex_whiteboard/index.cfm&quot;&gt;form on the product page&lt;/a&gt;, drop me an &lt;a href=&quot;/contact&quot; target=&quot;_blank&quot;&gt;email&lt;/a&gt; with any questions, or leave a comment below. 
				</description>
				
				<category>Components</category>				
				
				<pubDate>Thu, 24 Jun 2010 12:00:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/24/flex-wowza-whiteboard-component</guid>
				
			</item>
			
			<item>
				<title>New Wins For Wowza</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/24/wowza-netromedia</link>
				<description>
				
				More evidence that Adobe needs to step up their game with FMS as the ever popular &lt;a href=&quot;http://www.wowzamedia.com/index.html&quot; target=&quot;_blank&quot;&gt;Wowza Media Server&lt;/a&gt; announces several new developments. Not only did they manage to sign up LifeSize Communications, a division of Logitech, who have licensed Wowza Media Server 2 software to support the delivery of streaming video via their &lt;a href=&quot;http://www.wowzamedia.com/2010-06-02.html&quot; target=&quot;_blank&quot;&gt;LifeSize Video Center.&lt;/a&gt; &lt;br&gt;
They also announced that &lt;a href=&quot;http://www.netromedia.com/Default.aspx&quot; target=&quot;_blank&quot;&gt;Netromedia&lt;/a&gt; have partnered with Wowza &quot;to provide customers with unmatched freedom for streaming live and on-demand content to online audiences on any screen.&quot;&lt;p&gt;
Wowza is stepping up the pressure with a media server offering that is undoubtedly very flexible both in terms of ingestion protocol support as well as platform reach with being able to stream not only to Flash Player but also to iDevices, Silverlight, Quicktime and more. &lt;p&gt;
Disclosure: both &lt;a href=&quot;http://www.wowzamedia.com/index.html&quot; target=&quot;_blank&quot;&gt;Wowza&lt;/a&gt; and &lt;a href=&quot;http://www.netromedia.com/Default.aspx&quot; target=&quot;_blank&quot;&gt;Netromedia&lt;/a&gt; are advertising partners of this blog 
				</description>
				
				<category>Press Releases</category>				
				
				<pubDate>Thu, 24 Jun 2010 11:47:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/24/wowza-netromedia</guid>
				
			</item>
			
			<item>
				<title>Securing Remoting Access To ColdFusion CFCs From Flex</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/21/securing-cfc-access-from-flex</link>
				<description>
				
				Today I was working on a Flex application which uses a lot of Remoting calls to a bunch of ColdFusion CFC methods. I wondered what the most efficient way of securing these methods would be since they are effectively wide open to the world as they all (have to) specify access=&amp;quot;remote&amp;quot;. This means that anyone with a web browser can invoke the methods and they will even return nice error messages when certain parameters are missing.&lt;br /&gt;
One way of restricting access would be to run all Remoting calls through an intermediate page or CFC which handles authentication and access control and which in turn invokes the (now private) CFC methods. I found this a bit cumbersome and I also knew that there was a better way - I remembered the setCredentials method back from the AS2 days. You can see this described in greater detail by &lt;a href=&quot;http://www.bpurcell.org/blog/index.cfm?mode=entry&amp;amp;entry=978&quot; target=&quot;_blank&quot;&gt; Brandon Purcell&lt;/a&gt; in his MAX session &lt;a href=&quot;http://www.bpurcell.org/blog/index.cfm?mode=entry&amp;amp;entry=978&quot;&gt;Securing  Applications&lt;/a&gt; from 2003(!), but unfortunately it is not directly usabel in today&apos;s Flex world.
&lt;/p&gt;
&lt;p&gt;While Brandon&apos;s example is great, and &lt;a href=&quot;http://www.coldfusionjedi.com/index.cfm/2006/11/25/Last-build-of-my-Flex-2ColdFusion-Security-Homework&quot; target=&quot;_blank&quot;&gt;Ray Camden&lt;/a&gt; also has &lt;a href=&quot;http://www.coldfusionjedi.com/index.cfm/2006/11/25/Last-build-of-my-Flex-2ColdFusion-Security-Homework&quot; target=&quot;_blank&quot;&gt;some details&lt;/a&gt; to add, neither example had all the pieces I needed, particularly an example of not just authenticating a Flex application properly with a CFC but also how to log out again (and to jump ahead, simply running a cflogout tag did not work...).&lt;/p&gt;  [More]
				</description>
				
				<category>Applications</category>				
				
				<category>Flex</category>				
				
				<pubDate>Mon, 21 Jun 2010 12:01:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/21/securing-cfc-access-from-flex</guid>
				
			</item>
			
			<item>
				<title>Strobe Media Playback Presentation</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/15/strobe-media-player</link>
				<description>
				
				There&apos;s a live online presentation about the new Strobe Media Playback player coming up tomorrow at the OSMF user group. Ovidiu Eftimie from Adobe&apos;s Strobe Media Playback team will be presenting the features of this new versatile &quot;ready-to-go&quot; video player. There&apos;ll be an insight into the roadmap for future additions to the player, and time to ask questions.
&lt;p&gt;
The presentation starts at 12:00 (West Coast), 20:00 (London), and can be accessed by anyone through this URL &lt;a href=&quot;http://experts.na3.acrobat.com/osmf&quot; target=&quot;_blank&quot;&gt;http://experts.na3.acrobat.com/osmf&lt;/a&gt;
&lt;p&gt;
You can find out more about Strobe Media Playback at &lt;a href=&quot;http://labs.adobe.com/technologies/strobemedia&quot; target=&quot;_blank&quot;&gt;http://labs.adobe.com/technologies/strobemedia&lt;/a&gt; 
				</description>
				
				<category>Events</category>				
				
				<category>OSMF</category>				
				
				<pubDate>Tue, 15 Jun 2010 10:52:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/15/strobe-media-player</guid>
				
			</item>
			
			<item>
				<title>Creating A GMail Filter For Unread Emails</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/6/8/gmail-unread-filter</link>
				<description>
				
				UPDATE&lt;br&gt;
Hmm so after using this filter for a few days it now appears that whilst it catches all email already in your inbox it does not apply the same filter to newly received messages. This makes this entire tip pretty useless... I&apos;ll keep looking for a solution to this but for the time being I don&apos;t recommend you use the filter described below. If you have any tips please leave a comment.&lt;p&gt;
If you are like me you may be using Google Apps (or GMail) in combination with an IMAP enabled email client such as Mail or Outlook. Recently I noticed that I was missing some emails which were not caught by any of my filters: in a nutshell, I filter emails for each domain I want to receive email for by applying a label which then shows up as an IMAP folder in OSX Mail. However some senders, particularly bulk emails such as newsletters, specify the &apos;to&apos; address as either undisclosed or even as the sender address rather than the actual recipient&apos;s email address (in this case that&apos;d be mine) which in turn causes the emails to sit in my inbox amongst thousands of other emails where I may miss them. &lt;br&gt;
I thought it would be easy to simply create a new label for unread emails in GMail but unfortunately the label &apos;unread&apos; is reserved by Google (it did not use to be). You can of course also run a search for unread emails but that does not give you the ability to automatically label the matching messages. To workaround this you can do the following:&lt;br&gt;
1) create a new label such as &apos;_unread&apos; &lt;br&gt;
2) create a new filter with the criteria of &apos;label:unread&apos; in the &apos;Has the words:&apos; field&lt;br&gt;
3) Test the filter: all your unread emails should show up&lt;br&gt;
4) click &apos;Next Step&apos; and ignore the warning&lt;br&gt;
5) apply the label you created in step 1
&lt;p&gt;
You should now have a new folder in your email client that shows you all unread emails in GMail. One thing to note is that your local folder may also show any corresponding read messages which are tied to the same conversation as an unread message. 
				</description>
				
				<category>Off topic</category>				
				
				<pubDate>Tue, 08 Jun 2010 09:23:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/6/8/gmail-unread-filter</guid>
				
			</item>
			
			<item>
				<title>OSMF 1.0 Is Here</title>
				<link>http://www.flashcomguru.com/index.cfm/2010/5/28/osmf_1_0</link>
				<description>
				
				The &lt;a href=&quot;http://blogs.adobe.com/osmf/2010/05/announcing_osmf_10.html&quot; target=&quot;_blank&quot;&gt;Open Source Media Framework&lt;/a&gt; has today reached 1.0 status. If you&apos;re like me and have been holding back on using OSMF until it is out of beta then now would be a good time to dive in and start getting familiar with it.&lt;br&gt;
As you probably know, OSMF is a standardised foundation on which developers can build fully featured media players (not just for video playback) that encompass pretty much every aspect of delivery the Flash Platform has to offer be it dynamic streaming, live and on-demand content, image slideshowsn audio players and much much more. Some of the video components in the newly released Flash Builder product are also based on OSMF, and ship complete with source code.&lt;p&gt;
Go &lt;a href=&quot;http://blogs.adobe.com/osmf/2010/05/announcing_osmf_10.html&quot; target=&quot;_blank&quot;&gt;check out OSMF&lt;/a&gt; and have a play. 
				</description>
				
				<category>OSMF</category>				
				
				<pubDate>Fri, 28 May 2010 13:53:00 --0100</pubDate>
				<guid>http://www.flashcomguru.com/index.cfm/2010/5/28/osmf_1_0</guid>
				
			</item>
			</channel></rss>