It looks like you're new here. If you want to get involved, click one of these buttons!
Maybe I am just not seeing it, but I would like to set a layer's frame line width higher than the default, with ruby.
Can someone tell me how to access that ?
def set_layer_allprop(ls, li, stipple, style, color)    
    view = RBA::LayoutView::current
    view.add_missing_layers
    numLayers = 0
    i = view.begin_layers
    while !i.at_end?
        if i.current.source_name==ls.name
            i.current.dither_pattern=stipple
            i.current.fill_color=color
            i.current.frame_color=color
            i.current.line_style=style
        end
        numLayers = numLayers + 1
        i.next
    end
end

Comments
Hi!
I think width property is responsible for this.
To put it into Homer's words: Doh !