INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: nymaestro on May 09, 2006, 04:13:27 pm

Title: Help!!! Expressions and Conditional Paths
Post by: nymaestro on May 09, 2006, 04:13:27 pm
I need to setup conditional file paths in the "Rename File from Properties" function based on the "Genre" tag.  Can anyone help me?

Thanks!

Title: Re: Help!!! Expressions and Conditional Paths
Post by: marko on May 09, 2006, 04:21:18 pm
:D

what's the conditions?
Title: Re: Help!!! Expressions and Conditional Paths
Post by: nymaestro on May 09, 2006, 04:27:45 pm
If "Genre" = "Classical" then \Tag1\Tag2\Tag3\Tag4\Tag5
ElseIf "Genre" = "Jazz" then \Tag1\Tag3\Tag5
Else \Tag1\Tag4\Tag6

...or something like that...
Title: Re: Help!!! Expressions and Conditional Paths
Post by: marko on May 09, 2006, 04:40:18 pm
this should work:

if(isequal([genre],classical,1),enter classical path between these commas,if(isequal([genre],jazz,1),enter jazz path between these commas,enter the path for all other genres here))


replace the blue bits with you paths.
Title: Re: Help!!! Expressions and Conditional Paths
Post by: nymaestro on May 09, 2006, 04:55:28 pm
THANK YOU!!!!