<?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: Bug in JSFL fl.findObjectInDocByType in Flash CS3</title>
	<atom:link href="http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/feed" rel="self" type="application/rss+xml" />
	<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3</link>
	<description>The spoils of the integration of PHP and ActionScript</description>
	<lastBuildDate>Tue, 17 Jan 2012 17:17:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: slopps</title>
		<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/comment-page-1#comment-25328</link>
		<dc:creator>slopps</dc:creator>
		<pubDate>Fri, 03 Jun 2011 15:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=15#comment-25328</guid>
		<description>Also, simply adding this code before you call findObjectInDocByType will fix it:
if( fl.findObjectInDocByType == null ){ 
  fl.runScript( fl.configURI + &quot;Javascript/ObjectFindAndSelect.jsfl&quot; ); 
}

I found that in a comment for the CS4 livedocs.</description>
		<content:encoded><![CDATA[<p>Also, simply adding this code before you call findObjectInDocByType will fix it:<br />
if( fl.findObjectInDocByType == null ){<br />
  fl.runScript( fl.configURI + &#8220;Javascript/ObjectFindAndSelect.jsfl&#8221; );<br />
}</p>
<p>I found that in a comment for the CS4 livedocs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Goodman</title>
		<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/comment-page-1#comment-3704</link>
		<dc:creator>David Goodman</dc:creator>
		<pubDate>Wed, 19 Aug 2009 14:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=15#comment-3704</guid>
		<description>I was wondering Rost, could you give me an example of how to fix the ObjectFindAndSelect.jsfl problem from the WindowSWF I am stuck on this and I&#039;m unable to work out what to do from your comment.

My AS3 class that is linked up to the WindowSWF calls on a button click

MMExecute(&quot;fl.runScript(fl.configURI + &#039;Javascript/ObjectFindAndSelect.jsfl&#039;);&quot;)
    	MMExecute(&quot;fl.runScript(&#039;file:///C&#124;/svn/Flash/jsfl/brandLanguageConfigTools.jsfl&#039;, &#039;skinFile&#039;,\&quot;&quot; + strToPass + &quot;\&quot;,\&quot;&quot; + cbFLA.selectedItem.label + &quot;\&quot;);&quot;);

The 2nd MME has the fl.findByName call which causes the error, I also put the fl.runScript(ObjectFindAndSelect.jsfl) call inside the functions of that JSFL hoping that would get it working but no cookie :( any help?

thanks</description>
		<content:encoded><![CDATA[<p>I was wondering Rost, could you give me an example of how to fix the ObjectFindAndSelect.jsfl problem from the WindowSWF I am stuck on this and I&#8217;m unable to work out what to do from your comment.</p>
<p>My AS3 class that is linked up to the WindowSWF calls on a button click</p>
<p>MMExecute(&#8220;fl.runScript(fl.configURI + &#8216;Javascript/ObjectFindAndSelect.jsfl&#8217;);&#8221;)<br />
    	MMExecute(&#8220;fl.runScript(&#8216;file:///C|/svn/Flash/jsfl/brandLanguageConfigTools.jsfl&#8217;, &#8216;skinFile&#8217;,\&#8221;" + strToPass + &#8220;\&#8221;,\&#8221;" + cbFLA.selectedItem.label + &#8220;\&#8221;);&#8221;);</p>
<p>The 2nd MME has the fl.findByName call which causes the error, I also put the fl.runScript(ObjectFindAndSelect.jsfl) call inside the functions of that JSFL hoping that would get it working but no cookie <img src='http://wadearnold.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  any help?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rost</title>
		<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/comment-page-1#comment-1550</link>
		<dc:creator>Rost</dc:creator>
		<pubDate>Fri, 13 Mar 2009 14:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=15#comment-1550</guid>
		<description>Vincy, your tips are brilliant. Helped me to fix my &quot;fr.Find in Flash&quot; Search panel completely.

I&#039;d add a bit to your second comment: 

It seems the &quot;ObjectFindAndSelect.jsfl&quot; file is executed automatically each time you run your JSFL code from the Commands menu. 

But, if you run, for example, a JSFL file from your Flash Panel, the  &quot;ObjectFindAndSelect.jsfl&quot; is not run automatically, so its functions like fl.findObjectInDocByType won&#039;t be visible from your code.

To workaround this, just run the needed file before running your code:

fl.runScript( fl.configURI + \&quot;WindowSWF/fr.findTextFromPanel.jsfl\

And its functions will start working for your flashpanel.

Thanks,
Rost</description>
		<content:encoded><![CDATA[<p>Vincy, your tips are brilliant. Helped me to fix my &#8220;fr.Find in Flash&#8221; Search panel completely.</p>
<p>I&#8217;d add a bit to your second comment: </p>
<p>It seems the &#8220;ObjectFindAndSelect.jsfl&#8221; file is executed automatically each time you run your JSFL code from the Commands menu. </p>
<p>But, if you run, for example, a JSFL file from your Flash Panel, the  &#8220;ObjectFindAndSelect.jsfl&#8221; is not run automatically, so its functions like fl.findObjectInDocByType won&#8217;t be visible from your code.</p>
<p>To workaround this, just run the needed file before running your code:</p>
<p>fl.runScript( fl.configURI + \&#8221;WindowSWF/fr.findTextFromPanel.jsfl\</p>
<p>And its functions will start working for your flashpanel.</p>
<p>Thanks,<br />
Rost</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincy</title>
		<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/comment-page-1#comment-156</link>
		<dc:creator>Vincy</dc:creator>
		<pubDate>Fri, 18 Jul 2008 12:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=15#comment-156</guid>
		<description>Just a point I forgot to mention:

Copy the JSFL file which uses &quot;fl.findObjectInDocByType&quot; command to the /Commands directory and then try running the command from the Commands menu.</description>
		<content:encoded><![CDATA[<p>Just a point I forgot to mention:</p>
<p>Copy the JSFL file which uses &#8220;fl.findObjectInDocByType&#8221; command to the /Commands directory and then try running the command from the Commands menu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincy</title>
		<link>http://wadearnold.com/blog/flash/bug-in-jsfl-flfindobjectindocbytype-in-flash-cs3/comment-page-1#comment-155</link>
		<dc:creator>Vincy</dc:creator>
		<pubDate>Fri, 18 Jul 2008 12:29:32 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=15#comment-155</guid>
		<description>This error can be resolved by following these simple steps:

1) Go to the following location:
   C:\Documents and Settings\ocal settings\application data\adobe\flash cs3\en\configuration\javascript (windows xp):

2) Open &quot;ObjectFindAndSelect.jsfl&quot; file.

3) Copy and paste the following code at line number 29:
   if (objTimeline == undefined) {
     return
   }

4) Close flash CS3 and restart again, things should work fine.</description>
		<content:encoded><![CDATA[<p>This error can be resolved by following these simple steps:</p>
<p>1) Go to the following location:<br />
   C:\Documents and Settings\ocal settings\application data\adobe\flash cs3\en\configuration\javascript (windows xp):</p>
<p>2) Open &#8220;ObjectFindAndSelect.jsfl&#8221; file.</p>
<p>3) Copy and paste the following code at line number 29:<br />
   if (objTimeline == undefined) {<br />
     return<br />
   }</p>
<p>4) Close flash CS3 and restart again, things should work fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
