Open and close cinema 4d view

On 13/09/2013 at 06:29, xxxxxxxx wrote:

I want to open a new Texture view and close it later on.
Opening is ok, but closing does not work.
I took the commands from the Script Log.

    c4d.CallCommand(170103) # New Texture View...    
    ....
    c4d.CallCommand(12097) # Close

On 13/09/2013 at 13:43, xxxxxxxx wrote:

Hi Pim,

12097 is a general close command. I can't tell you how it works exactly, but it is called whenever you
close a dialog in Cinema via Shift+W or the close command from the File menu.

Interestingly, it does nothing when being called from Python, but closes the whole application
when being called from COFFEE.

I'll report back when I have additional information.

-Niklas

On 05/10/2013 at 00:36, xxxxxxxx wrote:

This is a limitation of the Python implementation.

Best,
-Niklas

On 06/10/2013 at 07:19, xxxxxxxx wrote:

Ok, thanks.