Can the “Inset Spacing” setting in the object style be written in the `properties` object?
Right now, I can only write it like this:
var objPath = app.documents[0].objectStyleGroups.itemByName(ObjStyleGroup).objectStyles.itemByName(myObjStyle);
objPath.textFramePreferences.insetSpacing = [2.5 * 2.834645, 0, 0, 0]
But I want to write it in the `properties` section, like this:
objPath.properties = {
textFramePreferences.insetSpacing:[2.5 * 2.834645, 0, 0, 0]
}But that seems to be wrong.
What should I do?

