<?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 | Arne Münch | Activity</title>
	<link>https://creativecow.net/members/arnemfnch/activity/</link>
	<atom:link href="https://creativecow.net/members/arnemfnch/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Arne Münch.</description>
	<lastBuildDate>Sat, 16 May 2026 02:38:05 +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">52c0995c3a30fd0abe42799068f74fd6</guid>
				<title>Arne Münch replied to the discussion Scripting a Progress Bar only works if total time is &#60; 5 Seconds in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/scripting-progress-bar/#post-2451056</link>
				<pubDate>Thu, 12 Oct 2023 12:16:56 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/scripting-progress-bar/#post-2451056"><span class="bb-reply-lable">Reply to</span> Scripting a Progress Bar only works if total time is &lt; 5 Seconds</a></p> <div class="bb-content-inr-wrap"><p>Hi Hector<br />Thanks a lot for replying.<br />Sorry for replying so late. I was on a journey for some days.<br />I actually closed and restarted and tested on another computer.<br />The script works fine until </p>
<p>var duration = 5344</p>
<p>from </p>
<p>var duration = 5345<br />or higher, there is this hanging and the bar doesn´t disappear.</p>
<p>Very strange.<br />Do you know how other people implement&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-389544"><a href="https://creativecow.net/forums/thread/scripting-progress-bar/#post-2451056" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">54e7c24abbe3c6d619c2c3f5966bf5d5</guid>
				<title>Arne Münch started the discussion Scripting a Progress Bar only works if total time is &#60; 5 Seconds in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/scripting-progress-bar/</link>
				<pubDate>Fri, 29 Sep 2023 20:29:44 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/scripting-progress-bar/">Scripting a Progress Bar only works if total time is &lt; 5 Seconds</a></p> <div class="bb-content-inr-wrap"><p>Hi<br />I am trying to write a simple progress bar script, to use in my other scripts.</p>
<pre><p>// Function to update the progress bar</p><p>function updateProgressBar(value, max) {</p><p>var progressBarWindow = new Window("palette", "Progress", undefined);</p><p>var progressBar = progressBarWindow.add("progressbar", undefined, 0,&hellip;</p></pre>
<p><span class="activity-read-more" id="activity-read-more-389064"><a href="https://creativecow.net/forums/thread/scripting-progress-bar/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">457766870ceddc957b1b2c8241e23a91</guid>
				<title>Arne Münch started the discussion After Effects Templates to Premiere. How to handle drifting graphics. in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/after-effects-templates-to-premiere-how-to-handle-drifting-graphics/</link>
				<pubDate>Tue, 26 Oct 2021 21:48:32 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/after-effects-templates-to-premiere-how-to-handle-drifting-graphics/">After Effects Templates to Premiere. How to handle drifting graphics.</a></p> <div class="bb-content-inr-wrap"><p>Hi there<br />When I create lower third templates for premiere, there is this handy responsive time feature which works when there is no animation after the animate-in and before the animate-out.<br />But how can I do a proper template when lets say the background of that lower third is drifting or evolving constantly and I dont want that &#8220;middlepart&#8221; to&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-360516"><a href="https://creativecow.net/forums/thread/after-effects-templates-to-premiere-how-to-handle-drifting-graphics/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a19c2188faef09fc89caecb19ec175e9</guid>
				<title>Arne Münch replied to the discussion Get Layer of a property via expression in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/get-layer-of-a-property-via-expression/#post-2413364</link>
				<pubDate>Fri, 09 Jul 2021 08:16:30 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/get-layer-of-a-property-via-expression/#post-2413364"><span class="bb-reply-lable">Reply to</span> Get Layer of a property via expression</a></p> <div class="bb-content-inr-wrap"><p><span>Hallo Dan</span></p>
<p>Thanks so much, works perfect again.</p>
<p>Meanwhile I had figured out this far less elegant way;)</p>
<p>I used try{} and ended with the index of the layer.</p>
<pre>p = thisProperty;
for (i=0; typeof(layerIndex) != "number"; i++){<br />    try{layerIndex = p.propertyGroup(i).index;<br />    }catch(e){};<br />}</pre>
<p>I will change my expression to your way&#8230;</p>
<p></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f5649c1c70a53f383acb60b9edfb31c0</guid>
				<title>Arne Münch started the discussion Get Layer of a property via expression in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/get-layer-of-a-property-via-expression/</link>
				<pubDate>Thu, 08 Jul 2021 12:20:34 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/get-layer-of-a-property-via-expression/">Get Layer of a property via expression</a></p> <div class="bb-content-inr-wrap"><p>Hi there.<br />In Scripting there is this elegant method to find a layer of a property by </p>
<pre>property.propertyGroup(property.propertyDepth)</pre>
<p>I dont find anything like this for the usage in expressions, because propertyDepth doesnt seem to work here. Any solutions?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">25fca78c07621ac66694bca1273c700e</guid>
				<title>Arne Münch started the discussion pointOnPath available for script? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/pointonpath-available-for-script/</link>
				<pubDate>Sun, 20 Jun 2021 16:02:14 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/pointonpath-available-for-script/">pointOnPath available for script?</a></p> <div class="bb-content-inr-wrap"><p>Short question, is that  pointOnPath() function for expressions also available for scripting somehow? The only chance I see is by creating an layer with that expression and harvesting the result.</p>
<p>And  an associated question: Is it possible via expression or script to get the opposite of that pointOnPath() function. You feed in a specific Point or a&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-353765"><a href="https://creativecow.net/forums/thread/pointonpath-available-for-script/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b212a63503f96239a44fa7f751d2304f</guid>
				<title>Arne Münch replied to the discussion expression to get the actual preview resolution, roughen edges issues in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411851</link>
				<pubDate>Wed, 16 Jun 2021 11:27:42 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411851"><span class="bb-reply-lable">Reply to</span> expression to get the actual preview resolution, roughen edges issues</a></p> <div class="bb-content-inr-wrap"><p>Hi Filip<br />Thanks for the nice approach. Good to know that other people struggle with the same issue:)</p>
<p>For me it really degrades the use of that effect a  bit and I will try to use turbulent distort instead when possible.</p>
<p>But when you need to use it a lot in a project here is what you can do:<br />Create in the &#8220;MasterComp&#8221; of the project an Null named&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-353583"><a href="https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411851" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6333f9188b4389efc650455ff5cbdfcc</guid>
				<title>Arne Münch replied to the discussion How to loop a linear function in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/how-to-loop-a-linear-function/#post-2411786</link>
				<pubDate>Tue, 15 Jun 2021 12:19:48 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/how-to-loop-a-linear-function/#post-2411786"><span class="bb-reply-lable">Reply to</span> How to loop a linear function</a></p> <div class="bb-content-inr-wrap"><p>i think instead of the loop function you need a modulo.</p>
<p>so replace the loopout with something like </p>
<p>s= s%72 &#8211; 72</p>
<p>not exacly sure what you really want but this may help</p>
<p></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f953f32aa752007472a81ef8806500da</guid>
				<title>Arne Münch replied to the discussion Random expression not working? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/random-expression-not-working/#post-2411733</link>
				<pubDate>Mon, 14 Jun 2021 16:48:48 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/random-expression-not-working/#post-2411733"><span class="bb-reply-lable">Reply to</span> Random expression not working?</a></p> <div class="bb-content-inr-wrap"><p>Hi Sandra<br />This should work:</p>
<p></p>
<p>x = 2; // in Seconds</p>
<p>seedRandom(Math.floor(x*time),true);</p>
<p>[random(1920),random(1080)];</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">800b5fc55e67c4048c985f2091d90695</guid>
				<title>Arne Münch replied to the discussion expression to get the actual preview resolution, roughen edges issues in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411731</link>
				<pubDate>Mon, 14 Jun 2021 16:44:12 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411731"><span class="bb-reply-lable">Reply to</span> expression to get the actual preview resolution, roughen edges issues</a></p> <div class="bb-content-inr-wrap"><p>Hi Tomas<br />Yes indeed. Different render resolutions look different.<br />I had a 4k project sending HD files to the customer as a preview, they look even different from my half HD preview working space, but the difference was not too much.<br />For the final render in 4K it really looked bad in my eyes.<br />Kind of silly. The turbulent distort effect for example does&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-353465"><a href="https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/#post-2411731" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7b0f0253fdfe288edc76e58829056202</guid>
				<title>Arne Münch started the discussion expression to get the actual preview resolution, roughen edges issues in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/</link>
				<pubDate>Fri, 11 Jun 2021 14:32:57 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/expression-to-get-the-actual-preview-resolution-roughen-edges-issues/">expression to get the actual preview resolution, roughen edges issues</a></p> <div class="bb-content-inr-wrap"><p>Is there an expression to get the actual preview resolution? The effect &#8220;roughen edges&#8221; depends from the preview resolution and so final renders can look completely different.<br />(I dont know any other effect with that behaviour)<br />With such an expression you could feed the scale slider of that effect to achieve at least similar results.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">18a866fefff6003ae1f2c13cb3d7578c</guid>
				<title>Arne Münch started the discussion Roughen edges changes completely the result when changing preview resolution. in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/roughen-edges-changes-completely-the-result-when-changing-preview-resolution/</link>
				<pubDate>Fri, 11 Jun 2021 14:26:38 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/roughen-edges-changes-completely-the-result-when-changing-preview-resolution/">Roughen edges changes completely the result when changing preview resolution.</a></p> <div class="bb-content-inr-wrap"><p>Did this happen to you? I recently had a 4k projekt, previewing everything in half HD most of the time.<br />Then in the final render some layers that were roughen with roughen edges look completely different (a way smaller noise texture creates the effect). The effect depends from the actual resolution of the preview. I dont know any other effect with&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-353353"><a href="https://creativecow.net/forums/thread/roughen-edges-changes-completely-the-result-when-changing-preview-resolution/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">c474d7116340fb7ff3455032648f26bd</guid>
				<title>Arne Münch started the discussion Performance of Shapelayers in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/performance-of-shapelayers/</link>
				<pubDate>Tue, 09 Mar 2021 09:07:20 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/performance-of-shapelayers/">Performance of Shapelayers</a></p> <div class="bb-content-inr-wrap"><p>Hello again.<br />An interesting question I guess.<br />If you set the expression of opacity of an whole layer to zero via expression, the layer doesnt seem to steal any CPU Power.<br />The same thing doesn&#8217;t work for groups in shape layers. If you set that groups opacity to zero, the group still is calculated and steals performance.<br />The only thing what helps is&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-347668"><a href="https://creativecow.net/forums/thread/performance-of-shapelayers/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bc41c0601c3a8b43556a300b165ea432</guid>
				<title>Arne Münch replied to the discussion Puppet Pin selection via Script in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/puppet-pin-selection-via-script/#post-2405503</link>
				<pubDate>Mon, 08 Mar 2021 21:04:30 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/puppet-pin-selection-via-script/#post-2405503"><span class="bb-reply-lable">Reply to</span> Puppet Pin selection via Script</a></p> <div class="bb-content-inr-wrap"><p>thanks, good to know.<br />Just to make it clear. With your suggestion you mean by hand, dont you?<br />I guess it is not possible to put the first selected pin via script to the top of the stack, because the script will never know which one is the first selected one?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d29fb1b11bc9fa5346019d49f052a9d4</guid>
				<title>Arne Münch replied to the discussion Puppet Pin selection via Script in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/puppet-pin-selection-via-script/#post-2405496</link>
				<pubDate>Mon, 08 Mar 2021 19:29:01 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/puppet-pin-selection-via-script/#post-2405496"><span class="bb-reply-lable">Reply to</span> Puppet Pin selection via Script</a></p> <div class="bb-content-inr-wrap"><p>I hoped I could edit my post, but I can&#8217;t<br />I think I was not clear.<br />Its just this: When I address selected layers via script, I can simply address for example the layer I selected first by &#8220;selectedLayers[0]&#8221;</p>
<p>This doesn&#8217;t seem to work for properties.<br />&#8220;selectedProperties[0]&#8221; doesn&#8217;t give me the first selected property, but the first one in the&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-347636"><a href="https://creativecow.net/forums/thread/puppet-pin-selection-via-script/#post-2405496" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f17597ff5bc4bc1ffa89b7ca0c99c543</guid>
				<title>Arne Münch started the discussion Puppet Pin selection via Script in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/puppet-pin-selection-via-script/</link>
				<pubDate>Mon, 08 Mar 2021 08:31:30 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/puppet-pin-selection-via-script/">Puppet Pin selection via Script</a></p> <div class="bb-content-inr-wrap"><p>Hi There<br />With</p>
<p>var actItem = app.project.activeItem;</p>
<p><span>var selLayers = actItem.selectedLayers;</span></p>
<p>              var selProps = selLayers[0].selectedProperties;</p>
<p>              var upperP = selProps[4];</p>
<p>              var lowerP = selProps[3];</p>
<p><span>var handP = selProps[2];</span></p>
<p><span>I try to select specific puppet Pins via script.</span></p>
<p>But it seems that the order of the selection is&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-347592"><a href="https://creativecow.net/forums/thread/puppet-pin-selection-via-script/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">d805929d858b77246f6817740deff050</guid>
				<title>Arne Münch replied to the discussion linking text attributes in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/linking-text-attributes/#post-2335476</link>
				<pubDate>Tue, 22 Sep 2020 15:59:12 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/linking-text-attributes/#post-2335476"><span class="bb-reply-lable">Reply to</span> linking text attributes</a></p> <div class="bb-content-inr-wrap"><p>wow, this compound arithmetic thing i did not know. i will check it out.</p>
<p>precomping will of course also work, but as i am building kind of preset stuff for others to copy comps and change text easily, its not the best option. you would also need to use something like true comp duplicator for not overwriting existing stuff. </p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">13503a3d7a16bb906916ad36db6315c8</guid>
				<title>Arne Münch replied to the discussion linking text attributes in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/linking-text-attributes/#post-2335472</link>
				<pubDate>Tue, 22 Sep 2020 15:36:39 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/linking-text-attributes/#post-2335472"><span class="bb-reply-lable">Reply to</span> linking text attributes</a></p> <div class="bb-content-inr-wrap"><p>yeah, thanks for this, Trent Armstrong, always good to know if something is not possible.<br />But the solution you suggest means one textanimator for each kerning change you want to apply?<br />Because I dont see a way to change the kerning of several letters with one textanimator,  am I right?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3e08a1174de31f2eb56e4353cb4dde1b</guid>
				<title>Arne Münch started the discussion linking text attributes in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/linking-text-attributes/</link>
				<pubDate>Tue, 22 Sep 2020 12:59:17 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/linking-text-attributes/">linking text attributes</a></p> <div class="bb-content-inr-wrap"><p>Hi people!<br />I use this:</p>
<p><span>text = thisComp.layer(&#8220;textlayer&#8221;).text.sourceText</span></p>
<p>text.style.setText(text)</p>
<p>to copy all text related attributes from one text layer to another.<br />But the individual spacing between two letters (the one you create while the cursor sits somewhere and you press alt and the arrow keys) isn´t linked this way.<br />Is there a way to link this&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-334001"><a href="https://creativecow.net/forums/thread/linking-text-attributes/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
		
	</channel>
</rss>
		