I have different renaming masks in both songkong and jaikoz. I had to create a new one for songkong because my jaikoz one wouldn’t work. I ended up liking the new songkong one I made better, but I also can’t use it in jaikoz. Does songkong and jaikoz use different javascript interpreters or different naming conventions? Are the 2 programs naming masks not compatible with each other?
This is my songkong one:
ifnotempty(albumartist,'/')
+ ifnotempty(album,' ')
+ (year.length>0 ? '(' + year + ') ' : '')
+ (mbreleasecountry.length>0 ? '(' + mbreleasecountry + ') ' : '')
+'/'
+ (disctotal>1 ? discno + '-' : '')
+ track + ' - '
+ title
I tried just breaking it into 2 parts to use it in jaikoz and it is not showing it working in the example mask.
Folder shows empty if I try:
ifnotempty(albumartist,'/')
+ ifnotempty(album,' ')
+ (year.length>0 ? '(' + year + ') ' : '')
+ (mbreleasecountry.length>0 ? '(' + mbreleasecountry + ') ' : '')
File shows empty if I try:
(disctotal>1 ? discno + '-' : '')
+ track + ' - '
+ title
Any ideas why I can’t use my songkong file mask in jaikoz?