<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Blending, Branching, Affecting and Tracking Video, Video Motion Capture, Dynamic Frequency Lip Synch and ActionScript Classes</title>
	<atom:link href="http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/feed/" rel="self" type="application/rss+xml" />
	<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/</link>
	<description>mad inventor meets Internet finds peace</description>
	<lastBuildDate>Thu, 22 Oct 2009 03:59:07 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dan Zen</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10292</link>
		<dc:creator>Dan Zen</dc:creator>
		<pubDate>Wed, 11 Mar 2009 04:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10292</guid>
		<description>http://www.squidder.com/2009/03/09/trick-auto-select-mac-isight-in-flash/ has the answer to the Camera on the Mac - thanks Sunil!  Tracked it down after 2 years - have not put the trick into the code but will at some point soon.</description>
		<content:encoded><![CDATA[<p><a href="http://www.squidder.com/2009/03/09/trick-auto-select-mac-isight-in-flash/" rel="nofollow">http://www.squidder.com/2009/03/09/trick-auto-select-mac-isight-in-flash/</a> has the answer to the Camera on the Mac &#8211; thanks Sunil!  Tracked it down after 2 years &#8211; have not put the trick into the code but will at some point soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Zen</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10285</link>
		<dc:creator>Dan Zen</dc:creator>
		<pubDate>Wed, 11 Feb 2009 02:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10285</guid>
		<description>Hi Rodolfo.

Right... perhaps create the VideoMotionCursor and then add a Timer with a delay of 300ms before you add the cursor to the stage and or set the events.  If you need help there, let me know.</description>
		<content:encoded><![CDATA[<p>Hi Rodolfo.</p>
<p>Right&#8230; perhaps create the VideoMotionCursor and then add a Timer with a delay of 300ms before you add the cursor to the stage and or set the events.  If you need help there, let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodolfo</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10284</link>
		<dc:creator>Rodolfo</dc:creator>
		<pubDate>Tue, 10 Feb 2009 10:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-10284</guid>
		<description>Hi.
I want that when i acept the cam to turn on, that the motion only works when i move my hand. i want to stop the light from work in the beggining. how can i do that. thanks</description>
		<content:encoded><![CDATA[<p>Hi.<br />
I want that when i acept the cam to turn on, that the motion only works when i move my hand. i want to stop the light from work in the beggining. how can i do that. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyberredfox</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9844</link>
		<dc:creator>cyberredfox</dc:creator>
		<pubDate>Sat, 29 Mar 2008 22:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9844</guid>
		<description>Any ideas yet?

I am trying to create a motion sensing movie that picks random mc&#039;s on motion detection. This works fine with the VideoMotion class ie:

mL.onMotionStart = function(obj) {
	if (obj.cursor == mc3) {
		light.gotoAndStop(Math.ceil(Math.random()*5+1));		
	}
}
myMotion.addEventListener(&quot;onMotionStart&quot;, mL);

mL.onMotionStop = function(obj) {
	if (obj.cursor == mc3) {
		light.gotoAndStop(1);		
	}
}
myMotion.addEventListener(&quot;onMotionStop&quot;, mL);

but trying the same with the Camera.get():

c = Camera.get();
function motion(mode)
{
	pinkBox.gotoAndStop(Math.ceil(Math.random()*5)+1);
}
c.onActivity = function(mode){motion(mode);}
c.setMotionLevel(30, 3000);
myVideoObject.attachVideo(c);

if I could get something like this to work it would be great!

function motion(mode)
{
	trace(x + &quot;: &quot; + mode);
	x++;
}
c.onActivity = function(mode) {motion(mode);};
if ((mode) = (true)){
	pinkBox.gotoAndStop(Math.ceil(Math.random()*5)+1)
}

Cheers for having a look.</description>
		<content:encoded><![CDATA[<p>Any ideas yet?</p>
<p>I am trying to create a motion sensing movie that picks random mc&#8217;s on motion detection. This works fine with the VideoMotion class ie:</p>
<p>mL.onMotionStart = function(obj) {<br />
	if (obj.cursor == mc3) {<br />
		light.gotoAndStop(Math.ceil(Math.random()*5+1));<br />
	}<br />
}<br />
myMotion.addEventListener(&#8220;onMotionStart&#8221;, mL);</p>
<p>mL.onMotionStop = function(obj) {<br />
	if (obj.cursor == mc3) {<br />
		light.gotoAndStop(1);<br />
	}<br />
}<br />
myMotion.addEventListener(&#8220;onMotionStop&#8221;, mL);</p>
<p>but trying the same with the Camera.get():</p>
<p>c = Camera.get();<br />
function motion(mode)<br />
{<br />
	pinkBox.gotoAndStop(Math.ceil(Math.random()*5)+1);<br />
}<br />
c.onActivity = function(mode){motion(mode);}<br />
c.setMotionLevel(30, 3000);<br />
myVideoObject.attachVideo(c);</p>
<p>if I could get something like this to work it would be great!</p>
<p>function motion(mode)<br />
{<br />
	trace(x + &#8220;: &#8221; + mode);<br />
	x++;<br />
}<br />
c.onActivity = function(mode) {motion(mode);};<br />
if ((mode) = (true)){<br />
	pinkBox.gotoAndStop(Math.ceil(Math.random()*5)+1)<br />
}</p>
<p>Cheers for having a look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Zen</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9810</link>
		<dc:creator>Dan Zen</dc:creator>
		<pubDate>Wed, 19 Mar 2008 05:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9810</guid>
		<description>Sorry - got half way through trying to solve this - thought I had it but when I tested it still did not work.  I think I can get it and will try again this week.  I have not posted my attempts.  Will post the working version hopefully.</description>
		<content:encoded><![CDATA[<p>Sorry &#8211; got half way through trying to solve this &#8211; thought I had it but when I tested it still did not work.  I think I can get it and will try again this week.  I have not posted my attempts.  Will post the working version hopefully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyberredfox</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9809</link>
		<dc:creator>cyberredfox</dc:creator>
		<pubDate>Tue, 18 Mar 2008 23:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9809</guid>
		<description>Hi

The Camera.get() call works fine on the Macs.

The problem is the VideoMotion Class, which is such an easier method for calling and using web cams in flash motion detection.

Does anyone know why this does not work?

Cheers</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>The Camera.get() call works fine on the Macs.</p>
<p>The problem is the VideoMotion Class, which is such an easier method for calling and using web cams in flash motion detection.</p>
<p>Does anyone know why this does not work?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Sydseter</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9409</link>
		<dc:creator>Johan Sydseter</dc:creator>
		<pubDate>Sun, 30 Dec 2007 15:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9409</guid>
		<description>Thanks for the mac tip. That will be most helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for the mac tip. That will be most helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Zen</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9283</link>
		<dc:creator>Dan Zen</dc:creator>
		<pubDate>Mon, 26 Nov 2007 17:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-9283</guid>
		<description>Hi Dan,

After some googling I found a solution to the getting your video motion classes to work with the MacBook webcam. Using the Camera.get() call doesn&#039;t bring up the built in camera. You have to go into your Flash player settings and set it to &quot;USB Video Class Video&quot;.

One of the bloggers on this site suggests this workaround: using a check by listing the cameras from AS if you detect that you’re on a Macintosh and then attempt to choose “USB Video Class Video.”

http://bobspace.wordpress.com/2007/02/22/flash-isight-3-if-you-pick-the-right-settings/

Sunil</description>
		<content:encoded><![CDATA[<p>Hi Dan,</p>
<p>After some googling I found a solution to the getting your video motion classes to work with the MacBook webcam. Using the Camera.get() call doesn&#8217;t bring up the built in camera. You have to go into your Flash player settings and set it to &#8220;USB Video Class Video&#8221;.</p>
<p>One of the bloggers on this site suggests this workaround: using a check by listing the cameras from AS if you detect that you’re on a Macintosh and then attempt to choose “USB Video Class Video.”</p>
<p><a href="http://bobspace.wordpress.com/2007/02/22/flash-isight-3-if-you-pick-the-right-settings/" rel="nofollow">http://bobspace.wordpress.com/2007/02/22/flash-isight-3-if-you-pick-the-right-settings/</a></p>
<p>Sunil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danzen</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-8480</link>
		<dc:creator>danzen</dc:creator>
		<pubDate>Mon, 13 Aug 2007 15:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-8480</guid>
		<description>The last I tried, I could not even get the camera to come into a simple camera object in Flash on a mac.  At that point I said, it is not a problem with my code.... but I would like to find a solution obviously.  So I may dig one day or perhaps someone could post here if they have any information about getting the web cam to show up in flash.  Thanks.</description>
		<content:encoded><![CDATA[<p>The last I tried, I could not even get the camera to come into a simple camera object in Flash on a mac.  At that point I said, it is not a problem with my code&#8230;. but I would like to find a solution obviously.  So I may dig one day or perhaps someone could post here if they have any information about getting the web cam to show up in flash.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Sydseter</title>
		<link>http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-8478</link>
		<dc:creator>Johan Sydseter</dc:creator>
		<pubDate>Mon, 13 Aug 2007 13:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://danzen.wordpress.com/2007/02/13/blending-branching-affecting-and-tracking-video-video-motion-capture-dynamic-frequency-lip-synch-and-actionscript-classes/#comment-8478</guid>
		<description>Your examples with the fairy doesn&#039;t work on my Mac. I tried several other motion capture examples out there as well, but none of them worked. I thought it might be my flash settings, but they worked just fine and I could preview video from my ISight camera. I have flash player 9 installed.</description>
		<content:encoded><![CDATA[<p>Your examples with the fairy doesn&#8217;t work on my Mac. I tried several other motion capture examples out there as well, but none of them worked. I thought it might be my flash settings, but they worked just fine and I could preview video from my ISight camera. I have flash player 9 installed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
