C4D GUI ELEMENT ID'S EXTENSION MODULE

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 27/05/2011 at 12:09, xxxxxxxx wrote:

Because of the missing GUI ID's used for GeDialog.AddCustomGui(), here's a module providing all of them.
They were copied from ResEdit. If you find an issue, please report it.
Place the folder in your Cinema 4D Userfolder under "library\python\packages%osbuild%".
On Windows this would be:
"C:\Users%USER%\AppData\Roaming\MAXON%CINEAM4D%\library\python\packages%osbuild%".

Or use my ImportPatch Plugin.

After doing so, you can import those ID's using

import gui_elements   
for i in dir(gui_elements) :   
    print (str(i)+":").ljust(20) + str(gui_elements.__dict__[i])

Download gui_elements

Cheers, Niklas