Name Variable My Rating

If you need help on how to use the program
al0203
Posts: 72
Joined: 2013-02-27 05:24:17

Name Variable My Rating

Post by al0203 »

Which is the name for the variable My Rating?
When I look in the programs help it saids UserRating, but when I try to use it, it returns me an error.
In the old version I had created a custom variable call Nota (Real 1) and I´m trying to copy this values to the new field My Rating.

When you import an AMC file, is it the possibillity to change the variable of a colum data? When you import from an excel you can chose which colum goes with which variable.
Raoul_Volfoni
Posts: 863
Joined: 2006-08-31 23:58:18

Post by Raoul_Volfoni »

Hi,
al0203 wrote:Which is the name for the variable My Rating?
It's fieldUserRating.

al0203 wrote:In the old version I had created a custom variable call Nota (Real 1) and I´m trying to copy this values to the new field My Rating.
If the tag of your custom field is also Nota, this little script should do the trick

Code: Select all

program Nota_to_UserRating;
begin
SetField(fieldUserRating,GetCustomField('Nota'));
end.
If the tag is different, just change Nota by the value of your custom field tag.

al0203 wrote:When you import an AMC file, is it the possibillity to change the variable of a colum data? When you import from an excel you can chose which colum goes with which variable.
You have to click on column headers to assign fields to them.