<?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 | Mark Fain | Activity</title>
	<link>https://creativecow.net/members/markfain/activity/</link>
	<atom:link href="https://creativecow.net/members/markfain/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for Mark Fain.</description>
	<lastBuildDate>Tue, 22 Sep 2026 13:00:11 +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">b45635436abe129ac183a8095da6a71f</guid>
				<title>Mark Fain replied to the discussion SourceText TextDocument keyframes read incorrectly when layer is moved in time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431718</link>
				<pubDate>Thu, 30 Jun 2022 17:22:58 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431718"><span class="bb-reply-lable">Reply to</span> SourceText TextDocument keyframes read incorrectly when layer is moved in time</a></p> <div class="bb-content-inr-wrap"><p>Actually, an even better way without all the time math is just to store the startTime in a variable, set the startTime of the layer to 0, do all your stuff, then set it back to the original time variable. The code below would be in a for loop to do this on each text layer.</p>
<p></p>
<pre><p>            var theLayer = textLayers[i];</p><p>            var&hellip;</p></pre>
<p><span class="activity-read-more" id="activity-read-more-371492"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431718" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9869ecc6f791727a24e82a141c0b667f</guid>
				<title>Mark Fain replied to the discussion SourceText TextDocument keyframes read incorrectly when layer is moved in time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431667</link>
				<pubDate>Thu, 30 Jun 2022 05:01:14 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431667"><span class="bb-reply-lable">Reply to</span> SourceText TextDocument keyframes read incorrectly when layer is moved in time</a></p> <div class="bb-content-inr-wrap"><p>Got it. Using time-based values instead of key-based values, I could offset where it reads the values by subtracting the layers&#8217; startTime from each keyTime. </p>
<pre><p>if (sourceTextProps[i].numKeys &gt; 0) {</p><p>   offsetTimes[i] = textLayers[i].startTime;</p><p>   for (var keyIndex = 1; keyIndex &lt;= sourceTextProps[i].numKeys; keyIndex++) {</p><p>      keyTimes[i] =&hellip;</p></pre>
<p><span class="activity-read-more" id="activity-read-more-371445"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431667" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">518b60146975bef9e41b493954213e45</guid>
				<title>Mark Fain replied to the discussion SourceText TextDocument keyframes read incorrectly when layer is moved in time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431658</link>
				<pubDate>Wed, 29 Jun 2022 21:52:50 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431658"><span class="bb-reply-lable">Reply to</span> SourceText TextDocument keyframes read incorrectly when layer is moved in time</a></p> <div class="bb-content-inr-wrap"><p>Well, I didn&#8217;t find a solution, but I found that FontMate has the same problem haha.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">012979956f856c39fb417dfc6a223414</guid>
				<title>Mark Fain replied to the discussion SourceText TextDocument keyframes read incorrectly when layer is moved in time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431643</link>
				<pubDate>Wed, 29 Jun 2022 17:41:33 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/#post-2431643"><span class="bb-reply-lable">Reply to</span> SourceText TextDocument keyframes read incorrectly when layer is moved in time</a></p> <div class="bb-content-inr-wrap"><p>Thank you, Dan, for this and for everything. I was definitely asking why they&#8217;d want it to function that way. </p>
<p>In the meantime, I&#8217;m going to try to work around it by getting key times and resetting values based on time&#8230;or something like that. I have some experimenting to do. I&#8217;ll be back if anything starts to look viable.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">37c0d0020fcea1c775c9bf9a6801d4c1</guid>
				<title>Mark Fain started the discussion SourceText TextDocument keyframes read incorrectly when layer is moved in time in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/</link>
				<pubDate>Wed, 29 Jun 2022 13:20:22 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/">SourceText TextDocument keyframes read incorrectly when layer is moved in time</a></p> <div class="bb-content-inr-wrap"><p>I am trying to read through the sourceText keyframe values to later change a specified font which may or may not exist on those keys. This code works wonderfully before I drag the text layer left or right on the timeline. It continues to work when I move the sourceText keyframes or drag just the in/outPoint of the text layer. It&#8217;s only when I&hellip;<span class="activity-read-more" id="activity-read-more-371390"><a href="https://creativecow.net/forums/thread/sourcetext-textdocument-keyframes-read-incorrectly-when-layer-is-moved-in-time/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">314422f67daffe980f9983603dc5ea77</guid>
				<title>Mark Fain became a registered member</title>
				<link>https://creativecow.net/news-feed/p/371363/</link>
				<pubDate>Wed, 29 Jun 2022 02:20:52 +0000</pubDate>

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