<?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 | Hannes Holtermann | Activity</title>
	<link>https://creativecow.net/members/hannesh/activity/</link>
	<atom:link href="https://creativecow.net/members/hannesh/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Hannes Holtermann.</description>
	<lastBuildDate>Sun, 27 Sep 2026 10:39:01 +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">3686667117a0785422363c8d40977711</guid>
				<title>Hannes Holtermann replied to the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/page/2/#post-2404719</link>
				<pubDate>Thu, 25 Feb 2021 09:13:05 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/page/2/#post-2404719"><span class="bb-reply-lable">Reply to</span> Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>Ah, ok. So I&#8217;m getting the offsets like this (just for anyone interested)</p>
<pre>    currentOffset = 0;<br />    totalOffset = 0;<br />    previousOffset = 0;<br />    <br />    for(i=1; i &lt; n-1; i++) {<br />        currentOffset = getContentHeight(i);<br />        totalOffset += currentOffset;<br />        if (i &lt; n-2) {<br />            previousOffset += currentOffset;<br />        }<br />    }</pre>
<p>And since I want&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-346884"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/page/2/#post-2404719" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7e4f6eb8e76fe26b4d51712327ff1541</guid>
				<title>Hannes Holtermann replied to the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404711</link>
				<pubDate>Thu, 25 Feb 2021 01:18:39 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404711"><span class="bb-reply-lable">Reply to</span> Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>Oh wow, you&#8217;re awesome. Thanks a lot. I forgot to remove it after changing from a while loop.</p>
<p>I&#8217;ve also noted that a couple of markers where off by a couple of frames resulting in a wrong calculation by sourceRectAtTime().</p>
<p>One last thing: Do you know why it&#8217;s not easing the animation? It&#8217;s just a jump cut. I&#8217;d love to do a ease out for 1s. But this&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-346866"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404711" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">bc17bf27d8ae73a90e40661b21135229</guid>
				<title>Hannes Holtermann replied to the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404699</link>
				<pubDate>Thu, 25 Feb 2021 00:53:54 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404699"><span class="bb-reply-lable">Reply to</span> Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>Hmm, I guess that my marker detection is somewhat off because it&#8217;s only sliding up every second marker. Is looking for nearestKey the right thing to do if I want to push the content up as soon as the marker has been passed?</p>
<p>Thanks a lot for your help, Dan!</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">df02ca6a167d3a87491101aaa31a94ce</guid>
				<title>Hannes Holtermann replied to the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404666</link>
				<pubDate>Wed, 24 Feb 2021 21:24:07 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404666"><span class="bb-reply-lable">Reply to</span> Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>&lt;div&gt;So I&#8217;m getting closer but something still seems off as at some markers the calculatioin doesnt seem to fit. Can you spot something I&#8217;m missing?&lt;/div&gt;&lt;div&gt;</p>
<pre>day = "DI_";<br />margin = effect("Margin")("ADBE Slider Control-0001");<br />m = marker;<br />transitionTime = .5;<br />n = 0;</pre>
<pre>getContentHeight = function(layerID) {<br />    layerID--; // exclude current layer from&hellip;</pre>
<p><span class="activity-read-more" id="activity-read-more-346843"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404666" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4406a367e332db9990283c0f6c642c3a</guid>
				<title>Hannes Holtermann replied to the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404639</link>
				<pubDate>Wed, 24 Feb 2021 19:05:12 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/#post-2404639"><span class="bb-reply-lable">Reply to</span> Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>Hey Dan,</p>
<p>I guess your analysis is spot on. I was thinking that there is some sort of state saving. How would you handle this? Create a recurrsive loop to sum up all previous heights? Or is there a more elegant way?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">3fda6ebb4fbaa92f783a7676463d8122</guid>
				<title>Hannes Holtermann replied to the discussion How to change / setValue of controllers via expression? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/how-to-change-setvalue-of-controllers-via-expression/#post-2404632</link>
				<pubDate>Wed, 24 Feb 2021 18:46:14 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/how-to-change-setvalue-of-controllers-via-expression/#post-2404632"><span class="bb-reply-lable">Reply to</span> How to change / setValue of controllers via expression?</a></p> <div class="bb-content-inr-wrap"><p>Hi Dan,</p>
<p>thanks for your response. Quite a legend you are. 🙂</p>
<p>So: I&#8217;m trying to change the value of the slider that is on the very same layer and is supposed to handle the position of the element. This is related to my other question </p>
<blockquote class="wp-embedded-content" data-secret="6Q7pv0ZXUd"><p><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/" rel="nofollow">Auto-slide Null to position on marker</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" title="&#8220;Auto-slide Null to position on marker&#8221; &#8212; Creative COW" src="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/embed/#?secret=6Q7pv0ZXUd" data-secret="6Q7pv0ZXUd" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p>The idea is to use the slider to save the&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-346826"><a href="https://creativecow.net/forums/thread/how-to-change-setvalue-of-controllers-via-expression/#post-2404632" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f5bfe8bae48461b6ff6a6e871f6dc6cc</guid>
				<title>Hannes Holtermann started the discussion Auto-slide Null to position on marker in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/</link>
				<pubDate>Wed, 24 Feb 2021 17:44:03 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/">Auto-slide Null to position on marker</a></p> <div class="bb-content-inr-wrap"><p>Hi everyone,</p>
<p>I&#8217;m having difficulties getting the expression right for the following setup:</p>
<p class="">Imagine a timetable with lots of different agenda items from top to bottom. Each agenda item is in it&#8217;s own layer precomposed and sequencially played in my main timetable comp (see attached photo). So every x seconds a new agenda item is shown at the bottom.&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-346820"><a href="https://creativecow.net/forums/thread/auto-slide-null-to-position-on-marker/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">6b07a6e4d6cd9f648585f741c1bab7ec</guid>
				<title>Hannes Holtermann started the discussion How to change / setValue of controllers via expression? in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/how-to-change-setvalue-of-controllers-via-expression/</link>
				<pubDate>Wed, 24 Feb 2021 17:43:25 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/how-to-change-setvalue-of-controllers-via-expression/">How to change / setValue of controllers via expression?</a></p> <div class="bb-content-inr-wrap"><p>Hi there,</p>
<p>is there any way I can change the value of expression controllers (slider, point, color etc) via expression? I can&#8217;t seem to find an answer to this as a simple:</p>
<p>effect(&#8220;Offset&#8221;)(&#8220;ADBE Slider Control-0001&#8221;) = 30;</p>
<p>Results in a &#8220;cannot assign value&#8221; error.</p>
<p>There must be some way to do this, right?</p>
<p>Thanks!</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">70f6face09a6e638081a81bafa40e34b</guid>
				<title>Hannes Holtermann became a registered member</title>
				<link>https://creativecow.net/news-feed/p/346773/</link>
				<pubDate>Wed, 24 Feb 2021 09:49:18 +0000</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
		
	</channel>
</rss>
		