Hello everyone, I have an advanced rule that I use in the emblems part to show me the author's image next to the cover.
program: rslt=''; tags = $tags;
rslt = list_item(tags, 0, '&') & '.png';
for i in range(1, list_count(tags, '&')):
if i == 4 then break fi;
rslt = rslt & ':' & list_item(tags, i, '&') & '.png'
rof;
return rslt
I thought about using it in the tags column to put one icon per label but it only shows me a single icon with the images of the other tags.
Any solution or comment would be helpful.
Last edited by dunhill; 07-13-2024 at 03:05 PM.
|