Hi fade2gray,
Quote Originally Posted by fade2gray View Post
An observation regarding Caption > Clickable:

When toggling the option, the effect on the SequenceBars.plugindata file is either to show the entry "["$clickThru"] = true" when clickable checked, or no entry at all when clickable not checked.
Yeah, I did this on purpose. The point is to minimize the size of the data that it spits out when you use the "Export" feature. Since "nil" is equivalent to "false" in boolean logic in lua, I can save space by deleting the variable when it's false. Come to think of it, though, it probably would be better to store all of the variables normally in .plugindata, but delete all of the "false" ones during the Export operation.

P.S. Would also be nice if ["$barCaption"]/["$groupCaption"] could be implemented in the plugindata file.
I also did this on purpose. Both the "Bar" and "Group" objects are derived from "Node", which contains all of the stuff that is in common between the two. For example, in the OptionsPanel, when it displays the hierarchy of groups/bars, it can treat all of the nodes the same when displaying their names. Or that's the theory, anyway.

I'm very curious what exactly you are doing with your .plugindata file now.