IsVisible | |||||
By default, plugins are visible for a given number of entries and/or specific entries, let's call it a default plugin visibility. For example in CM, PluginCmDelete is visible if at least one entry is selected. PluginCmPremiere is visible only for one entry of class DigaCutMT-Project or DigaCutST-Project.
You can restrict further the visibility of your plugins by configuring the IsVisible plugin key with a logical expression by the help of different operators. If the default plugin visibility is true then your IsVisible will be evaluated against each item of your selection. If IsVisible is true for all selected items, then the plugin will be visible. Beware you can only restrict the visibility to specific items, not enlarge, as the default plugin visibility is checked before your IsVisible. Use the operators below. - Mathematical operations such as +, -, not, sqrt, (...), !, *, /, %, ==, !=, >=, <=, >, <, and, or, x ? y : z - get(x) to access a property x for an item depending on the context. E.g. get('hasAudio') returns true if an entry contains audio - contains(x,y) returns true if x contains y - uppercase(x) returns x in uppercase |
|||||
|