<?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 | Scott McGee | Activity</title>
	<link>https://creativecow.net/members/scottmcgee/activity/</link>
	<atom:link href="https://creativecow.net/members/scottmcgee/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Scott McGee.</description>
	<lastBuildDate>Wed, 19 Aug 2026 16:56:04 +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">fc77f1cd2d11d6cfb68795fab1c88a31</guid>
				<title>Scott Mcgee started the discussion SCRIPT - Duplicate an already rendered composition in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/script-duplicate-an-already-rendered-composition/</link>
				<pubDate>Tue, 28 Mar 2023 14:15:06 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/script-duplicate-an-already-rendered-composition/">SCRIPT - Duplicate an already rendered composition</a></p> <div class="bb-content-inr-wrap"><p>The answer might be no.</p>
<p>But let&#8217;s see what the boffins have to offer.</p>
<p>I currently have to export 100+ files and they have lengthy titles, but it&#8217;s essentially 15-20 different aspect ratios, such as;</p>
<p>5x 1920&#215;1080<br />12x 1080&#215;1920<br />3x 1080&#215;1080</p>
<p>and so on and so on.</p>
<p>But I only need to export them once, but it takes time to copy and paste each title from a&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-381595"><a href="https://creativecow.net/forums/thread/script-duplicate-an-already-rendered-composition/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">29ec0d280609c50693c6c9aa4951f3f0</guid>
				<title>Scott Mcgee replied to the discussion Renaming Solid Layer (Expression or Script) in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/renaming-solid-layer-expression-or-script/#post-2439730</link>
				<pubDate>Fri, 13 Jan 2023 13:58:21 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/renaming-solid-layer-expression-or-script/#post-2439730"><span class="bb-reply-lable">Reply to</span> Renaming Solid Layer (Expression or Script)</a></p> <div class="bb-content-inr-wrap"><p>Hi Aris,</p>
<p>Thank you for this. Thought I&#8217;d at least reply late on haha.</p>
<p>I wasn&#8217;t as experienced back in 2017 with scripting.</p>
<p>I was working for a central station providing graphics to all the individual stations. They had to create quick graphics. So i built templates that allowed them to do this. They were also gits who didn&#8217;t know how to use after and&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-378634"><a href="https://creativecow.net/forums/thread/renaming-solid-layer-expression-or-script/#post-2439730" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">02c17549c2480b5f33d816e9024c1937</guid>
				<title>Scott Mcgee replied to the discussion Changing random time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/changing-random-time/#post-2439727</link>
				<pubDate>Fri, 13 Jan 2023 11:43:29 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/changing-random-time/#post-2439727"><span class="bb-reply-lable">Reply to</span> Changing random time</a></p> <div class="bb-content-inr-wrap"><p>Unless there&#8217;s a tidier way, I think I found something that I&#8217;ve altered that appears to work.</p>
<p>minDur = .5;</p>
<p>maxDur = 1;</p>
<p>t = tPrev = inPoint;</p>
<p>seedRandom(index,true);</p>
<p>while (t &lt;= time){</p>
<p>tPrev = t;</p>
<p>t += random(minDur,maxDur);</p>
<p>}</p>
<p>s = random(100,300);</p>
<p>[s,s]</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4bdc905f3f676083c84182b8c545c74f</guid>
				<title>Scott Mcgee started the discussion Changing random time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/changing-random-time/</link>
				<pubDate>Fri, 13 Jan 2023 11:34:16 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/changing-random-time/">Changing random time</a></p> <div class="bb-content-inr-wrap"><p>Possibly no solution, but i&#8217;m going to chuck it out there.</p>
<p>I want to randomly scale my text, but I don&#8217;t want it to just be every 1 second, 2 seconds etc. The below works fine if I want it to change every second.</p>
<p>seed = Math.floor(time/1);</p>
<p>seedRandom(seed,true);</p>
<p><span>s = random(100,150);<br /></span>[s,s]<span><br /></span></p>
<p>Is there a way to randomly change this bit?</p>
<p>seed =&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-378625"><a href="https://creativecow.net/forums/thread/changing-random-time/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">45c3d58c505eec7c205afffeb430ecc4</guid>
				<title>Scott Mcgee replied to the discussion Using expression to loop layer and trim Work Area? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/using-expression-to-loop-layer-and-trim-work-areaa/#post-2418809</link>
				<pubDate>Mon, 11 Oct 2021 16:31:45 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/using-expression-to-loop-layer-and-trim-work-areaa/#post-2418809"><span class="bb-reply-lable">Reply to</span> Using expression to loop layer and trim Work Area?</a></p> <div class="bb-content-inr-wrap"><p>Hey Sami,</p>
<p>Not too sure what you might be having trouble with but just incase.</p>
<p>If you&#8217;ve copied and pasted into Extendscript, make sure &#8220;&#8221; aren&#8217;t “”. I&#8217;ve noticed the code I&#8217;ve copied and pasted back then did that has done that. So they&#8217;ll need to be swapped. Same goes for &#8221; and ‘’</p>
<p>Once these have been replaced then it should work no problem&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-359829"><a href="https://creativecow.net/forums/thread/using-expression-to-loop-layer-and-trim-work-areaa/#post-2418809" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b8b98bef2740dd2df3065d20dd7e37db</guid>
				<title>Scott Mcgee replied to the discussion Every X seconds, move in a random direcition. in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/every-x-seconds-move-in-a-random-direcition/#post-2335958</link>
				<pubDate>Mon, 28 Sep 2020 08:00:56 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/every-x-seconds-move-in-a-random-direcition/#post-2335958"><span class="bb-reply-lable">Reply to</span> Every X seconds, move in a random direcition.</a></p> <div class="bb-content-inr-wrap"><p>This will help you get started</p>
<p></p>
<p>segDur = 1;</p>
<p>minVal = [0.1*thisComp.width, 0.1*thisComp.height];</p>
<p>maxVal = [0.9*thisComp.width, 0.9*thisComp.height];</p>
<p>seed = Math.floor(time/segDur);</p>
<p>segStart = seed*segDur;</p>
<p>seedRandom(seed,true);</p>
<p>startVal =  random(minVal,maxVal);</p>
<p>seedRandom(seed+1,true);</p>
<p>endVal = random(minVal,maxVal);</p>
<p>ease(time,segStart,segStart + segDur,&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-334648"><a href="https://creativecow.net/forums/thread/every-x-seconds-move-in-a-random-direcition/#post-2335958" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b1beba4f0537f44420430cfd1327a746</guid>
				<title>Scott Mcgee replied to the discussion Is there any script to resize comp adding pixels over original value? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334867</link>
				<pubDate>Tue, 15 Sep 2020 16:56:01 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334867"><span class="bb-reply-lable">Reply to</span> Is there any script to resize comp adding pixels over original value?</a></p> <div class="bb-content-inr-wrap"><p>It&#8217;s because I copied and pasted and my &#8220;&#8221; changed to ““&#8230;And yes that does matter. Now if you copy and paste below. It will work. <img alt="Slight Smile" src="https://s.w.org/images/core/emoji/13.0.0/72x72/1f642.png" /></p>
<p></p>
<p>var mySelectedItems = [];</p>
<p>for (var i = 1; i &lt;= app.project.numItems; i++){</p>
<p>if (app.project.item(i).selected)</p>
<p>mySelectedItems[mySelectedItems.length] = app.project.item(i);</p>
<p>}</p>
<p>for (var j = 0; j &lt; mySelectedItems.length; j++&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-333323"><a href="https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334867" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3bc73e7157f67f3c584cc6fcac27b33d</guid>
				<title>Scott Mcgee replied to the discussion Is there any script to resize comp adding pixels over original value? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334329</link>
				<pubDate>Wed, 09 Sep 2020 08:13:35 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334329"><span class="bb-reply-lable">Reply to</span> Is there any script to resize comp adding pixels over original value?</a></p> <div class="bb-content-inr-wrap"><p>As long are you are changing the anchor point when it&#8217;s placed into the comp in the first place.</p>
<p>This should work 🙂</p>
<p></p>
<p>var mySelectedItems = [];</p>
<p>for (var i = 1; i &lt;= app.project.numItems; i++){</p>
<p>  if (app.project.item(i).selected)</p>
<p>    mySelectedItems[mySelectedItems.length] = app.project.item(i);</p>
<p>}</p>
<p>for (var j = 0; j &lt; mySelectedItems.length; j++) {</p>
<p>var comp&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-332621"><a href="https://creativecow.net/forums/thread/is-there-any-script-to-resize-comp-adding-pixels-o/#post-2334329" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>
		