How to Copy Curve Geometry ?

a simple script like this can set values for lots of objects, try it on a selection…
see you can copy the data path of the properties with right click to add some more stuff here


import bpy
for obj in bpy.context.selected_objects:
    if obj.type == 'CURVE':
        obj.data.offset = -0.008
        obj.data.extrude = 0.007
        obj.data.bevel_depth = 0.008
        obj.data.bevel_resolution = 2

Ricky if you are refering to ‘copy attributes’ addon I don’t think it will work here