Yeah I am still mystified how you didn't see it yesterday either. 
It seems to matter how the column is
originally added to the list, if done via Show Column it works for me too, if done via Add Column, it fails for me, so that's possibly the difference between us, I think I have demoed this discrepancy in the script below. Although what you said in your last post doesn't make sense to me because in the GIF I previously posted, it clearly shows that I have the column
visible so the info IS present in the list, but like I mentioned in my last post, the issue only happens in CC#1>10.
Anyway I will try again to show you the issue(s), it requires minimal effort, in a
fresh instance all you need to do is goto a folder that has audio files in it and run this script.
Code: Select all
setcolumns("Name,:d-10,:d-11");
// setcolumns("Name,Custom 10,:d-11"); // This sort of "works", but I am trying to demo what I get via GUI
text
report("{Custom 10}|", 0) .<crlf>.
report("{Custom 11}|", 0) .<crlf>.
strrepeat("=", 10) .<crlf>.
report("{Custom 10}|", <pick>) .<crlf>.
report("{Custom 11}|", <pick>) .<crlf>;
If there is no bug, and assuming you get output the same as me (risky...), can you explain why the results are different between the top and bottom sections? Just for a visual, below is a screenshot of what I get, so as well as itemlist 0 not working on CC#1>10, notice that Custom 11 which should be "Channels" is returning the values of Custom 10 instead somehow.

- 2025-04-06_060403.png (17.95 KiB) Viewed 2032 times
Crazier still, if I add Custom 16 to the list, then Custom 11 gets reported correctly, but only when it should be reporting on Custom 16! eg.
Code: Select all
setcolumns("Name,:d-10,:d-11,:d-16");
text
report("{Custom 10}|", 0) .<crlf>.
report("{Custom 16}|", 0) .<crlf>.
strrepeat("=", 10) .<crlf>.
report("{Custom 10}|", <pick>) .<crlf>.
report("{Custom 16}|", <pick>) .<crlf>;