I'm having an issue where when I read a property name string, I gate a string with the text "Value".
var oOwner = oProperty.getOwner();
var sPropertyLabel = oProperty.getLabel();
var sPropertyName = oProperty.name;
var sPropertyPath = oProperty.getPath();
var bPropertycanAutoFollow = oProperty.canAutoFollow();
var vPropertyMaxValue = oProperty.getMax();
var vPropertyMinValue = oProperty.getMin();
All these lines of code return correct values, but some Modifier/Shape properties (not all) don't return the name seen in the property spsemeter settings window. I need this name because it's used during FBX export (not the label).
Bruce