I've been created some groups with LABEL field definitions.
Now i'ld like to change a group name.
Is it possible to change common "group title" definition, applying this change into the field of all records belonging the group (without having to go into each record and changin' field for each of them)?
(maybe i suppose this message should maybe go into "comments"forum as a desired implementation...)
ciao
ABN
Help on Groups
This has to be done through script.
It would be a good idea to make a wizard for that (e.g. you select a group or some movies, and call a menu "mass change field", etc.) but until then you have to use the current scripting module. Select the movies that have to be modified and then apply a simple script like
It would be a good idea to make a wizard for that (e.g. you select a group or some movies, and call a menu "mass change field", etc.) but until then you have to use the current scripting module. Select the movies that have to be modified and then apply a simple script like
Code: Select all
program NewScript;
begin
SetField(fieldMedia, 'new label');
end.