<?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: Let me help you Find that MovieClip</title>
	<atom:link href="http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/feed" rel="self" type="application/rss+xml" />
	<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip</link>
	<description>polyGeek (noun) person with many geek related talents.</description>
	<lastBuildDate>Thu, 29 Jul 2010 13:07:13 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: melissa</title>
		<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/comment-page-1#comment-61592</link>
		<dc:creator>melissa</dc:creator>
		<pubDate>Sun, 15 Nov 2009 22:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://polygeek.com/251_adobeflash_let-me-help-you-find-that-movieclip#comment-61592</guid>
		<description>&lt;P &gt;&lt;FONT FACE=&quot;Verdana&quot;  COLOR=&quot;#0B333C&quot;  &gt;theres a movie clip about a little girl in an insane asylum singing a song about butterflies but i think it has to do with a code she knows that someone is after.&lt;/FONT&gt;&lt;/P&gt;</description>
		<content:encoded><![CDATA[<p><font FACE="Verdana"  COLOR="#0B333C"  >theres a movie clip about a little girl in an insane asylum singing a song about butterflies but i think it has to do with a code she knows that someone is after.</font></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: polyGeek</title>
		<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/comment-page-1#comment-30304</link>
		<dc:creator>polyGeek</dc:creator>
		<pubDate>Wed, 09 May 2007 22:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://polygeek.com/251_adobeflash_let-me-help-you-find-that-movieclip#comment-30304</guid>
		<description>So you&#039;re trying to find the last version of the duplicated MC, correct?

would something like this work:

currentVideoWin = duplicateMovieClip(DynaVid, &quot;View...
currentVideoWin.attachVideo(...</description>
		<content:encoded><![CDATA[<p>So you&#8217;re trying to find the last version of the duplicated MC, correct?</p>
<p>would something like this work:</p>
<p>currentVideoWin = duplicateMovieClip(DynaVid, &#8220;View&#8230;<br />
currentVideoWin.attachVideo(&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/comment-page-1#comment-30290</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Wed, 09 May 2007 20:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://polygeek.com/251_adobeflash_let-me-help-you-find-that-movieclip#comment-30290</guid>
		<description>Have a question thats sorta in the area.

duplicateMovieClip(DynaVid,
                               &quot;Viewerwindow&quot;+clipCnt,                         this.getNextHighestDepth()+1);

will generate movie clips Viewerwindow0,Viewerwindow1, etc.

How can I use this with something like
Viewerwindow.VideoObj
.attachVideo(tmpobj.netStream);?

I generate a new movie clip when the user goes to another movie so the number will change.</description>
		<content:encoded><![CDATA[<p>Have a question thats sorta in the area.</p>
<p>duplicateMovieClip(DynaVid,<br />
                               &#8220;Viewerwindow&#8221;+clipCnt,                         this.getNextHighestDepth()+1);</p>
<p>will generate movie clips Viewerwindow0,Viewerwindow1, etc.</p>
<p>How can I use this with something like<br />
Viewerwindow.VideoObj<br />
.attachVideo(tmpobj.netStream);?</p>
<p>I generate a new movie clip when the user goes to another movie so the number will change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: polyGeek</title>
		<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/comment-page-1#comment-29170</link>
		<dc:creator>polyGeek</dc:creator>
		<pubDate>Fri, 27 Apr 2007 16:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://polygeek.com/251_adobeflash_let-me-help-you-find-that-movieclip#comment-29170</guid>
		<description>@Dooley, I&#039;m pretty sure you&#039;re working in AS2. So here&#039;s something that might work for you.

As you dynamically create each MC you tell it what it&#039;s index number is and assign it a function to run when pressed


for(var i:Number = 0; i &lt; something; ++i) {
var mc:MovieClip = myHolder.createEmptyMovieClip(&quot;mc_&quot; + i, i);
mc.myIndex = i;
mc.onPress = function {
doWhatever(this);
}
}

function doWhatever(clip:MovieClip):Void {
clip._alpha = 50;
myHolder[&quot;clip&quot; + ( clip.myIndex - 5 )]._alpha = 50; // fake reference
}

I just made up the stuff in the last line with the &quot;fake reference&quot; comment at the end. Presumably there would be some relationship between the clip that is pressed and the other clips that you want to manipulate.

If there is no relationship then it&#039;s kinda hard to make this work dynamically. 

I hope this helps. Or at least I hope it didn&#039;t confuse you. :-)</description>
		<content:encoded><![CDATA[<p>@Dooley, I&#8217;m pretty sure you&#8217;re working in AS2. So here&#8217;s something that might work for you.</p>
<p>As you dynamically create each MC you tell it what it&#8217;s index number is and assign it a function to run when pressed</p>
<p>for(var i:Number = 0; i < something; ++i) {<br />
var mc:MovieClip = myHolder.createEmptyMovieClip(&#8220;mc_&#8221; + i, i);<br />
mc.myIndex = i;<br />
mc.onPress = function {<br />
doWhatever(this);<br />
}<br />
}</p>
<p>function doWhatever(clip:MovieClip):Void {<br />
clip._alpha = 50;<br />
myHolder["clip" + ( clip.myIndex - 5 )]._alpha = 50; // fake reference<br />
}</p>
<p>I just made up the stuff in the last line with the &#8220;fake reference&#8221; comment at the end. Presumably there would be some relationship between the clip that is pressed and the other clips that you want to manipulate.</p>
<p>If there is no relationship then it&#8217;s kinda hard to make this work dynamically. </p>
<p>I hope this helps. Or at least I hope it didn&#8217;t confuse you. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dooley</title>
		<link>http://polygeek.com/251_flex_let-me-help-you-find-that-movieclip/comment-page-1#comment-29121</link>
		<dc:creator>Dooley</dc:creator>
		<pubDate>Fri, 27 Apr 2007 07:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://polygeek.com/251_adobeflash_let-me-help-you-find-that-movieclip#comment-29121</guid>
		<description>Awesome, now how would I directly invoke dynamically created movieclips functions when they have dynamically assigned names?
I need to mix 31_mc&#039;s ._x with 36_mc&#039;s ._y

How would I reference it without linear design?

How could I say, when I click this, it is selected, and I want Selected_mc._x  to mix with Selected_mc._y because each instance of this _mc is saying, onPress(){I&#039;m the Selected.</description>
		<content:encoded><![CDATA[<p>Awesome, now how would I directly invoke dynamically created movieclips functions when they have dynamically assigned names?<br />
I need to mix 31_mc&#8217;s ._x with 36_mc&#8217;s ._y</p>
<p>How would I reference it without linear design?</p>
<p>How could I say, when I click this, it is selected, and I want Selected_mc._x  to mix with Selected_mc._y because each instance of this _mc is saying, onPress(){I&#8217;m the Selected.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
