by fetzenschaedl » Mon Mar 23, 2026 11:06 am
Hi There
This is a helfpful Addon, but I miss some additional fields to choose and copy.
I use some custom fields and like to copy this infrormation in the Details section of the tag.
In my case, it's the fields "Verlag" and "ISRC Number".
I would be happy if this could be taken into a future update of the addon.
I tried to Insert two links with image examples, but it don't work, even with inserting a space.
Kind regards, Daniel
Hi,
open \AppData\Roaming\MediaMonkey5\Scripts\fieldToField\actions_add.js with an editor and then replace the line (it should be pretty much at the top)
Code: Select all
const supportedFields = ['title', 'album', 'albumArtist', 'artist', 'actors', 'conductor', 'composer', 'director', 'lyricist', 'date', 'origDate', 'genre', 'comment', 'lyrics', ];
with this line
Code: Select all
const supportedFields = ['title', 'album', 'albumArtist', 'artist', 'actors', 'conductor', 'composer', 'publisher', 'involvedPeople', 'isrc', 'director', 'lyricist', 'date', 'origDate', 'genre', 'comment', 'lyrics', ];
then save the file, restart Mediamonkey and the fields Publisher and ISRC should be available.
[quote]Hi There
This is a helfpful Addon, but I miss some additional fields to choose and copy.
I use some custom fields and like to copy this infrormation in the Details section of the tag.
In my case, it's the fields "Verlag" and "ISRC Number".
I would be happy if this could be taken into a future update of the addon.
I tried to Insert two links with image examples, but it don't work, even with inserting a space.
Kind regards, Daniel[/quote]
Hi,
open \AppData\Roaming\MediaMonkey5\Scripts\fieldToField\actions_add.js with an editor and then replace the line (it should be pretty much at the top)
[code]const supportedFields = ['title', 'album', 'albumArtist', 'artist', 'actors', 'conductor', 'composer', 'director', 'lyricist', 'date', 'origDate', 'genre', 'comment', 'lyrics', ];[/code]
with this line
[code]const supportedFields = ['title', 'album', 'albumArtist', 'artist', 'actors', 'conductor', 'composer', 'publisher', 'involvedPeople', 'isrc', 'director', 'lyricist', 'date', 'origDate', 'genre', 'comment', 'lyrics', ];[/code]
then save the file, restart Mediamonkey and the fields Publisher and ISRC should be available.