<?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 | BayarUgrakh Batzorig | Activity</title>
	<link>https://creativecow.net/members/bayarugrakhbatzorig/activity/</link>
	<atom:link href="https://creativecow.net/members/bayarugrakhbatzorig/activity/feed/" rel="self" type="application/rss+xml" />
	<description>Activity feed for BayarUgrakh Batzorig.</description>
	<lastBuildDate>Mon, 03 Aug 2026 08:07:29 +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">066de1adb8f6e9769921b36840387ec4</guid>
				<title>BayarUgrakh Batzorig replied to the discussion How to get first &#34;Path&#34; Property from selected objects. in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/how-to-get-first-path-property-from-selected-objects/#post-2439696</link>
				<pubDate>Thu, 12 Jan 2023 18:11:17 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/how-to-get-first-path-property-from-selected-objects/#post-2439696"><span class="bb-reply-lable">Reply to</span> How to get first "Path" Property from selected objects.</a></p> <div class="bb-content-inr-wrap"><p>Thank you Dan&#x1f64f;,  Dan 1 &#8211; ChatGPT 0</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">9651c21ad110e8e58c24dc41aae225da</guid>
				<title>BayarUgrakh Batzorig started the discussion How to get first &#34;Path&#34; Property from selected objects. in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/how-to-get-first-path-property-from-selected-objects/</link>
				<pubDate>Thu, 12 Jan 2023 16:08:22 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/how-to-get-first-path-property-from-selected-objects/">How to get first "Path" Property from selected objects.</a></p> <div class="bb-content-inr-wrap"><p class="">I&#8217;m making a script that does things to Path on a ShapeLayer. But can&#8217;t single out the Path from multiple selectedProperties because it can be nested inside PropertyGroups. if Path&#8217;s PropertyGroups has group outside AE auto select that group too, some groups can have &#8220;Path&#8221; as name and user can accidently select multiple PropertyGroups and Paths&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-378583"><a href="https://creativecow.net/forums/thread/how-to-get-first-path-property-from-selected-objects/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">2767fe65cdfe6664d26686473343c43b</guid>
				<title>BayarUgrakh Batzorig replied to the discussion Removing hidden edges on wireframe architectural model in the forum Maxon Cinema 4D</title>
				<link>https://creativecow.net/forums/thread/removing-hidden-edges-on-wireframe-architectural-model/#post-2438066</link>
				<pubDate>Thu, 01 Dec 2022 02:02:51 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/removing-hidden-edges-on-wireframe-architectural-model/#post-2438066"><span class="bb-reply-lable">Reply to</span> Removing hidden edges on wireframe architectural model</a></p> <div class="bb-content-inr-wrap"><p class="">Don&#8217;t use edge. Go with 0 degree crease or border and use explosion modifier with 0.01% strength to detach object by faces so it can be rendered as faces without hidden edge showing.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b44372a03bc81265713efde1c700f74b</guid>
				<title>BayarUgrakh Batzorig replied to the discussion Select vertex with SliderControl, add vertex with another SliderControl in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/#post-2433617</link>
				<pubDate>Sun, 14 Aug 2022 07:19:35 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/#post-2433617"><span class="bb-reply-lable">Reply to</span> Select vertex with SliderControl, add vertex with another SliderControl</a></p> <div class="bb-content-inr-wrap"><p>s = Math.round(effect(&#8220;Sellect 2&#8221;)(&#8220;Slider&#8221;).value);</p>
<p>numPts = Math.round(effect(&#8220;Duplicate&#8221;)(&#8220;Slider&#8221;).value);</p>
<p>Path = content(&#8220;Shape 1&#8221;).content(&#8220;Path 2&#8221;).path;</p>
<p>newP = [];</p>
<p>newIt = [];</p>
<p>newOt = [];</p>
<p>for(i=0; i &lt;= s;i++){</p>
<p>	newP.push(Path.points()[i]);</p>
<p>	newIt.push(Path.inTangents()[i]);</p>
<p>	newOt.push(Path.outTangents()[i]);</p>
<p>}</p>
<p>for(i=0; i &lt;&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-373161"><a href="https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/#post-2433617" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">914df3f156c9270ac4e40a8f8058c0ff</guid>
				<title>BayarUgrakh Batzorig started the discussion Select vertex with SliderControl, add vertex with another SliderControl in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/</link>
				<pubDate>Sat, 13 Aug 2022 18:39:51 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/">Select vertex with SliderControl, add vertex with another SliderControl</a></p> <div class="bb-content-inr-wrap"><p>s = Math.round(effect(&#8220;Sellect&#8221;)(&#8220;Slider&#8221;).value);</p>
<p>numPts = Math.round(effect(&#8220;Duplicate&#8221;)(&#8220;Slider&#8221;).value);</p>
<p>sPt = content(&#8220;Shape 1&#8221;).content(&#8220;Path 1&#8221;).path.points()[s];</p>
<p>Path1= content(&#8220;Shape 2&#8221;).content(&#8220;Path 1&#8221;).path.points();</p>
<p>allPts = [];</p>
<p>for(i=0; i &lt;= s;i++){</p>
<p>	allPts.push(content(&#8220;Shape 1&#8221;).content(&#8220;Path 1&#8221;).path.points()[i]);</p>
<p>}</p>
<p>for(i=0; i &lt;&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-373151"><a href="https://creativecow.net/forums/thread/select-vertex-with-slidercontrol-add-vertex-with-another-slidercontrol/" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">a822c08802e2e15c53215c87196713c6</guid>
				<title>BayarUgrakh Batzorig replied to the discussion Merge Paths from multiple Groups on a Shapelayer as single path keyframes in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/merge-paths-from-multiple-groups-on-a-shapelayer-as-single-path-keyframes/#post-2433413</link>
				<pubDate>Tue, 09 Aug 2022 03:22:29 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/merge-paths-from-multiple-groups-on-a-shapelayer-as-single-path-keyframes/#post-2433413"><span class="bb-reply-lable">Reply to</span> Merge Paths from multiple Groups on a Shapelayer as single path keyframes</a></p> <div class="bb-content-inr-wrap"><p>1. I have exported 90 frame path animation from C4D as single AI file(90 frames as 90 layers).</p>
<p>2. I have imported the Ai file to AE resulting Shapelayer with 90 Groups containing single paths.</p>
<p>3. I keyframed each paths and offset the keyframes.</p>
<p>I need to merge the keyframes on single path without copy pasting each one.</p>
<p>&#8220;Sorry for elaborating my self&hellip;</p>
<p><span class="activity-read-more" id="activity-read-more-372961"><a href="https://creativecow.net/forums/thread/merge-paths-from-multiple-groups-on-a-shapelayer-as-single-path-keyframes/#post-2433413" rel="nofollow"> Read more</a></span></p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">1faaa89246e64c7dd2744cec56a281f2</guid>
				<title>BayarUgrakh Batzorig replied to the discussion Parent single path to two other paths and blend between them with slider control in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/parent-single-path-to-two-other-paths-and-blend-between-them-with-slider-control/#post-2433402</link>
				<pubDate>Mon, 08 Aug 2022 23:10:08 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/parent-single-path-to-two-other-paths-and-blend-between-them-with-slider-control/#post-2433402"><span class="bb-reply-lable">Reply to</span> Parent single path to two other paths and blend between them with slider control</a></p> <div class="bb-content-inr-wrap"><p class="">Thank you Dan, this is exactly what I wanted.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">fb5e2084de4d0678e629a92f9f754e5c</guid>
				<title>BayarUgrakh Batzorig changed their photo</title>
				<link>https://creativecow.net/news-feed/p/372949/</link>
				<pubDate>Mon, 08 Aug 2022 22:09:52 +0000</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
					<item>
				<guid isPermaLink="false">c69eee328aef6096142fdb365bda0008</guid>
				<title>BayarUgrakh Batzorig started the discussion Merge Paths from multiple Groups on a Shapelayer as single path keyframes in the forum Adobe After Effects</title>
				<link>https://creativecow.net/forums/thread/merge-paths-from-multiple-groups-on-a-shapelayer-as-single-path-keyframes/</link>
				<pubDate>Mon, 08 Aug 2022 13:56:59 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/merge-paths-from-multiple-groups-on-a-shapelayer-as-single-path-keyframes/">Merge Paths from multiple Groups on a Shapelayer as single path keyframes</a></p> <div class="bb-content-inr-wrap"><p>I have single shape layer containing multiple groups with single paths.(Result of importing Ai file containing each layers as single frames of 90 frames 3d rendering)</p>
<p>I want to merge the paths back to single animation without copy pasting one by one.</p>
<p>is it possible?</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">de874e9f2e492bcb66ccd0b64e3c9fae</guid>
				<title>BayarUgrakh Batzorig started the discussion Parent single path to two other paths and blend between them with slider control in the forum Adobe After Effects Expressions</title>
				<link>https://creativecow.net/forums/thread/parent-single-path-to-two-other-paths-and-blend-between-them-with-slider-control/</link>
				<pubDate>Mon, 08 Aug 2022 13:56:12 +0000</pubDate>

									<content:encoded><![CDATA[<p class = "activity-discussion-title-wrap"><a href="https://creativecow.net/forums/thread/parent-single-path-to-two-other-paths-and-blend-between-them-with-slider-control/">Parent single path to two other paths and blend between them with slider control</a></p> <div class="bb-content-inr-wrap"><p>Parent one path to two other animated paths and morph between them with slider control would be nice.</p>
</div>]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">0eb566d6c497adaaa4c59779d0df5e7e</guid>
				<title>BayarUgrakh Batzorig became a registered member</title>
				<link>https://creativecow.net/news-feed/p/372448/</link>
				<pubDate>Tue, 26 Jul 2022 15:45:35 +0000</pubDate>

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