"Make Proxy" for multiple object

Hello,

is there a way to apply the “Make Proxy” command (CTRL-ALT-P) to multiple objects at once? If I link a lot of objects from a separate file, it’s a little annoying having to do it one object at a time.

Thanks a lot,
Andreas

+1 for feature if there is no way how to do it now

+1 I’d like to know too

Select objects, Copy/paste to text editor and hit Alt+P (cursor on text editor).


import bpy

objs = bpy.context.selected_objects

for i in objs:
    bpy.context.scene.objects.active = i
    bpy.ops.object.proxy_make()

Thanks a LOT JuhaW!