<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: MovieClipLoader Oddity in Flash Lite 2	</title>
	<atom:link href="https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Mon, 25 Aug 2008 07:29:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: adinana		</title>
		<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/comment-page-1#comment-116994</link>

		<dc:creator><![CDATA[adinana]]></dc:creator>
		<pubDate>Mon, 25 Aug 2008 07:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1002#comment-116994</guid>

					<description><![CDATA[Hi I am facing the following issue.
I get 

FTPS035: A Call to loadMovie 

In my out put window

Do you have any solutions for this.]]></description>
			<content:encoded><![CDATA[<p>Hi I am facing the following issue.<br />
I get </p>
<p>FTPS035: A Call to loadMovie </p>
<p>In my out put window</p>
<p>Do you have any solutions for this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sathish		</title>
		<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/comment-page-1#comment-80018</link>

		<dc:creator><![CDATA[sathish]]></dc:creator>
		<pubDate>Wed, 30 Apr 2008 09:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1002#comment-80018</guid>

					<description><![CDATA[veda,
I am facing the same problem as yours ...did u get any solution so far?]]></description>
			<content:encoded><![CDATA[<p>veda,<br />
I am facing the same problem as yours &#8230;did u get any solution so far?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: http://		</title>
		<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/comment-page-1#comment-3463</link>

		<dc:creator><![CDATA[http://]]></dc:creator>
		<pubDate>Sat, 12 Aug 2006 23:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1002#comment-3463</guid>

					<description><![CDATA[http://


]]></description>
			<content:encoded><![CDATA[<p>http://</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/comment-page-1#comment-3462</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Thu, 06 Jul 2006 23:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1002#comment-3462</guid>

					<description><![CDATA[You might want to ask the &lt;a href=&#039;http://groups.yahoo.com/group/FlashLite/&#039; rel=&quot;nofollow&quot;&gt;Flashlite list&lt;/a&gt; if GPRS is supported.]]></description>
			<content:encoded><![CDATA[<p>You might want to ask the <a href='http://groups.yahoo.com/group/FlashLite/' rel="nofollow">Flashlite list</a> if GPRS is supported.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: veda		</title>
		<link>https://jessewarden.com/2006/04/moviecliploader-oddity-in-flash-lite-2.html/comment-page-1#comment-3461</link>

		<dc:creator><![CDATA[veda]]></dc:creator>
		<pubDate>Thu, 06 Jul 2006 09:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1002#comment-3461</guid>

					<description><![CDATA[thanks for the fast reply
My concern is not when to remove or the the movieClip.
From past one mont i am trying to acess any form of data (jpeg, strings. variables or any). I tried all the provided flashlite2. 1.1 Cdks(FL 1.1- connect detect.fla, FL 1.1- import files.fla, FLNewsReader.fla ect..)and I also tried lots of other actionscript examples provided in the flash lite help.
All of them work fine inthe emulator where i am testing on the desktop. But when the files are tranfered to the mobile and run, it works normally till the GPRS network connection is requested. After I say Yes to the reQuest it tries to download for some time and then&#039;Unable to load data &#039; error appears.
My GPRS connection to the MObile is normal &#038; it has been checked and verified.
So this has become a BIG Question of cocern for me. I am unable to identify the error and solve the problem. If any body out there have a SMALL solution for this or interested in discussing about the ERROR, please, i would like to know as soon as possible(immediately)

The simple file contains the following actionscript:

fscommand2(&#039;FullScreen&#039;, true);
  
if(image_mc) image_mc.removeMovieClip();
 
createEmptyMovieClip(&#039;image_mc&#039;, this.getNextHighestDepth());
 
var mclListener:Object = new Object();

mclListener.onLoadStart = function(image_mc:MovieClip) {
	trace(&#039;load started&#039;);
 };

mclListener.onLoadComplete = function(image_mc:MovieClip) {
	trace(&#039;load complete&#039;);
 };

mclListener.onLoadInit = function(image_mc:MovieClip) {
	trace (&#039;load initiated&#039;);
 };

var image_mcl:MovieClipLoader = new MovieClipLoader();

image_mcl.addListener(mclListener);

image_mcl.loadClip(&#039;http://www.helpexamples.com/flash/images/image1.jpg&#039;, image_mc);

If there is any error or i hav eto preset some publish setttings, please please give me some answers
thanks
veda]]></description>
			<content:encoded><![CDATA[<p>thanks for the fast reply<br />
My concern is not when to remove or the the movieClip.<br />
From past one mont i am trying to acess any form of data (jpeg, strings. variables or any). I tried all the provided flashlite2. 1.1 Cdks(FL 1.1- connect detect.fla, FL 1.1- import files.fla, FLNewsReader.fla ect..)and I also tried lots of other actionscript examples provided in the flash lite help.<br />
All of them work fine inthe emulator where i am testing on the desktop. But when the files are tranfered to the mobile and run, it works normally till the GPRS network connection is requested. After I say Yes to the reQuest it tries to download for some time and then&#8217;Unable to load data &#8216; error appears.<br />
My GPRS connection to the MObile is normal &amp; it has been checked and verified.<br />
So this has become a BIG Question of cocern for me. I am unable to identify the error and solve the problem. If any body out there have a SMALL solution for this or interested in discussing about the ERROR, please, i would like to know as soon as possible(immediately)</p>
<p>The simple file contains the following actionscript:</p>
<p>fscommand2(&#8216;FullScreen&#8217;, true);</p>
<p>if(image_mc) image_mc.removeMovieClip();</p>
<p>createEmptyMovieClip(&#8216;image_mc&#8217;, this.getNextHighestDepth());</p>
<p>var mclListener:Object = new Object();</p>
<p>mclListener.onLoadStart = function(image_mc:MovieClip) {<br />
	trace(&#8216;load started&#8217;);<br />
 };</p>
<p>mclListener.onLoadComplete = function(image_mc:MovieClip) {<br />
	trace(&#8216;load complete&#8217;);<br />
 };</p>
<p>mclListener.onLoadInit = function(image_mc:MovieClip) {<br />
	trace (&#8216;load initiated&#8217;);<br />
 };</p>
<p>var image_mcl:MovieClipLoader = new MovieClipLoader();</p>
<p>image_mcl.addListener(mclListener);</p>
<p>image_mcl.loadClip(&#8216;http://www.helpexamples.com/flash/images/image1.jpg&#8217;, image_mc);</p>
<p>If there is any error or i hav eto preset some publish setttings, please please give me some answers<br />
thanks<br />
veda</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
