Matrix Version: 5.3.4.0
Hi, does anyone know how to access certain values in a related asset metadata field?
According to this page - https://matrix.squiz.net/manuals/metadata-schemas/chapters/metadata-fields#related-asset-field you can increase the number of max selections and when you do they are all stored in an array but then how do for instance access the 3rd value using keywords?
e.g. %globals_asset_metadata_test???%
Edit: Is an array for a related asset metadata field not a proper array?
e.g.
In my design parse file if I do this -
alert("%globals_asset_metadata_test^index:0%");
This will not work however I can do this -
var test = %globals_asset_metadata_test%;
alert(test[0]);
And it works?? But the problem with the second one is I can’t use that asset id number and pass it back into Matrix keywords for me to use or can I?