Help on Groups

If you need help on how to use the program
Post Reply
ABNormal
Posts: 135
Joined: 2005-01-08 08:33:38

Help on Groups

Post by ABNormal »

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
antp
Site Admin
Posts: 9668
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

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

Code: Select all

program NewScript;
begin
  SetField(fieldMedia, 'new label');
end.
Post Reply