I would like to set new ID for an object in Inkscape 048.2 by command line.
At first a select an object:
Code: Select all
--select=id_textThen I do some object changes:
Code: Select all
--verb=ObjectToPath --verb=SelectionUnGroup --verb=SelectionUnionOk. It's worked perfectly!
Then I have to do renaming new object (I would like to set new ID for it).
I don't understand how to do that.
"--verb-list" has a useful "verb" - "DialogObjectProperties" , which "edit ID, locked and visible status, and other object properties".
I don’t understand how to use it correctly.
My unsuccessful attempts:
Code: Select all
--verb=DialogObjectProperties-id=id_textCode: Select all
--verb=DialogObjectProperties-id="id_text"Code: Select all
--verb=DialogObjectProperties-id='id_text'Code: Select all
--verb=DialogObjectProperties --verb=DialogObjectProperties-id='id_text'The result - ID don't changed.
Please, show me how to use this verb for ID changing.