<?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[How do I retrieve a command call from it&#x27;s index number ?]]></title><description><![CDATA[<p dir="auto">For example I get from the Script Log</p>
<pre><code>c4d.CallCommand(14046) # Split
</code></pre>
<p dir="auto">Is there an Index page where I can see to what method that number belongs to ?</p>
]]></description><link>http://developers.maxon.net/forum/topic/16406/how-do-i-retrieve-a-command-call-from-it-s-index-number</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Apr 2026 22:14:24 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/16406.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 24 Apr 2026 21:43:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How do I retrieve a command call from it&#x27;s index number ? on Mon, 27 Apr 2026 10:42:29 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/dimitris_derm.">@<bdi>Dimitris_Derm</bdi></a>. ,</p>
<p dir="auto">what do you mean by 'method'? <code>CallCommand</code> just invokes the <a href="https://developers.maxon.net/docs/py/2026_2_0/modules/c4d.plugins/BaseData/CommandData/index.html#c4d.plugins.CommandData" target="_blank" rel="noopener noreferrer nofollow ugc">CommandData</a> plugin which has been registered under the plugin ID you passed to the call.</p>
<p dir="auto">What you can do, is resolve the numeric plugin ID integer value to a symbol. But unlike for message IDs, the docs currently do not resolve symbols to their integer values. You can do two things:</p>
<ol>
<li>Just search in the main symbol definition file with a text editor, i.e., <code>{c4d}/resource/modules/python/libs/python311/c4d/__init__.py</code></li>
<li>Or use <a href="https://developers.maxon.net/docs/py/2026_2_0/modules/maxon_generated/mxutils/mxutils.SymbolTranslationCache.htm" target="_blank" rel="noopener noreferrer nofollow ugc">mxutils.SymbolTranslationCache</a> which exists for the very purpose of resolving such integer values to symbols.</li>
</ol>
<p dir="auto">But in your case, <code>14046 </code>, you will draw a blank in both cases, which simply means developers never defined a public symbol for that command.<br />
<img src="/forum/assets/uploads/files/1777286409522-1b4e6537-4fad-48a1-b4ec-c6edd4103083-image.png" alt="1b4e6537-4fad-48a1-b4ec-c6edd4103083-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Cheers,<br />
Ferdinand</p>
]]></description><link>http://developers.maxon.net/forum/post/77134</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/77134</guid><dc:creator><![CDATA[ferdinand]]></dc:creator><pubDate>Mon, 27 Apr 2026 10:42:29 GMT</pubDate></item></channel></rss>