osmo
November 2, 2004, 8:43pm
1
I have a problem exporting a track title with a " in the title.
For example:
track title:
casta diva, from the opera "norma"
line in export config:
$replace("%title%", "#", "#")
result in the exported file:
[unrecognized variable or operator: norma]
and:
line in export config:
%title%
result in the exported file:
casta diva, from the opera "norma"
This seems to be a new problem with the version 2.26.
Florian
November 6, 2004, 12:58pm
2
I can reproduce the problem but I have no solution at the moment. Please stay tuned - I'll think about it.
Best regards,
~ Florian
Florian
November 23, 2004, 11:40am
3
osmo,
I've totally rewritten the internal scripting engine and I think this is now fixed with the current Development Build . I've changed the complete syntax of the scripting functions, so please read the what's new file after updating.
Thanks for your patience!
Best regards,
~ Florian
osmo
November 23, 2004, 3:40pm
4
Thanks. It seems to be working well.
The only major problem I found was that $eql, $neql, $geql and $leql don't seem to work. For example $eql(%artist%,%artist%) returns nothing. I don't use these though.
A minor note:
To get ' you'll use '', not '''.
dano
November 23, 2004, 3:48pm
5
I think $eql,... are logical comparisons and must be used with $if functions.
like $if($eql(%title%,),%_filename%,%title%)
osmo
November 23, 2004, 4:22pm
6
I think $eql,... are logical comparisons and must be used with $if functions.
like $if($eql(%title%,),%_filename%,%title%)
It seems to be so. I think $eql used to return 1 if true and 0 if false.