<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[TimeLine DopeSheet not update]]></title><description><![CDATA[<p dir="auto">Hi<br />
in <strong>Dope Sheet -F-Curve</strong> mode,i change CTrack NBit(<strong>c4d.NBIT_TL1_SELECT2</strong>) ,(selection State),the window will not refresh immediately.</p>
<p dir="auto">After <strong>selection state change</strong>, how can I make the window refresh in <strong>real time</strong></p>
<pre><code>import c4d

def main() -&gt; None:
   
    for track in op.GetCTracks():
        track.ChangeNBit(c4d.NBIT_TL1_SELECT2,c4d.NBITCONTROL_SET)
        
    c4d.EventAdd()


if __name__ == '__main__':
    main()
</code></pre>
<p dir="auto">Thanks for any help!</p>
]]></description><link>http://developers.maxon.net/forum/topic/16423/timeline-dopesheet-not-update</link><generator>RSS for Node</generator><lastBuildDate>Wed, 17 Jun 2026 21:10:15 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/16423.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 17 Jun 2026 14:56:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to TimeLine DopeSheet not update on Wed, 17 Jun 2026 16:26:01 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/chuanzhen">@<bdi>chuanzhen</bdi></a>,</p>
<p dir="auto">Thank you for reporting this. At first glance this looks like a bug/regression in 2026.3.0. I'll have to check in more detail myself before I can say for sure. But your code is also incorrect, the <code>NBIT_TLX_SELECT2</code> bits are internal and not for what you think they are. You must use <code>NBIT_TLX_SELECT</code> instead. But they are currently malfunctioning for me on Windows in 2026.3.</p>
<p dir="auto">Until I am sure, I will not yet classify this as a bug.</p>
<p dir="auto">Cheers,<br />
Ferdinand</p>
<p dir="auto">In 2026.2.0, this code randomly selects and deselects tracks in an all timelines for the active object. I.e., you can spam-click the script and see the track selections 'jump around'. In 2026.3 it does exactly nothing (at least on my Windows machine).</p>
<pre><code class="language-py">import c4d
import random

def main() -&gt; None:
    for track in op.GetCTracks():
        bit: int = random.choice([c4d.NBITCONTROL_SET, c4d.NBITCONTROL_CLEAR])
        for tl in (c4d.NBIT_TL1_SELECT, c4d.NBIT_TL2_SELECT, c4d.NBIT_TL3_SELECT, c4d.NBIT_TL4_SELECT):
            track.ChangeNBit(tl, bit)
    
    c4d.EventAdd()


if __name__ == '__main__':
    main()
</code></pre>
]]></description><link>http://developers.maxon.net/forum/post/77208</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/77208</guid><dc:creator><![CDATA[ferdinand]]></dc:creator><pubDate>Wed, 17 Jun 2026 16:26:01 GMT</pubDate></item></channel></rss>