<?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>Georgi.Budinov.com &#187; Flex</title>
	<atom:link href="http://georgi.budinov.com/category/programming/actionscript/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://georgi.budinov.com</link>
	<description>The sacred mission of a Web Developer - Get the job done!</description>
	<lastBuildDate>Wed, 02 Nov 2011 13:55:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Fix for wmode bug still existing in FireFox</title>
		<link>http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/</link>
		<comments>http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 13:30:17 +0000</pubDate>
		<dc:creator>Georgi Budinov</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://georgi.budinov.com/?p=735</guid>
		<description><![CDATA[I had written a post already for the fixed wmode bug in the new version of flash player in FireFox but now I have made almost complete fix for the issue. The issue itself is appearing when you try to use shift+arrows selection shortcut in TextInput field. So what I did was just to extend [...]]]></description>
			<content:encoded><![CDATA[<p>I had written a post already for the <span style="text-decoration: line-through;">fixed</span> wmode bug in the new version of flash player in FireFox but now I have made almost complete fix for the issue. The issue itself is appearing when you try to use shift+arrows selection shortcut in TextInput field. So <span id="more-735"></span> what I did was just to extend the TextInput class and use that. The implementation perhaps looks quite strange, but works! Still not working fully as expected though but I played with that too much time and couldn&#8217;t adjust it to work absolutely fine. So if anyone wants to spent some more time on the code hete it is:</p>
<pre class="brush: as3;">
package
{
	import mx.controls.TextInput;
	import mx.events.FlexEvent;
	import flash.events.KeyboardEvent;
	import flash.events.Event;
	import flash.ui.Keyboard;
	import flash.external.ExternalInterface;

	public class CafeTextInput extends TextInput
	{
		private var ssi : int = 0;
		private var sei : int = 0;
		private var shiftDirection : String = 'none';
		private var lastShiftDirection : String = 'none';

		public function CafeTextInput()
		{
			super();
			var method:XML = &lt;![CDATA[
			     function( ){
			         return { ff: /Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent), version:navigator.appVersion};}
			    ]]&gt;
			var o:Object = ExternalInterface.call( method );

			if(o.ff)
			{
				this.addEventListener(KeyboardEvent.KEY_DOWN, onBeforeKeyDown, false, 10000);
				this.addEventListener(KeyboardEvent.KEY_DOWN, onAfterKeyDown, false, -10000);
			}
		}

		private function onBeforeKeyDown(e : KeyboardEvent) : void
        {
			if (e.keyCode == Keyboard.LEFT || e.keyCode == Keyboard.RIGHT)
			{
				if(ssi == -11111111 &amp;&amp; sei == -11111111)
				{
					ssi = this.selectionBeginIndex;
					sei = this.selectionEndIndex;
				}
			}
        }

        private function onAfterKeyDown(e : KeyboardEvent) : void
        {
			if (e.keyCode == Keyboard.LEFT || e.keyCode == Keyboard.RIGHT)
			{
				if(ssi != -11111111 &amp;&amp; sei != -11111111)
				{
					if(e.shiftKey)
					{
						if(sei == ssi)
						{
							shiftDirection = 'none';
						}

						if(e.keyCode == Keyboard.LEFT)
						{
							if(shiftDirection == 'right' &amp;&amp; lastShiftDirection != 'right')
							{
								sei--;
							}
							if(shiftDirection == 'none' &amp;&amp; ssi+1 == sei)
							{
								shiftDirection = 'left';
							}

							this.setSelection(sei, ssi);
							lastShiftDirection = 'left';
						}
						else if(e.keyCode == Keyboard.RIGHT)
						{
							if(shiftDirection == 'left' &amp;&amp; lastShiftDirection != 'left')
							{
								ssi++;
							}
							if(shiftDirection == 'none' &amp;&amp; ssi+1 == sei)
							{
								shiftDirection = 'right';
							}

							this.setSelection(ssi, sei);
							lastShiftDirection = 'right';
						}
					}
					else
					{
						shiftDirection = 'none';
						this.setSelection(ssi, sei);
					}

					ssi = -11111111;
					sei = -11111111;
				}
			}
                }
	}
}
</pre>
<div class="social_bookmark"><script type="text/javascript"><!--
google_ad_client = "pub-1171831089941131";
google_ad_slot = "5499515740";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div><!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark It</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;title=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Del.icio.us"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Del.icio.us" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;title=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in digg"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in digg" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Technorati"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Technorati" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;t=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Yahoo My Web"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Yahoo My Web" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;title=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Bookmarks"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Bookmarks" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;title=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Live-MSN"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Live-MSN" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;t=Fix+for+wmode+bug+still+existing+in+FireFox" title="Bookmark 'Fix for wmode bug still existing in FireFox' in FaceBook"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in FaceBook" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Fix+for+wmode+bug+still+existing+in+FireFox&amp;c=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/" title="Bookmark 'Fix for wmode bug still existing in FireFox' in MySpace"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in MySpace" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Twitter"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Twitter" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Twitter" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://friendfeed.com/share/bookmarklet/frame#title=Fix+for+wmode+bug+still+existing+in+FireFox&amp;url=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/" title="Bookmark 'Fix for wmode bug still existing in FireFox' in FriendFeed"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/friendfeed.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in FriendFeed" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in FriendFeed" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/&amp;title=Fix+for+wmode+bug+still+existing+in+FireFox&amp;srcURL=http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Buzz"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Buzz" alt="Bookmark 'Fix for wmode bug still existing in FireFox' in Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player 10.1 and wmode bug</title>
		<link>http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/</link>
		<comments>http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 10:48:00 +0000</pubDate>
		<dc:creator>Georgi Budinov</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[flash player]]></category>
		<category><![CDATA[wmode]]></category>

		<guid isPermaLink="false">http://georgi.budinov.com/?p=503</guid>
		<description><![CDATA[A few months ago when Adobe released the beta version of 10.1 flash player I was very happy to see my application working ok with wmode set to opaque. The text inputs were working absolutely fine with just a small problem &#8211; if you try selecting characters with the keyboard with shift and arrows or [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago when Adobe released the beta version of 10.1 flash player I was very happy to see my application working ok with wmode set to opaque. The text inputs were working absolutely fine with just a small problem &#8211; if you try selecting characters with the keyboard with shift and arrows or just moving cursor with arrow keys it was selecting/moving two characters as one. This was a little annoying for me and  I thought they will fix that too. As now the official release is out for about a month and more this problem still exists &#8211; yes you can enter non-latin characters but this annoying problem is still there. I am talking about using FireFox and as you know this is totally ok with IE ( for my surprise &#8211; I didn&#8217;t know that until these days). Something else &#8211; the wmode bug still exists in Google Chrome !! It is fixed in FF partially, but the situation in Google Chrome is the same as with the former version.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Bookmark It</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;title=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in Del.icio.us"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Del.icio.us" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;title=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in digg"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in digg" alt="Bookmark 'Flash Player 10.1 and wmode bug' in digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/" title="Bookmark 'Flash Player 10.1 and wmode bug' in Technorati"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Technorati" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;t=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in Yahoo My Web"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Yahoo My Web" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;title=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in Google Bookmarks"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Google Bookmarks" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;title=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in Live-MSN"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Live-MSN" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;t=Flash+Player+10.1+and+wmode+bug" title="Bookmark 'Flash Player 10.1 and wmode bug' in FaceBook"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in FaceBook" alt="Bookmark 'Flash Player 10.1 and wmode bug' in FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.myspace.com/Modules/PostTo/Pages/?t=Flash+Player+10.1+and+wmode+bug&amp;c=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/" title="Bookmark 'Flash Player 10.1 and wmode bug' in MySpace"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in MySpace" alt="Bookmark 'Flash Player 10.1 and wmode bug' in MySpace" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/" title="Bookmark 'Flash Player 10.1 and wmode bug' in Twitter"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Twitter" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Twitter" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://friendfeed.com/share/bookmarklet/frame#title=Flash+Player+10.1+and+wmode+bug&amp;url=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/" title="Bookmark 'Flash Player 10.1 and wmode bug' in FriendFeed"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/friendfeed.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in FriendFeed" alt="Bookmark 'Flash Player 10.1 and wmode bug' in FriendFeed" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/&amp;title=Flash+Player+10.1+and+wmode+bug&amp;srcURL=http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/" title="Bookmark 'Flash Player 10.1 and wmode bug' in Google Buzz"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Bookmark 'Flash Player 10.1 and wmode bug' in Google Buzz" alt="Bookmark 'Flash Player 10.1 and wmode bug' in Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

