get all Types for a list [SOLVED]

On 24/11/2014 at 01:39, xxxxxxxx wrote:

Hey

is there a function to get all Types

i like to add a dialog with a combo box to select a object type

Thanks

On 24/11/2014 at 06:05, xxxxxxxx wrote:

Hello
Seems need to make dict with oplist and make res file with cycling in options

On 24/11/2014 at 10:18, xxxxxxxx wrote:

Hello,

to get all plugins of a certain type simply use FilterPluginList():

  
  foundPlugins = c4d.plugins.FilterPluginList(c4d.PLUGINTYPE_OBJECT,True)  
   
  for plugin in foundPlugins:  
      print plugin.GetID()  
      print plugin.GetName()  

best wishes,
Sebastian

On 24/11/2014 at 11:27, xxxxxxxx wrote:

thanks sebastian,

that work for me !

On 25/11/2014 at 03:56, xxxxxxxx wrote:

Hi Sebastian
Thank you for reminds this function. I really forgot about it