INTERACT FORUM

More => Old Versions => Media Center 12 (Development Ended) => Topic started by: MrHaugen on July 02, 2007, 04:25:10 pm

Title: Need a bit of Theater View file caption help
Post by: MrHaugen on July 02, 2007, 04:25:10 pm
I have tried to make a few advanced expressions but failed misserably. Below I have written what I would like to accomplish with a bit of pseudo code. Would be great if someone could help me with the expression. Or maby someone could explain to me how the different parts are combined. I searched the help for some information but it did not exactly explain this. Only what each expression did on their own.

Here is what I would like to do:

if(isEqual([media type],video,1)
   if Name = "" show [Season]x[Episode],NP:[Number Plays] - [Last Played]
   else show [Season]x[Episode],NP:[Number Plays] - [Name]

if(isEqual([media type],audio,1)
   show [Name] - [Artist] - ([Album])
Title: Re: Need a bit of Theater View file caption help
Post by: zirum on July 03, 2007, 05:13:20 am
Not entirly sure what you exactly want, but if you want an
if empty name then
   something
else then
   something else

then it should be easy to use the following:
Code: [Select]
If(IsEmpty([Name]), [Artist], [Name])
You write that you want the following (as i understand it...):
[Season]x[Episode],NP:[Number Plays] - [Last Played]

This means the following in a expression:
Code: [Select]
If(IsEmpty([Name]), [Season]x[Episode]/,NP:[Number Plays] - [Last Played], [Season]x[Episode]/,NP:[Number Plays] - [Name])
Which in total could be something like this:
Code: [Select]
If(IsEqual([Media Type], Video), If(IsEmpty([Name]), [Season]x[Episode]/,NP:[Number Plays] - [Last Played], [Season]x[Episode]/,NP:[Number Plays] - [Name])
, If(IsEqual([Media Type], Audio), [Name] - [Artist] - /([Album]/), Image file string))

Hope this helps. Haven't tried it out on videos, since i don't have any in my library here...
Title: Re: Need a bit of Theater View file caption help
Post by: zirum on July 03, 2007, 05:18:08 am
For your info, ( ) and , are special chars which needs to be escaped with a / in order to display in a string.
Title: Re: Need a bit of Theater View file caption help
Post by: MrHaugen on July 03, 2007, 11:45:26 am
Wow. That worked. Almost as expected.... Thanks zirum!

The end result ended up like this:

If(IsEqual([Media Type], Video),
   If(IsEmpty([Episode]),/NP:[Number Plays] - [Name],
   S[Season]E[Episode]/ (NP:[Number Plays]/) - [Name]),
If(IsEqual([Media Type], Audio),
   [Name] - [Artist] - ([Album],
   [events] /(formatdate([date,0],d-MMM-yyyy/)) ||[people]))

I have no images yet, so I have not tested that. Also need to tune the actual output a bit. Don't look as good as I had hoped.

Someone have a suggestion to good text used for videos and series? I need something that looks ok and gives me the info I need.