<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Georgi.Budinov.com » ActionScript</title>
	
	<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" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/budinov/mAhu" /><feedburner:info uri="budinov/mahu" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>budinov/mAhu</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Fix for wmode bug still existing in FireFox</title>
		<link>http://feedproxy.google.com/~r/budinov/mAhu/~3/2MB8-FyPl78/</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 --><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=2MB8-FyPl78:emkeVyxAG0c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=2MB8-FyPl78:emkeVyxAG0c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=2MB8-FyPl78:emkeVyxAG0c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/budinov/mAhu/~4/2MB8-FyPl78" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://georgi.budinov.com/2010/09/fix-for-wmode-bug-still-existing-in-firefox/</feedburner:origLink></item>
		<item>
		<title>Flash Player 10.1 and wmode bug</title>
		<link>http://feedproxy.google.com/~r/budinov/mAhu/~3/B22se8ObHm4/</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 --><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=B22se8ObHm4:anu4oQB9XoI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=B22se8ObHm4:anu4oQB9XoI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=B22se8ObHm4:anu4oQB9XoI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/budinov/mAhu/~4/B22se8ObHm4" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://georgi.budinov.com/2010/07/flash-player-10-1-and-wmode-bug/</feedburner:origLink></item>
		<item>
		<title>First steps in flashlite development</title>
		<link>http://feedproxy.google.com/~r/budinov/mAhu/~3/U8Mp1mrIaqM/</link>
		<comments>http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 18:33:17 +0000</pubDate>
		<dc:creator>Georgi Budinov</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[FlashLite]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[sis]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://georgi.budinov.com/?p=446</guid>
		<description><![CDATA[Recently I started getting to know better the flashlite development. I played around with some examples and got really inspired of what I possible could do. So the first two things I looked at were: the simplest way of creating sis files to be installed for development and testing creating a basic layout template for [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I started getting to know better the flashlite development. I played around with some examples and got really inspired of what I possible could do. So the first two things I looked at were:<br />
<span id="more-446"></span></p>
<ul>
<li>the simplest way of creating sis files to be installed for development and testing</li>
<li>creating a basic layout template for flashlite applications that can easily manage different screen sizes</li>
</ul>
<p>There are a lot of desktop applications that can generate sis files, most of them if not all you must buy. Also they need certificates for signing the sis files &#8230; I don&#8217;t have one, so I need to use the symbiansigned site but the process is a little slow because you have to send your sis file and then they return it back by email already signed just for your IMEI. Nice to know that though I spent a hour to get aware of the whole thing. So this is no suitable for me. Finally I found two online packagers.</p>
<p>SWFpack.com is one of them. It seems to get the job done but its registration is closed apparently. So I started using the other option &#8211; Forum Nokia Online Flash Lite Packager. It is a cool thing, really fast to generate just a sis file ready to test on your mobile device. Cool!</p>
<p>The other thing I looked at was the layout template for my app in the future. I came accross some examples in forum nokia for creating layouts. It is explained very well here in this document &#8211; <a rel="nofollow" href="http://sw.nokia.com/id/cd052033-3323-40d7-b090-13c1fdd79a2b/Flash_Lite_UI_Design_Guide_for_Keypad_and_Touch_Devices_v1_0_en.pdf">UI Design</a> .</p>
<p>There is another approach however explained here in this <a rel="nofollow" href="http://www.adobe.com/devnet/devices/articles/dynamic_layout.html">link</a>. It is very easy to adopt this template but it has problems with larger screen size and touch screens , for example N97 mini where if you turn the rotation as portrait you get the touch screen&#8217;s soft keys that overlap your own buttons so it needs a little more work.</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/first-steps-in-flashlite-development/&amp;title=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in Del.icio.us"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Bookmark 'First steps in flashlite development' in Del.icio.us" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;title=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in digg"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Bookmark 'First steps in flashlite development' in digg" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/" title="Bookmark 'First steps in flashlite development' in Technorati"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Bookmark 'First steps in flashlite development' in Technorati" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;t=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in Yahoo My Web"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Bookmark 'First steps in flashlite development' in Yahoo My Web" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;title=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in Google Bookmarks"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Bookmark 'First steps in flashlite development' in Google Bookmarks" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;title=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in Live-MSN"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Bookmark 'First steps in flashlite development' in Live-MSN" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;t=First+steps+in+flashlite+development" title="Bookmark 'First steps in flashlite development' in FaceBook"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Bookmark 'First steps in flashlite development' in FaceBook" alt="Bookmark 'First steps in flashlite development' 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=First+steps+in+flashlite+development&amp;c=http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/" title="Bookmark 'First steps in flashlite development' in MySpace"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/myspace.png" title="Bookmark 'First steps in flashlite development' in MySpace" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/" title="Bookmark 'First steps in flashlite development' in Twitter"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Bookmark 'First steps in flashlite development' in Twitter" alt="Bookmark 'First steps in flashlite development' 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=First+steps+in+flashlite+development&amp;url=http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/" title="Bookmark 'First steps in flashlite development' in FriendFeed"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/friendfeed.png" title="Bookmark 'First steps in flashlite development' in FriendFeed" alt="Bookmark 'First steps in flashlite development' 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/first-steps-in-flashlite-development/&amp;title=First+steps+in+flashlite+development&amp;srcURL=http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/" title="Bookmark 'First steps in flashlite development' in Google Buzz"><img src="http://georgi.budinov.com/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Bookmark 'First steps in flashlite development' in Google Buzz" alt="Bookmark 'First steps in flashlite development' in Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END --><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=U8Mp1mrIaqM:7A7QioboyjA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?i=U8Mp1mrIaqM:7A7QioboyjA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/budinov/mAhu?a=U8Mp1mrIaqM:7A7QioboyjA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/budinov/mAhu?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/budinov/mAhu/~4/U8Mp1mrIaqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://georgi.budinov.com/2010/07/first-steps-in-flashlite-development/</feedburner:origLink></item>
	</channel>
</rss>

