<?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>actionscript 3 &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/actionscript-3/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>Flex 3 ComboBox disabled options</title>
		<link>/2009/03/05/flex-3-combobox-disabled-options/</link>
		<comments>/2009/03/05/flex-3-combobox-disabled-options/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 15:05:18 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[combobox]]></category>
		<category><![CDATA[disabled]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">/?p=299</guid>
		<description><![CDATA[How to make custom combo box.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/03/01/flex-3-custom-datechooser-2/" rel="bookmark" title="Flex 3 Custom DateChooser">Flex 3 Custom DateChooser </a></li>
<li><a href="/2009/03/18/flex-3-text-editor/" rel="bookmark" title="Flex 3 text editor">Flex 3 text editor </a></li>
<li><a href="/2009/03/31/flex-3-custom-timeline-component/" rel="bookmark" title="Flex 3 Custom Timeline Component">Flex 3 Custom Timeline Component </a></li>
<li><a href="/2009/05/20/flex-3-datechooser-utc-issue/" rel="bookmark" title="Flex 3 DateChooser UTC issue">Flex 3 DateChooser UTC issue </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Recently I had to make a drop down menu in a Flex Application, or either ComboBox in the Flex terminology, where some of the items in it should be disabled. Many <a target="_blank" mce_href="http://blog.flexexamples.com/2008/07/15/setting-a-selection-disabled-color-on-a-combobox-controls-dropdown-menu-in-flex/" href="http://blog.flexexamples.com/2008/07/15/setting-a-selection-disabled-color-on-a-combobox-controls-dropdown-menu-in-flex/">tutorials</a> explained how to make the entire ComboBox disabled, but that was out of scope here.The idea is to have a large range, let&#8217;s say the numbers from 1 to 30, and make 1 to 10 disabled, and the others &#8211; selectable. After reading the documentation of Adobe it appears that this is not possible with just using some attribute of the default component.</p>
<p>Of course in the case of only three you can make it with radio buttons or checkboxes. <a target="_blank" mce_href="http://stackoverflow.com/questions/257319/how-can-i-disable-an-individual-item-in-a-combo-box-in-flex-so-that-it-is-not-c" href="http://stackoverflow.com/questions/257319/how-can-i-disable-an-individual-item-in-a-combo-box-in-flex-so-that-it-is-not-c">Here</a> after the question how to write such a component, the answer is:</p>
<blockquote>
<p><font color="#808080"><i>Have you considered using radio buttons rather than a combo box?</i></font></p>
</blockquote>
<p>Well, no, I&#8217;m not! I&#8217;d like to make it for such a big range. In my case it was more than 200 options, the case with radio buttons is not enough. </p>
<p>Finally I found a sample of a disabled list items on <a target="_blank" mce_href="http://joshblog.net/2007/09/16/open-source-flex-components-advancedlist-and-checkboxlist/" href="http://joshblog.net/2007/09/16/open-source-flex-components-advancedlist-and-checkboxlist/">http://joshblog.net/</a> but yet again it was dealing with list, not a combo box. In my case the combo box has very important built in events and fires different kind of them in any special situation. That&#8217;s why I don&#8217;t think this sample could do the work. </p>
<p>Actually as it seems easy and usefull, almost nowhere there was such a component. In Adobe&#8217;s blogs I found interesting post <a target="_blank" mce_href="http://blogs.adobe.com/aharui/2007/06/disabling_list_selection.html" href="http://blogs.adobe.com/aharui/2007/06/disabling_list_selection.html">http://blogs.adobe.com/aharui/2007/06/disabling_list_selection.html</a> where the author describes how to make a list with that properties, and somewhere in the comments I found the component at last:</p>
<div class="comment-content">
<blockquote>
<p><i><font color="#808080">Hi Alex,<br />
I&#8217;m seeking the disabling combobox. Your posting give me some ideals.<br />
And now, I have implmented the disabling ComboBox and List using my<br />
method.<br />
Your blog is very helpful for me.Thanks.</font></i></p>
<p><i><font color="#808080">I have put my disabling ComboBox to my blog</font></i></p>
</blockquote>
<p>Here it is <a target="_blank" mce_href="http://wmcai.blog.163.com/blog/static/4802420088945053961/" href="http://wmcai.blog.163.com/blog/static/4802420088945053961/">http://wmcai.blog.163.com/blog/static/4802420088945053961/</a></p>
<p>Thanks to the author there is a demo and download. Soon I&#8217;ll share my experience with the disabled combo box items. </p>
</p></div>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/03/01/flex-3-custom-datechooser-2/" rel="bookmark" title="Flex 3 Custom DateChooser">Flex 3 Custom DateChooser </a></li>
<li><a href="/2009/03/18/flex-3-text-editor/" rel="bookmark" title="Flex 3 text editor">Flex 3 text editor </a></li>
<li><a href="/2009/03/31/flex-3-custom-timeline-component/" rel="bookmark" title="Flex 3 Custom Timeline Component">Flex 3 Custom Timeline Component </a></li>
<li><a href="/2009/05/20/flex-3-datechooser-utc-issue/" rel="bookmark" title="Flex 3 DateChooser UTC issue">Flex 3 DateChooser UTC issue </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/03/05/flex-3-combobox-disabled-options/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Flex 3 import swf symbols</title>
		<link>/2009/03/05/flex-3-import-swf-symbols/</link>
		<comments>/2009/03/05/flex-3-import-swf-symbols/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 07:30:35 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[movie clip]]></category>
		<category><![CDATA[symbol]]></category>

		<guid isPermaLink="false">/?p=291</guid>
		<description><![CDATA[Embedding a .swf file into Flex application can be difficult sometimes. Learn how to solve this issue.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/03/01/flex-3-custom-datechooser-2/" rel="bookmark" title="Flex 3 Custom DateChooser">Flex 3 Custom DateChooser </a></li>
<li><a href="/2009/03/18/flex-3-text-editor/" rel="bookmark" title="Flex 3 text editor">Flex 3 text editor </a></li>
<li><a href="/2009/03/15/flex-3-bitmap-with-round-corners/" rel="bookmark" title="Flex 3 bitmap with round corners">Flex 3 bitmap with round corners </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;d like to embed a .swf file into your Flex 3 application you&#8217;ll probably get into several little problems. The simple task of embedding is clear and well documented in the web. Let&#8217;s assume we&#8217;ve to MovieClip symbols into a single .swf file. What we like to do is to access this two separate symbols within the Flex applications as MovieClip.</p>
<figure id="attachment_292" style="width: 300px" class="wp-caption alignnone"><a href="/wp-content/uploads/2009/03/embed_swf_symbols_1.png"><img class="size-medium wp-image-292" title="embed_swf_symbols_1" src="/wp-content/uploads/2009/03/embed_swf_symbols_1-300x247.png" alt="make a movie clip in your flash" width="300" height="247" srcset="/wp-content/uploads/2009/03/embed_swf_symbols_1-300x247.png 300w, /wp-content/uploads/2009/03/embed_swf_symbols_1.png 796w" sizes="(max-width: 300px) 100vw, 300px" /></a><figcaption class="wp-caption-text">Make a new MovieClip symbol in your Flash</figcaption></figure>
<p>Make the .swf sample file with both symbols inside. In general it&#8217;s not that hard, just put this into your Flex application code:</p>
<p><code>[Embed(source="embed.swf", symbol="blue")]<br />
private var blue:Class;</code></p>
<p>[Embed(source=&#8221;embed.swf, symbol=&#8221;red&#8221;)]<br />
private var red:Class</p>
<p>Note that you&#8217;ve embed.swf file, which has to be in the same folder as the main .swf of the Flex app, and two symbols named red and blue for the sample. Be very careful when exporting the symbols from the .swf file. Do not forget to export them for actionscript.</p>
<figure id="attachment_293" style="width: 295px" class="wp-caption alignnone"><a href="/wp-content/uploads/2009/03/embed_swf_symbols_2.png"><img class="size-medium wp-image-293" title="embed_swf_symbols_2" src="/wp-content/uploads/2009/03/embed_swf_symbols_2-295x300.png" alt="Don't forget to export the .swf MovieClip for actionscript" width="295" height="300" srcset="/wp-content/uploads/2009/03/embed_swf_symbols_2-295x300.png 295w, /wp-content/uploads/2009/03/embed_swf_symbols_2.png 676w" sizes="(max-width: 295px) 100vw, 295px" /></a><figcaption class="wp-caption-text">Don&#39;t forget to export the .swf MovieClip for actionscript</figcaption></figure>
<p>If not exported like that, you&#8217;ll have trouble accessing them from the Flex app, and that&#8217;s the first problem you can have here.</p>
<figure id="attachment_294" style="width: 300px" class="wp-caption alignnone"><a href="/wp-content/uploads/2009/03/embed_swf_symbols_3.png"><img class="size-medium wp-image-294" title="embed_swf_symbols_3" src="/wp-content/uploads/2009/03/embed_swf_symbols_3-300x212.png" alt="Set the name of the MovieClip exactly as you wish to appear in your Flex application" width="300" height="212" srcset="/wp-content/uploads/2009/03/embed_swf_symbols_3-300x212.png 300w, /wp-content/uploads/2009/03/embed_swf_symbols_3.png 577w" sizes="(max-width: 300px) 100vw, 300px" /></a><figcaption class="wp-caption-text">Set the name of the MovieClip exactly as you wish to appear in your Flex application</figcaption></figure>
<p>The rest you have to do is to add this two lines of code in Flex:</p>
<p><code>var mc:MovieClip = new blue();<br />
this.addChild(mc);</code></p>
<p>Note that the last line can have something else than &#8216;this&#8217; if there&#8217;s other element to become parent of the imported MovieClip symbol. Here comes the first major problem. As <a title="www.airtightinteractive.com" href="http://www.airtightinteractive.com/news/?p=112" target="_blank">www.airtightinteractive.com</a> describes this technique does not work every time:</p>
<blockquote><p><em>Sometimes when you do this you will get the following error: </em></p>
<p><em><strong>TypeError: Error #1034: Type Coercion failed: cannot convert app_red@12510d1 to flash.display.MovieClip.</strong></em></p></blockquote>
<p>And the author shares his solution which is to add at least 2 keyframes for both movie clips, so that they can be visible as movie clips, if not they will remain visible only as Sprites.</p>
<p>I&#8217;m not as conviced this is the right answer of the question and the right solution. I&#8217;ve experimented with 1 or 2 keyframes and still have the same problem in Flex even if i cast the symbols as Sprite, not MovieClip:</p>
<p><code><span style="text-decoration: line-through;">var mc:MovieClip = new blue();</span><br />
var mc:Sprite = new blue();</code></p>
<p>The solution from Adobes for me is not suficient, cause the movie clips we import (embed) does not serve as images but more like movie clips, which was the task from the beggining. And that&#8217;s what <a title="adobe" href="http://livedocs.adobe.com/flex/3/html/help.html?content=embed_4.html" target="_blank">Adobe</a> says:</p>
<blockquote><p><em>Flex fully supports embedding Flash SWF files. You can embed different types of SWF files.</em><br />
<em>&#8230;</em><br />
<em>To reference a symbol, you specify the symbol parameter:</em><br />
<em>[Embed(source=&#8217;SWFFileName.swf&#8217;, symbol=&#8217;symbolName&#8217;)]</em></p></blockquote>
<p>And again read carefully the note in the Adobe&#8217;s site:</p>
<blockquote><p><em><strong>Note</strong>: Flash defines three types of<br />
symbols: Button, MovieClip, and Graphic. You can embed Button and<br />
MovieClip symbols in a Flex application, but you cannot embed a Graphic symbol because it cannot be exported for ActionScript.</em></p></blockquote>
<p>Here you can be sure that lack of exported for actionscript symbol is not accessible in Flex.</p>
<p>One of the main solutions is to embed the .swf as octet-stream:</p>
<p><code>[Embed(source="embed.swf", mimeType="application/octet-stream")]<br />
private var blue:Class;</code></p>
<p>followed by:</p>
<p><code>var loader:Loader = new Loader()<br />
loader.loadBytes(new blue());</code></p>
<p>And the key point of this will be the lines:</p>
<p><code>var red:Class = loader.contentLoaderInfo.applicationDomain.getDefinition("blue");<br />
var mc:MovieClip = new red() as MovieClip;</code></p>
<p>I hope this can help</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/03/01/flex-3-custom-datechooser-2/" rel="bookmark" title="Flex 3 Custom DateChooser">Flex 3 Custom DateChooser </a></li>
<li><a href="/2009/03/18/flex-3-text-editor/" rel="bookmark" title="Flex 3 text editor">Flex 3 text editor </a></li>
<li><a href="/2009/03/15/flex-3-bitmap-with-round-corners/" rel="bookmark" title="Flex 3 bitmap with round corners">Flex 3 bitmap with round corners </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/03/05/flex-3-import-swf-symbols/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Flex 3 Custom DateChooser</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/</link>
		<comments>/2009/03/01/flex-3-custom-datechooser-2/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 08:48:55 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[custom datechooser]]></category>
		<category><![CDATA[datechooser]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[mxml]]></category>

		<guid isPermaLink="false">/?p=256</guid>
		<description><![CDATA[I searched so much about a custom DateChooser component in Flex 3, that I decided to make one by myself. My criteria is to have ComboBoxes for both months and years. I simply merged the ComboBox component with DateChooser and there is the beta release. Please fill free to comment and report any bugs or &#8230; <a href="/2009/03/01/flex-3-custom-datechooser-2/" class="more-link">Continue reading <span class="screen-reader-text">Flex 3 Custom DateChooser</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/03/01/download-custom-flex-3-datechooser-2/" rel="bookmark" title="Download Custom Flex 3 DateChooser">Download Custom Flex 3 DateChooser </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
<li><a href="/2009/05/20/flex-3-datechooser-utc-issue/" rel="bookmark" title="Flex 3 DateChooser UTC issue">Flex 3 DateChooser UTC issue </a></li>
<li><a href="/2009/03/05/flex-3-combobox-disabled-options/" rel="bookmark" title="Flex 3 ComboBox disabled options">Flex 3 ComboBox disabled options </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>I searched so much about a custom DateChooser component in Flex 3, that I decided to make one by myself. My criteria is to have ComboBoxes for both months and years. I simply merged the ComboBox component with DateChooser and there is the beta release. Please fill free to comment and report any bugs or feature requests.</p>
<p>Demo is here:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="190" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="map" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="src" value="/wp-content/uploads/2009/02/calendar.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="450" height="190" src="/wp-content/uploads/2009/02/calendar.swf" wmode="transparent" align="middle" bgcolor="#ffffff" name="map"></embed></object></p>
<p>Free download: <a title="Flex 3 Custom DateChooser download" href="/2009/03/01/download-custom-flex-3-datechooser-2/">here<br />
</a></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/03/01/download-custom-flex-3-datechooser-2/" rel="bookmark" title="Download Custom Flex 3 DateChooser">Download Custom Flex 3 DateChooser </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
<li><a href="/2009/05/20/flex-3-datechooser-utc-issue/" rel="bookmark" title="Flex 3 DateChooser UTC issue">Flex 3 DateChooser UTC issue </a></li>
<li><a href="/2009/03/05/flex-3-combobox-disabled-options/" rel="bookmark" title="Flex 3 ComboBox disabled options">Flex 3 ComboBox disabled options </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/03/01/flex-3-custom-datechooser-2/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Bitmaps in actionscript 3</title>
		<link>/2009/02/06/bitmaps-in-actionscript-3/</link>
		<comments>/2009/02/06/bitmaps-in-actionscript-3/#respond</comments>
		<pubDate>Fri, 06 Feb 2009 06:15:38 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[bitmap]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[rgb]]></category>
		<category><![CDATA[stage]]></category>

		<guid isPermaLink="false">/?p=129</guid>
		<description><![CDATA[In actionscript 3 the bitmaps are stored with 4 bytes for each pixel. There are three bytes for RGB and one for the alpha channel. So you should be carefull when passing images to the flash, cause 20&#215;20 pixel image will be using apx. 1600 bytes of RAM, to optimize this send the image as &#8230; <a href="/2009/02/06/bitmaps-in-actionscript-3/" class="more-link">Continue reading <span class="screen-reader-text">Bitmaps in actionscript 3</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2012/01/16/computer-algorithms-data-compression-with-bitmaps/" rel="bookmark" title="Computer Algorithms: Data Compression with Bitmaps">Computer Algorithms: Data Compression with Bitmaps </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
<li><a href="/2009/05/25/remove-dom-element-with-jquery/" rel="bookmark" title="Remove DOM Element with JQuery">Remove DOM Element with JQuery </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>In actionscript 3 the bitmaps are stored with 4 bytes for each pixel. There are three bytes for RGB and one for the alpha channel. So you should be carefull when passing images to the flash, cause 20&#215;20 pixel image will be using apx. 1600 bytes of RAM, to optimize this send the image as it should appear on stage and do not resize.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2012/01/16/computer-algorithms-data-compression-with-bitmaps/" rel="bookmark" title="Computer Algorithms: Data Compression with Bitmaps">Computer Algorithms: Data Compression with Bitmaps </a></li>
<li><a href="/2009/02/06/flex-3-custom-preloader/" rel="bookmark" title="Flex 3 Custom Preloader">Flex 3 Custom Preloader </a></li>
<li><a href="/2009/05/25/remove-dom-element-with-jquery/" rel="bookmark" title="Remove DOM Element with JQuery">Remove DOM Element with JQuery </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/02/06/bitmaps-in-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>amfphp &#8211; is there a problem with the serizalized data?</title>
		<link>/2009/02/06/amfphp-is-there-a-problem-with-the-serialized-data/</link>
		<comments>/2009/02/06/amfphp-is-there-a-problem-with-the-serialized-data/#respond</comments>
		<pubDate>Fri, 06 Feb 2009 06:09:28 +0000</pubDate>
		<dc:creator><![CDATA[stoimen]]></dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[amfphp]]></category>
		<category><![CDATA[dashes]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[serialize]]></category>

		<guid isPermaLink="false">/?p=137</guid>
		<description><![CDATA[We&#8217;ve been working on a amfphp using project, but as it appears there is some problem with serializing data. I cannot say yet where exactly the problem is, but I suppose i comes from dashes in transfered data.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/02/09/ie-externalinterface-communication-problem/" rel="bookmark" title="IE &#038; ExternalInterface communication problem">IE &#038; ExternalInterface communication problem </a></li>
<li><a href="/2009/02/10/ie-6-problem-with-flash-z-index/" rel="bookmark" title="IE 6 problem with flash z-index">IE 6 problem with flash z-index </a></li>
<li><a href="/2010/02/19/jquery-tips-storing-data/" rel="bookmark" title="jQuery tips &#8211; storing data">jQuery tips &#8211; storing data </a></li>
<li><a href="/2009/03/05/flex-3-import-swf-symbols/" rel="bookmark" title="Flex 3 import swf symbols">Flex 3 import swf symbols </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>We&#8217;ve been working on a amfphp using project, but as it appears there is some problem with serializing data. I cannot say yet where exactly the problem is, but I suppose i comes from dashes in transfered data.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/02/09/ie-externalinterface-communication-problem/" rel="bookmark" title="IE &#038; ExternalInterface communication problem">IE &#038; ExternalInterface communication problem </a></li>
<li><a href="/2009/02/10/ie-6-problem-with-flash-z-index/" rel="bookmark" title="IE 6 problem with flash z-index">IE 6 problem with flash z-index </a></li>
<li><a href="/2010/02/19/jquery-tips-storing-data/" rel="bookmark" title="jQuery tips &#8211; storing data">jQuery tips &#8211; storing data </a></li>
<li><a href="/2009/03/05/flex-3-import-swf-symbols/" rel="bookmark" title="Flex 3 import swf symbols">Flex 3 import swf symbols </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/02/06/amfphp-is-there-a-problem-with-the-serialized-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
