Jump to content

Rating stars backglass

    Create an account or sign in to download this
download_no_perm
568 Views
75 Downloads
5 From 2 reviews
12.33 MB File Size

4 Screenshots

About This File

Set of videos to use in a frontend like Pinup Popper to represent playlists based on the rating field in the database. The corresponding database queries could be something like this:

SELECT * FROM games WHERE (GameRating=5) AND visible=1  ORDER BY GameDisplay DESC; 

The better the rating, the more stars are shown behind the text block.

 

If you need a playlist that lists all unrated games in your database, use something like

SELECT * FROM games WHERE (GameRating IS NULL) AND visible=1  ORDER BY GameDisplay DESC; 

For a playlist with tables ordered by rating:

SELECT * FROM games WHERE (GameRating>0) AND visible=1  ORDER BY GameRating DESC; 

To limit that top rating category by a number (like a top 100 list):

SELECT * FROM games WHERE (GameRating>0) AND visible=1  ORDER BY GameRating DESC LIMIT 100; 

 

11 star rating loops rolled into one preview:

 

 

Corresponding Tarcisio style wheel set: 

 

Edited by GauGau
No new files. Just added more sql query examples and reference to the wheel set.

User Feedback

Create an account or sign in to leave a review

You need to be a member in order to leave a review

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

eagle7796

   1 of 1 member found this review helpful 1 / 1 member

These look great. I had inquired a while back if anyone had some videos for a playlist like this, nice to see someone finally made some. these will look a lot better than my makeshift ones I currently have. Is there a set for playfield also?

Response from the author:

Glad you like it. The playfield videos I'm using aren't mine to share except the one I attached.

mtpinning

  

Great idea for a playlist GauGau!  Have you by chance made wheels for these playlists?  I was trying to figure out what the field for "Web Rating" is called in popper as most of my ratings have been put in there.  Do you know what that field would be titled to make the adjustment in poppers SQL command?

 

Thanks for sharing your media!

Response from the author:

Thanks for your review. Actually, I have some corresponding files. I just uploaded the star rating wheel set that will be visible after moderator approval. I have edited the description for the backglass accordingly and added some query examples.

×
  • Create New...