Star Ratings: solid stars opposed to empty stars

hello,
i have noticed that when i give star ratings in iTunes that some of the stars fill in and some are left empty in the center. does anyone know what the difference represents?
thanks in advance...

You mean the stars will actually be "turned on" so to speak, but with a hole in the middle, like a star shaped donut?
I know ratings did, and probably still do, support half star ratings. You can not do it in iTunes directly but there are scripts to assign half stars and they will show up as half stars. Perhaps related to that?
Patrick

Similar Messages

  • Why there are ratings (stars)?

    Hi there,
    I've been long wondering why a lot of the songs in my iTunes library have four-star ratings.  I do not rate songs.  Never.
    Why is this? Why four stars?
    What do the ratings do?  Are there any effects to anything?
    Regards,
    Ryo

    Ryo,
    What is your iTunes version? assuming it is the recent 11.0.4:
    Are the rating stars you are seeing solid or just outlines?
    Solid ratings can only be applied by pressing one of the stars and setting a rating. Maybe you did that accidentally for some songs.
    Outline rating are applied by setting a rating for an album and will show for all songs in the album.
    I do not know of any way that will apply ratings without your contributing.
    For examle: Album rating stars "outlined" stars and individual ratings "solid" stars.
    What do the ratings do?  Are there any effects to anything?
    Ratings are one way to organize your iTunes Library. If you rate songs, it will help you to include search for your most likes songs - you can sort by rating and can use the rating in smart playlists.
    For example:
    Using the rules "Rating is *****" and "Genre is Rock" will give you a smart playlist of your favorite Rock songs.
    But it does not influence the songs in any way. Shuffling may favor the higher rated songs, however.
    Regards
    Léonie

  • R/3 to MDM: XML files stuck on the port

    I am moving some master data from R/3 to SQL (for reconciliation report purposes) and then I built a .net application that translates the data in SQL to XML format and dumps the data in their respective ports.  I have my mapping and schemas defined.
    The problem I'm having is, the XML files are not getting picked up in the Ready port and moving to the Archived folder.  There are no exception, and the console gives me a status of, "Has Data" (as opposed to empty or exception), so I know that the system is aware the files are present. 
    If I call our BASIS team and have them restart the service, then the files get picked up and processed correctly.  The files are scheduled to be picked up every 30 seconds, but any new files that are generated also get stuck.  The other posts we have in the same repository are working fine.
    Any ideas?

    Hi Andrew,
    can you please check if in the Console, the Port (Admin node -> Ports) has in the attribute 'Processing' the value automatic?
    Regards,
    Christiane

  • Dunno how to write JSP for login in......

    Can someone help mi on write JSP coding for login in page?i dun really know how how to write JSP coding. i m now doing a project on Private Driving instructor portal where people can register as trainee or instructor.now i want to write the JSP coding on the login page part.... when instuctor login it will go to a instructor's main page n if a trainee login it will go to a trainee's main page.Can someone help mi on this??? it's very urgent n important for mi.Please help mi.

    The easiest method I have found is to use a database to store the users details along with a flag indicating whether they are a trainee or an instructor. Upon logging in, you can use a bean to connect to the database and retrieve these values, then it is a simple matter of a jsp:forward tag to re-direct to the applicable page for trainee or instructor ...
    e.g.
    <pre>
    ***JSP PAGE ***
    <%@page language="java" buffer="32kb" import="jspclasses.customer.*" errorPage="./error.jsp"%>
    <jsp:useBean id="userBean" class="jspclasses.userInfoBean" scope="session"/>
    * Get user and pass from form variables. (if passed)*
    String user = request.getParameter("username");
    String pass = request.getParameter("password");
    * Retrieve fullname from session object. (if exists)*
    fullname = (String)session.getValue("fullname");
    String fwdPage = (String)session.getValue("fwdPage");
    if (fullname==null) {
         try {
         * If no session has been established then attempt to create one using *
         * the values passed through via form. If no values have been passed *
         * through then variables will equal null as opposed to empty strings. *
         * If null is evident, catch with NullPointerException. *
              if (user.equals("") || pass.equals("")) {
                   fullname = "Not";
              } else {
                   * Send values to method which validates users *
                   userBean.setUserInfo(user,pass);
                   * If an error was encountered within userBean the error *
                   * instance variable will != null. *
                   if (userBean.error == "") {
                        fullname = userBean.getFullname();
                   } else {
                        * Error was encountered so we set fullname to "Not", if *
                        * user was entered we re-display value and we instantiate *
                        * error variable to error value of userBean. *
                        fullname = "Not";
                        if (user!=null) uservalue=user;
                        error = userBean.error;
                        //out.println("Error is not null:<br>"+error+"<br>");
                   if (fullname!="Not") {
                        session = request.getSession(true);
                        session.putValue("fullname",fullname);
                        session.putValue("email",user);
                        session.putValue("user_id",userBean.getUserId());
                        session.putValue("user_type",userBean.getUserType());
                        session.putValue("sessionid",session.getId());
                        session.setMaxInactiveInterval(12000);
    ***END JSP***
    *** START BEAN ***
    public void setUserInfo(String user, String pass) {
    String stmtString = "";
    ResultSet rs = null;
    // Check to see if a valid connection is available
    getConnection();
    // If getConnection returns null then
    // connection successfully established
    if (error.equals("")) {
    try {
    // Create SQL string to be sent to database
    stmtString = "select * from serv_user where email = '" + user + "' and password = '" + pass + "'";
    // Execute SQL
    rs = stmt.executeQuery(stmtString);
    // Specify estimated rows to be returned
    rs.setFetchSize(1);
    // If a row is returned get first and last name
    if (rs.next()) {
    user_id = ((rs.getString("USER_ID")!=null)?rs.getString("USER_ID"):"");
    ("USER_TYPE_ID"):"");
    first_name = ((rs.getString("FIRST_NAME")!=null)?rs.getString("FIRST_NAME"):"");
    last_name = ((rs.getString("LAST_NAME")!=null)?rs.getString("LAST_NAME"):"");
    business = ((rs.getString("BUSINESS_NAME")!=null)?rs.getString("BUSINESS_NAME"):"");
    address = ((rs.getString("ADDRESS")!=null)?rs.getString("ADDRESS"):"");
    suburb = ((rs.getString("SUBURB")!=null)?rs.getString("SUBURB"):"");
    state = ((rs.getString("STATE")!=null)?rs.getString("STATE"):"");
    postcode = ((rs.getString("POSTCODE")!=null)?rs.getString("POSTCODE"):"");
    hom_phone = ((rs.getString("HOM_PHONE")!=null)?rs.getString("HOM_PHONE"):"");
    bus_phone = ((rs.getString("BUS_PHONE")!=null)?rs.getString("BUS_PHONE"):"");
    mob_phone = ((rs.getString("MOB_PHONE")!=null)?rs.getString("MOB_PHONE"):"");
    fax = ((rs.getString("FAX")!=null)?rs.getString("FAX"):"");
    email = ((rs.getString("EMAIL")!=null)?rs.getString("EMAIL"):"");
    pass_hint = ((rs.getString("PASSWORD_HINT")!=null)?rs.getString("PASSWORD_HINT"):"");
    else {
    error = "User <b>"+user+"</b> does not exist with specified password.<br>Please try again.";
    } // END : ResultSet = true
    } // END : TRY
    catch (SQLException sqle) {
    error = "<b>Error accessing database:</b><br> "+sqle.toString()+" - ORA:"+sqle.getErrorCode();
    catch (Exception e) {
    error = "<b>Error occurred in method setUserInfo()</b><br> "+e.getMessage();
    } // END : CATCH
    finally{
    closeConnection();
    try{
    rs.close();
    }catch(SQLException sqle){
    } // END : IF
    } // END : METHOD
    } // END : BEAN
    ***END BEAN***

  • Why does my shape change when I change stroke attribute?

    Hello,
    I am having problems with my vector shapes automaticly changing shape (the position of every point that makes up the shape) when I increase the weight of the stroke or at color of the stroke. I hope that is clear.
    For example: I have a Circle, then I change the weight of the stroke by clicking up on the arrows in the stroke dialog box. Every click up or down moves each point in a different direction. By the time I settle upon the weight I want, the shape is no longer a circle, but a abstract ameba shape.
    Can anyone lend me some wisdom for what I can do to fix this problem?
    Thanks a ton!

    You select only part of the path instead of all of the path, that is some anchor points are selected, solid, as opposed to active but not selected outlined.
    Option clickon the path withthe direct select tool or click on the center point to select the whole path with the direct selet tool or use the selection tool or drag a marquis with a selection tool to select the path and the anchor points
    now you can move it with the arrow keys
    oh I see you want to change the stroke weight you need to have the cursor active in the Stroke panels weight field in order for the weights to change so first select the path then click in the weight field of the panel.

  • How to install windows in my mac book pro 2011

    Hi,there
    i brought the macboo pro on Nov. but i can not install the windows 7. onec I installed the system, the mac system will be destoried and disappeared.
    so, is there anyone can help me solve the problem, or teach me how to install the windows7  
    Regard
    June

    Hi,
    What are your Mac's specs, ie RAM, hard drive size, video memory, etc...? If you MacBook Pro is brand-new, frankly, don't bother installing Windows on a separate partition: install VirtualBox, create a sizeable (as in, 20 to 30Gb) virtual hard drive, then install Windows on it.
    The pros? You can use your copy of Windows as if it were installed on a separate partition, without the hassle of partitioning. You can even switch from OS X to Windows without having to reboot.
    The cons?  Windows won't feel as responsive as it would on its own partition (though from what I hear about Boot Camp, even that is debatable...), and you'd rather have a solid amount of RAM, empty disk space (for swapping) and video memory if you want to enjoy the experience.
    Up to you, but worth a try...

  • Semi-Transparency Blues

    Hi—
    I’m having problems with semi-transparency in a t-shirt design.
    The design includes both a reflection and a satin effect that fade from 0% transparent to 100% transparent.  The t-shirt manufacturer’s software, unfortunately, fills the missing area (where there would be a partial image) with a solid color rather than empty space.
    Upon speaking with the manufacturer, they recommended “simulating” transparency via dithering, using either a GIF or a PNG converted to an eight-bit paletted file.  I understand neither of these concepts, and even the designer who helped me create the shirt in the first place -- awesome guy --  was unable to make much headway.
    Would anyone on this forum have any suggestions on how to implement these, please?  I’m running out of options, and would hate to have to trash a cool design.
    Many thanks,
    --Cliff

    Mark--
    Thank you for weighing in!
    Unfortunately I do not: the manufacturer did not send me a picture of what their software did to the image, so I only have my original.  And it's a very large file, at over 100MB (for the layered psd).  I could separate out the "problem" layers, but I suspect they would look just like any other file that uses semi-transparency.  Apparently this issue affects all images using that technique (unless done via dithering).
    Apologies,
    --Cliff

  • Way the Maverick upgrade works slow in my mac book pro 2011?

    I just install e new OSX, and my macbook pro work slow. And doesn't the same with mountai lion.

    Hi,
    What are your Mac's specs, ie RAM, hard drive size, video memory, etc...? If you MacBook Pro is brand-new, frankly, don't bother installing Windows on a separate partition: install VirtualBox, create a sizeable (as in, 20 to 30Gb) virtual hard drive, then install Windows on it.
    The pros? You can use your copy of Windows as if it were installed on a separate partition, without the hassle of partitioning. You can even switch from OS X to Windows without having to reboot.
    The cons?  Windows won't feel as responsive as it would on its own partition (though from what I hear about Boot Camp, even that is debatable...), and you'd rather have a solid amount of RAM, empty disk space (for swapping) and video memory if you want to enjoy the experience.
    Up to you, but worth a try...

  • GetProperty() in Browser script and Open UI

    Hello Open UI Expert,
    I was going through IP2014 deployment guide and found something around GetProperty() as below. 
    GetProperty() can return undefined values as opposed to empty values and this requires code alignment.
    However, when we turned on OpenUI , we found that the script which was working correctly.
    Can you please help me to , under which scenarios GetProperty() method would work in OpenUI from your experience?
    Also it was mentioned that it would need a code alignment, as far as my understanding goes, we can rewritte code in server script.
    Can you please help me to validate understanding?

    The Deployment Guide (1499842.1) states:
    Migrating browser scripting
    There should be no requirement to change the client side browser scripting to run Siebel Open UI. Customer must ensure however that no browser specific JavaScript is implemented in existing browser scripts to ensure function beyond the traditionally supported browsers.
    Specific methods in Siebel have been enhanced or changed for a variety of reasons such as security. These methods include:
     WriteRecord: WriteRecord method in browser script failing in the Siebel [ID 1551530.1]
     ProfileAttributes: Why is GetProfileAttr/SetProfileAttr not Working in Siebel [ID 1546662.1]
    o SetPRofileAttr
    o GetPRofileAttr
    Information on Scripting related information for these methods can be found at the links above

  • Using iChat to interact with Twitter

    I'm a Twitterholic and love using Twitterrific but Twitter has recently added tracking which outputs to SMS or IM only. Since Twitterrific doesn't support this new feature I've tried the Twitter IM bot on iChat. I've abandoned the Twitter IM bot before because of it's spotty and one way service. Now I'm wondering if maybe there's something wrong on my end.
    Anyone else having problems interfacing with Twitter IM bot? When it works, I can change my status and send it commands but I have yet to receive a direct posting from it. Wondering what other people's results were.

    I've chatted with the Twitter devs and they have admitted that AIM support is not really solid yet. It's on their list of features to fix, but for now they recommend that I use a Jabber account to communicate with the Twitter IM bot. I did this, using Gmail, and I can attest that there is a world of difference between bot support through Jabber versus AIM. Tracking works like a charm, as do notifications and direct tweets. If you don't want to run Twitterrific, or would rather just do it all through iChat and have less taxing your CPU, then set up Jabber in iChat using your Gmail address. I've been very pleased with the results. It's been rock solid as opposed to the spotty, buggy performance through AIM.
    All the best
    (TheLaughingImp on Twitter)

  • Empty Star Ratings on Songs, why?!

    I've rated our over 25,000 song collection and my wife doesn't exaclty have the same musical taste as me, so I set up her own windows login on our pc and imported my library into itunes for her. I then reset all of the ratings to none so she could rate her songs her own way on her login and I could do the same on my login. Once I reset all of the song ratings rather than go blank next to each song they are now empty stars with the same rating I had given them. How can I get these to go away? At this point I think all I can do is make them all 1 stars and let her go from there but I'm curious if I can get around that. Thanks!

    Oh, well i don't really understand the logic of rating songs in iTunes, just give em all 5/5... as long as you & your wife like those songs it will show up in yours/hers favorite my top 100/200 songs list...
    Just Chill

  • Empty / White Rating Stars won't go away

    When I rate one or more songs on an album, iTunes automatically gives estimated ratings for the rest of the songs on the album as white or empty stars. Which I don't like.
    Formerly, I was able to fix this by going to album view, right click on the album and set rating to zero. But with the last software update this fix doesn't work anymore.
    Any suggestions?

    Are you talking about "Rating" or "Album Rating"? There appears to be a difference. I didn't even really know what you were talking about and did a Google search. Then I made a smart playlist for myself of all of my songs with and album rating not zero. The vast majority of my library popped up.
    My suggestion is that you don't assign an Album Rating to any song. The Album Rating appears to be consistent throughout all of the songs from an album (which would only make sense). I gave one song on Doc Powell's +Doc Powell+ an Album Rating of 5, then as I selected the rest of the songs on that album, they went from 4 empty stars to 5 stars. The "problem" is that the one unrated song from that album suddenly had 5 empty stars in the Rating column. Well, no, if I thought that song was worth 5 stars, I would have already given it such a rating! I presume rating the song would replace the five empty stars with the number of stars I want the song to have. I selected a song and returned the Album Rating to zero, so all of the songs went back to 4 empty stars, and my unrated song from +Doc Powell+ went back to 0.
    Apparently, iTunes takes the average of the Rating of songs on an album to suggest an Album Rating with empty stars. That rating will be the same for all songs on the album. However, if you assign an album an Album Rating by giving one of the songs any number of stars in the Album Rating column, it will suggest that value with empty stars in the Rating column for any song you haven't given a solid rating within that album. That actually makes sense to me.
    Solution: don't give any song an Album Rating. I don't even have that column showing in my playlist views. Make a smart playlist where the criterion is Album Rating is not 0; then select one song from each of the albums and change the Album Rating to 0. You can live with the empty stars in that column.
    Does this help?

  • HT1711 I have recently upgraded to IOS 7 and now cannot rate my songs in itunes. I single click on the song and hit the applicable dot under ratings which usually then converted to a star. Now it does nothing when I click on the dot. What's wrong?

    Since I upgraded to the latest IOS, I cannot get Itunes to rate my songs. My ratings determine which playlist my songs are entered into. For two days, I've tried to rate the last 4 songs I downloaded but when I click on the songs to bring up the 5 little dots, nothing happens when I click on the applicable dot. Normally I get the stars but not now. Can someone tell me what's going on and what I have to do to make rating a song work?  Thank you!

    Hey briannagrace96,
    Welcome to Apple Support Communities! I'd check out the following article, it looks like it applies to your situation:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    You'll want to go through the following troubleshooting steps, and for more detail on each step follow the link to the article above:
    Try the iPod troubleshooting assistant:
    If you have not already done so, try the steps in the iPod Troubleshooting Assistant (choose your iPod model from the list).
    If the issue remains after following your iPod's troubleshooting assistant, follow the steps below to continue troubleshooting your issue.
    Restart the iPod Service
    Restart the Apple Mobile Device Service
    Empty your Temp directory and restart
    Verify that the Apple Mobile Device USB Driver is installed
    Change your iPod's drive letter
    Remove and reinstall iTunes
    Disable conflicting System Services and Startup Items
    Update, Reconfigure, Disable, or Remove Security Software
    Deleting damaged or incorrect registry keys
    Take care,
    David

  • Nano star RATINGS not reflected in iTunes 7.4.1 (2) - manual sync

    Aloha,
    I rated several tunes while walking. I don't have enough room on my 4gb iPod to carry everything at once. I would like to temporarily remove those tunes that I have already rated and put some others on. I use the star ratings as my own personal way to sort by speed, favs, and junk.
    When I get back to my Mac, I know that the ones with 1 star are to be deleted - pau (pronounced pow! Pau is Hawaiian for done, did it, finished, no more).
    2 stars is slow, maybe no words
    3 is walking pace, can talk over, easy listening
    4 is dance, hike, pep up
    5 are personal fav's of a variety of speeds
    I want to have that ranking info sync up with the same songs that came from my library in the first place. Then I want to dump those and grab more music, or audiobook parts, or podcasts, whatevahs. This is the way I used to do it on my old FireWire iPod many versions of iTunes ago.
    I plan to continue to rate music as I have time and when I get back to my Mac that rating system allows me to put the music into playlists that I have essentially created on the fly.
    I can change my rating system at any time and wa-la I've got a new playlist.
    I'm open to other ways of accomplishing same onthego sorting principle. I've tried creating a playlist using iTunes, but the playlist is on my Nano and I cannot copy it or the files to a playlist on my Mac. . . . maybe I can export a playlist
    Oh, that was ugly - don't follow me! I imported the playlist into my library and I now appear to duplicates of every playlist related to music (and the two called 4star are both empty). Great (eSarcasm).

    First thing to get out of the way is ratings do not transfer from iPod to iTunes in manual syncing. Try using sync selected playlists mode. Then set up iPod to sync the playlists you want on iPod.

  • ITunes Rating Stars Not Solid.

    I've noticed from time-to-time that my rating stars seem to be hollow and no longer solid. What does this happen?

    User5910 I will try to answer all of your questions throughout so please read through. 
    You misread that example.  The example of "Any" doesn't reflect any track, movie, podcast etc that is a "Nested formula" in a Smart Playlist.  You have the ability to tell the play list that "any" or "all" of the criteria must be met using this.  The use of this (and the subsequent Album Art ratings which are indented) reflect what you should see.
    Before pressing the "Plus" button to add a new rule press the Alt/Option key.  This changes the "+" to ellipses "..." and by selecting this you enter into the "Nested Formula" option where a string of rules can be created which act differently.
    In the example above I told the Smart Playlist to look for any "true" instance for any "Album Rating" that IS NOT * - 5*.  It sounds reverse logic but I was telling the playlist I want to return values for any album that is rated. 
    In another way to read it; "Return any item that does not have a 1 * rating, 2 * rating, etc."  Meaning that only 0 * ratings would be returned.  The nested formula had to be used stating "Any" vs. "All" because no track will have all 5 ratings (meaning *, **, ***, ****, *****) at one time.  So I am saying that if any of the conditions are met then it is a true statement.  No one track would have all of the conditions met.  The use and understanding of any vs. all is key in this type of filtering.  An example is an track can be "any" one of the genres blues, rock, metal, classical but it wouldn't be labeled as "all" of them.  Understand?  (of course someone could try and build a stupid genre like blues/rock/metal/... but that isn't the point of a single field for that track.)
    As for the album rating when you do one track's rating.  That is true that the ratings appear.  ...but it doesn't impact my Smart Playlists unless I specifically rate the whole album.  ...I am unsure why it is for you?  I just tested an album with no ratings.  I added a rating and did a very simple playlist looking for that any track by that artist with greater than 1*.  ...I am a little cloudy on why that is happening to you.  I CAN confirm that if I explicitly rate an album (even without any specific tracks rated) the whole album appears in my playlist. 
    It appears iTunes handles an explicit "Album Rating" differently than the implied rating that occurs when a single track is rated.   Try unranking your individual tracks and then also undoing any "album rating."  ...this is a test unlikely to resolve it.
    ...but the real solution for you seems to be creating a playlist the features "Plays" (greater than or less 0) or even a playlist that focuses on "Skips".  There are many options to do this without messing with ratings.  It appears you are trying to use ratings in a way that it isn't designed for to some degree.  I used to use them similarly but now I expanded the categories I use in Smart Playlist creation.  It has really helped. 
    In your workflow your "Play" would be 0, but your "Skip" should register as 1.  Skip is a key metric you can filter by.
    I admit I didn't understand the portion of when, why, and how you determine which podcast to remove.  You rate items that you want to remove?  Sorry on that last part I am confused.

Maybe you are looking for

  • Is there a way to change the standard email message?

    Hi, I'd rather not have the message "Russ Conte has invited you to ..." as the message that is sent out for each invitation. Is there a way to change that without having to go in and change every single time it is used? Is there a preference for the

  • DVDs burned using iLife 06 are not recognized

    Hope someone has some advice for me. I have iLife 06 and have created a movie in iMovie. I sent it to iDVD to create the project and burn the DVD. So far, so good. But when the buring is complete, the DVD will not mount. It keeps getting ejected from

  • Help, can't open project file any more

    I relaunched iMovie to refresh the iPhoto thumbnails and now my project can't be opened. It is not listed at all in the Project list inside iMovie. And when I try launching it from the Finder, it open iMovie but nothing happens. Not even an error mes

  • URGENT PLEASE - Contact number wrong on my Infinit...

    I am due to have infinity installled tomorrow but just noticed my contact number on the order is an old phone number and not my current one. I know I placed the order on my current number and my current number is showing as having an outstanding orde

  • How to get object which is created previously?

    Hi , My question is that how to get reference of the object which is created previously using reflection API. that means, suppose i created one instance of class : ABC Class classAbc = Class.forname("ABC"); //load the class ABC. Object abcClassObject