<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Creative COW | Mike Sevigny | Activity</title>
	<link>https://creativecow.net/members/mikesevigny2/activity/</link>
	<atom:link href="https://creativecow.net/members/mikesevigny2/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Mike Sevigny.</description>
	<lastBuildDate>Fri, 15 May 2026 05:49:28 +0000</lastBuildDate>
	<generator>https://buddypress.org/?v=2.5.10</generator>
	<language>en-US</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
		
								<item>
				<guid isPermaLink="false">41621b4029ce68e5386f423228c1075e</guid>
				<title>Mike Sevigny started the discussion Tutorial: Realistic Screen Reflections in After Effects 2026 in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/tutorial-realistic-screen-reflections-in-after-effects-2026/</link>
				<pubDate>Wed, 29 Apr 2026 15:21:51 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/tutorial-realistic-screen-reflections-in-after-effects-2026/">Tutorial: Realistic Screen Reflections in After Effects 2026</a></p> <div class="bb-content-inr-wrap"><p>Wanted to share this tutorial I made on realistic reflection in the new Advanced 3D renderer. </p>
<p><span>Hope it&#8217;s helpful!</span></p>
<p><a target='_blank' href="https://www.youtube.com/watch?v=uuQNiLdPCvM" rel="nofollow">https://www.youtube.com/watch?v=uuQNiLdPCvM</a></p>
<iframe title="Tutorial: Realistic Screen Reflections in After Effects 2026" width="640" height="360" src="https://www.youtube.com/embed/uuQNiLdPCvM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7b6db1743c78cf25a2e132dff354edb1</guid>
				<title>Mike Sevigny replied to the discussion Expression to animate Along Motion Path in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475694</link>
				<pubDate>Mon, 09 Mar 2026 15:40:34 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475694"><span class="bb-reply-lable">Reply to</span> Expression to animate Along Motion Path</a></p> <div class="bb-content-inr-wrap"><p>Here&#8217;s the Final Version of the expression I came up with in case it helps someone.</p>
<pre>// ---------------------------------------------------------<br />// Replicate Auto-Orient &gt; Along Motion Path<br />// Apply Expression to 3D 'Orientation'<br />// ---------------------------------------------------------
<br />// FUCNTIONS //<br />function arraysEqual(a, b, eps){<br />    for(var&hellip;</pre>
<p><span class="activity-read-more" id="activity-read-more-417392"><a href="https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475694" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">8c064e85dbc705c5bcbc326f457ccd39</guid>
				<title>Mike Sevigny replied to the discussion Expression to animate Along Motion Path in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475668</link>
				<pubDate>Fri, 06 Mar 2026 17:30:10 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475668"><span class="bb-reply-lable">Reply to</span> Expression to animate Along Motion Path</a></p> <div class="bb-content-inr-wrap"><p>Here&#8217;s a cleaner expression of the 3D version I replied earlier:</p>
<pre><p>// Auto-Orient along Motion Path //</p><p>var eps = 0.0001;</p><p>var step = thisComp.frameDuration;</p><p>var deltaT = step;</p><p>function len(v){return Math.sqrt(v[0]*v[0] + v[1]*v[1] + v[2]*v[2]);}</p><p>var v = position.velocityAtTime(time);</p><p>// --- Case 1: Layer is moving this frame ---</p><p>if(len(v) &gt; eps){</p><p>&hellip;</p></pre>
<p><span class="activity-read-more" id="activity-read-more-417298"><a href="https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/#post-2475668" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">29fea01dfa620e6c9ce5dec14e250ec1</guid>
				<title>Mike Sevigny started the discussion Expression to animate Along Motion Path in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/</link>
				<pubDate>Fri, 06 Mar 2026 15:02:52 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-animate-along-motion-path/">Expression to animate Along Motion Path</a></p> <div class="bb-content-inr-wrap"><p>Is there an expression that mirrors the behavior of <b>Auto-Orient</b> &gt; <b>Along Motion Path</b>? It appears to be more than just lookAt(position, next potision + velocity).</p>
<p>Is there one that mimics the behavior exactly?</p>
<p>Mike</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">aea66ed89d0beecb6c090793fada914d</guid>
				<title>Mike Sevigny replied to the discussion pixel/mm ratio for 3D previz in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/pixelmm-ratio-for-3d-previz/#post-2474746</link>
				<pubDate>Wed, 14 Jan 2026 18:19:39 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/pixelmm-ratio-for-3d-previz/#post-2474746"><span class="bb-reply-lable">Reply to</span> pixel/mm ratio for 3D previz</a></p> <div class="bb-content-inr-wrap"><p>In case anyone is interested, I made a graphic to show the pixel/mm relationship</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fdf7fd37d588fe2d64187cc97168460e</guid>
				<title>Mike Sevigny changed their photo</title>
				<link>https://creativecow.net/news-feed/p/415795/</link>
				<pubDate>Fri, 09 Jan 2026 21:07:37 +0000</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">cd2c48ff43b7064679366dc026d46575</guid>
				<title>Mike Sevigny replied to the discussion Adding multiple elements to 3d camera track in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/adding-multiple-elements-to-3d-camera-track/#post-2474645</link>
				<pubDate>Thu, 08 Jan 2026 18:24:32 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/adding-multiple-elements-to-3d-camera-track/#post-2474645"><span class="bb-reply-lable">Reply to</span> Adding multiple elements to 3d camera track</a></p> <div class="bb-content-inr-wrap"><p>I know this is an old thread, but I recently made a script called Tracker Solver that allows you to add 3D nulls in custom locations after solving the camera in After Effects.</p>
<p>Here&#8217;s a short video on how it works:<br /><a target='_blank' href="https://www.youtube.com/watch?v=YZnQF2DVhc8" rel="nofollow">https://www.youtube.com/watch?v=YZnQF2DVhc8</a></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">56a80a29807f4bd3018178ab52510648</guid>
				<title>Mike Sevigny started the discussion Free script I made to Offset Properties without all the parenting and sliders in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/free-script-i-made-to-offset-properties-without-all-the-parenting-and-sliders/</link>
				<pubDate>Wed, 28 May 2025 15:58:36 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/free-script-i-made-to-offset-properties-without-all-the-parenting-and-sliders/">Free script I made to Offset Properties without all the parenting and sliders</a></p> <div class="bb-content-inr-wrap"><p><span>1-Minute Demo: <a target='_blank' href="https://vimeo.com/1088205886" rel="nofollow">https://vimeo.com/1088205886</a></span></p>
<p>Download the script: <a target='_blank' href="https://www.mikesevigny.com/scripts" rel="nofollow">https://www.mikesevigny.com/scripts</a></p>
<p><span>Give it a try and let me know what you think</span></p>
<iframe title="After Effects: Property Offset Script" src="https://player.vimeo.com/video/1088205886?dnt=1&amp;app_id=122963" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin"></iframe></div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c71eb3e0d8bdb11cad0f9c1956c5f6ce</guid>
				<title>Mike Sevigny updated their profile</title>
				<link>https://creativecow.net/news-feed/p/410124/</link>
				<pubDate>Thu, 22 May 2025 16:49:54 +0000</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">08148723d3edbab0160a46d87e8dd69c</guid>
				<title>Mike Sevigny replied to the discussion AE 2025 FILE TO AE 2024 in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/ae-2025-file-to-ae-2024/#post-2468513</link>
				<pubDate>Sun, 09 Mar 2025 10:37:18 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/ae-2025-file-to-ae-2024/#post-2468513"><span class="bb-reply-lable">Reply to</span> AE 2025 FILE TO AE 2024</a></p> <div class="bb-content-inr-wrap"><p>In After Effects 2025, you can &#8220;Save as..&#8221; and select &#8220;Save a Copy as 24.x&#8221;</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fee9cddbb6de5e0f03459379e9b3b27f</guid>
				<title>Mike Sevigny started the discussion Alexa Mini LF w/Cooke Lenses &#124; Camera Tracking without Metadata in the forum ARRI</title>
				<link>https://creativecow.net/forums/thread/alexa-mini-lf-w-cooke-lenses-camera-tracking-without-metadata/</link>
				<pubDate>Wed, 30 Dec 2020 18:17:03 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/alexa-mini-lf-w-cooke-lenses-camera-tracking-without-metadata/">Alexa Mini LF w/Cooke Lenses | Camera Tracking without Metadata</a></p> <div class="bb-content-inr-wrap"><p>I&#8217;m attempting to track Alexa Mini LF footage with Cooke Lenses without the metadata (*.dat) that is usually provided with this setup.</p>
<p>It was shot as &#8216;LF Open Gate ProRes 4.5K&#8217; (4480 x 3096) with a x2.0 anamorphic squeeze. Lens info was also lost but I know that they were all Prime Cooke Lenses (still some guess work on that front). The sensor&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-342399"><a href="https://creativecow.net/forums/thread/alexa-mini-lf-w-cooke-lenses-camera-tracking-without-metadata/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>
		