INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: RobOK on August 17, 2006, 12:01:32 pm

Title: Expressions: How to Show Image ratings as ***'s
Post by: RobOK on August 17, 2006, 12:01:32 pm
I have been wanting to see Ratings graphically under the thumbnails of Images.  What I really want is a control with the five stars where you can actually change the Rating for each thumbnail.

In the meantime, if you want to see the ratings as *, ** , *** etc. instead of the numbers, here is a formula to do that.  Paste it into the Thumbnail Caption in "Customize Current View'



if(isequal([rating],5), *****,if(isequal([rating],4), ****,if(isequal([rating],3), ***,if(isequal([rating],2), **,if(isequal([rating],1), *, none)))))


Obviously you can change the characters.  One idea is to use "* * * * *" instead of "*****" to give it more width and readability.