Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Display multiple values of a single tag in Item Details (Read 2159 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Display multiple values of a single tag in Item Details

Sorry if my question is too lame to exist here, I am pretty new with all this formatting language...

I have a tag (STYLE) which contains multiple values and I want them to be displayed in CUI Item Details, but each value on new line (by default they are separate by ,). I have tried this:

$puts(a,0)$repeat($meta(STYLE,$get(a))$puts(a,$add($get(a),1))$crlf(),$meta_num(STYLE))

but it seems I am doing wrongly the incrementation and it displays multiple times the first value of STYLE. Is there a way of doing this?

I have another question, concerning Item Details: is it possible to insert image in the text field?

Many thanks in advance.

Display multiple values of a single tag in Item Details

Reply #1
[font= "Lucida Console"]$replace(%style%,',',$crlf())[/font]

You can't display image but you can wrap "Artwork view" panel with Item detail panels in your CUI layout

 

Display multiple values of a single tag in Item Details

Reply #2
Thanks.