Problem with viewing 2 albums with the same name in Cover flow

Hi if I have 2 albums with the same name ("The Best of" for example) but of 2 different artists there's a big problem with all idevices like iPhone...
So when I go in iPod app and I want to watch all albums in cover flow when I choose one of these 2 albums I'll find all the songs of both albums merged...

The MouseListener you use would have to know about both JPanels and both their repaint-methods when mouseClicked-method is called.
Something like this:
public class Repainter extends MouseAdapter {
private JPanel panel1;
private JPanel panel2;
public Repainter( JPanel panel1, JPanel panel2 ) {
this.panel1 = panel1;
this.panel2 = panel2;
public void mouseClicked( MouseEvent me ) {
panel1.repaint();
panel2.repaint();
Tell me if I misunderstood the question or if you have any further qestions.
/ Jeremia.

Similar Messages

  • Album Shuffle Doesn't Work Properly When Albums Have The Same Name

    I'm using the latest versions of iTunes 7.0.2 and 5.5G iPod v1.2.1, but this problem has existed in (as far as I know) all iPods to date. It certainly still continues to occur on the latest iPod.
    Example of the problem: I have many Albums by different Artists. I listen to them on my iPod by using "Album Shuffle" which plays the contents of an album in sequential order, but successive albums in random order. This is good when it works. However, iTunes and iPod have a problem when more than 1 album has the same name. So, let's say you have 3 albums by 3 different groups (Band A, B, and C), all called "Greatest Hits". The expected behaviour is that "Greatest Hits by Band A will play tracks 1-10, then another random album, and then sometime later, the album "Greatest Hits" by Band C will play tracks 1-15. That would be good, but this does not happen. Here's what actually happens:
    Some Album / Band X / Track 14
    Some Album / Band X / Track 15
    Some Album / Band X / Track 16
    Greatest Hits / Band A / Track 1
    Greatest Hits / Band B / Track 1
    Greatest Hits / Band C / Track 1
    Greatest Hits / Band B / Track 2
    Greatest Hits / Band A / Track 2
    Greatest Hits / Band C / Track 2
    Greatest Hits / Band B / Track 3
    Greatest Hits / Band C / Track 3
    Greatest Hits / Band A / Track 3
    ... (until all "Greatest Hits" tracks by Bands A, B, and C have finished)
    Another Album / Band Z / Track 1
    Another Album / Band Z / Track 2
    Another Album / Band Z / Track 3
    As you can see, the iPod treats all 3 "Greatest Hits" as one humungous album. Now, until version 7, even iTunes appeared to be pretty confused about this, but with the latest version added the "Album Artist" tag (which I've applied correctly to all tracks in my Library), so that it can identify albums as separate entities properly, even if they have the same name. (This was necessary for Cover Flow to work.) Sadly, this logic has not made it to the iPod, and we still have the crazy playback situation above.
    Since the first day I bought my first iPod back in 2002, I've always used Album Shuffle, and this has always been a problem. I was surprised to find that even the latest iPod still hasn't fixed this, even though iTunes seems to have. Apple, please could you fix this?
    iPod 5.5G, iTunes 7.0.2   Mac OS X (10.4.8)  
    Power Mac G5 Dual 2.3 GHz   Mac OS X (10.4.8)  

    BTW, I'm not looking for workarounds that involve renaming albums. What if I have 158 "Greatest Hits" albums?

  • When I import an Album or Folder from my computer that is a Various Artist Album it creates as many albums by the same name as there are songs?  How do I fix this so it is only one Album?

    When I import an Album or Folder from my computer that is a Various Artist Album it creates as many albums by the same name as there are songs?  How do I fix this so it is only one Album?

    Before you begin the import, edit the properties of the tracks to set the Album Artist to Various Artists and Part of a Compilation to Yes.
    For more info. see Grouping tracks into albums.
    tt2

  • Itunes installs with many folders of the same name,why?

    I have uninstalled and installed 3 times.  Each time it loads with many folders on left column with the same name.  What is resolution?

    Do you mean playlist folders or playlists? Reinstalling iTunes does not rebuild the library so it won't tidy up the structure of your library. Recent builds of iTunes have imported any m3u playlists found when scanning the media folders which can cause problems if you've previously generated playlists for all your albums with other software, though in this case the playlists would have different names.
    Have you subscribed to iTunes Match? There is a bug that can sometimes create hundreds of duplicate empty playlists. I've two scripts which might help you clean up: KillEmptyPlaylists and KillTopLevelPlaylists. This post describes a technique for resetting iTunes Match to stop it happening again.
    tt2

  • [CS3 JS] Working with two documents of the same name

    I work with sets of documents that use standardized names. I'm trying to write a script that compares two documents from different sets. Because the source and the target documents both have the same name, I've encountered some disturbing behavior that reminds me of the app.activeWindow bug that Dave has written about. (
    Dave Saunders, "Scripting FAQ as Wiki" #14, 15 Oct 2007 12:19 pm)
    To perform the comparison, I have to grab a reference to the same region of text in both documents, as offset from regular landmarks. I was just patting myself on the back for figuring out the "story.characters.itemByRange(begin, end).texts[0]" acrobatics required, when I discovered that my text objects were magically "dissolving" into invalid objects.
    After a lot of debugging and attempts to hack around the problem (i.e. storing the text begin/end indices and not grabbing the text object until the last possible moment), I've narrowed it down to the references to the source and target documents. I've watched the reference variable to the source document *change* to instead reference the target document when I start accessing the target document object. Once this happens, any text objects belonging to the source document become invalid, as if the source document had been closed.
    Is there any way around this? I've thought about temporarily saving the files to different names, but I haven't tried it yet.
    Here's a script that demonstrates the problem (you'll have to find your own same-named documents if you want to run it):
    var source = "/Users/deyk/Desktop/test/source";
    var target = "/Users/deyk/Desktop/test/target";
    function findChapters(in_doc) {
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedCharacterStyle = "chapter-num";
    app.findGrepPreferences.findWhat = "\\d+";
    return in_doc.findGrep();
    var sdoc = app.open(File(source+"/01.Genesis.indd"));
    var s_file_start = sdoc.fullName;
    var s_chs = findChapters(sdoc);
    var s_story = s_chs[0].parentStory;
    var s_txt = s_story.characters.itemByRange(s_chs[0].index,
    s_chs[1].index-1).texts[0];
    var tdoc = app.open(File(target+"/01.Genesis.indd"));
    // At this point, sdoc now references tdoc instead.
    // s_txt, s_story, and s_chs become invalid objects.
    var t_file_start = tdoc.fullName;
    var t_chs = findChapters(tdoc);
    var t_story = t_chs[0].parentStory;
    var t_txt = t_story.characters.itemByRange(t_chs[0].index,
    t_chs[1].index-1).texts[0];
    var s_file_end = sdoc.fullName;
    if (s_file_end.name != s_file_start.name) {
    var result = "What a nasty bug!";
    "Finished";

    I've tried saving the document to a temporary name, and it works satisfactorily:
    function openFileAsTemp(a_file) {
    var tmp_folder = Folder.temp.fullName;
    var date = new Date();
    var temp_file = File(tmp_folder+'/'+date.valueOf()+'_'+a_file.name);
    var doc = app.open(a_file);
    doc = doc.save(temp_file);
    return doc;

  • Sync a phone with 2 Macs (having the same name)

    Hi,
    The question is on the title:
    is there a problem to use 2 Macs HAVING THE SAME NAME (I.E. my name) with a single phone ?
    I hope a clearly asked my question (my frenchy english is sometimes clumsy).
    Where can I find a omplete documentation of iSync.
    Thank you all

    Welcome to Apple Discussions.
    The short answer is yes, this approach is problematic and can result in severe data corruption on not only your mobile handset, but on both computers. The name of each computer is immaterial: iSync is not intended to support the use of a device as a 'data storage' go-between to equalize the contents of contact, calendaring and tasks records on two or more Macintosh desktop or portable computers.
    Instead, you should synchronize multiple Macintosh computers using:
    • .Mac Sync with a .Mac account
    • MySync from MildMannered Industries (technology acquired by Mark/Space)
    • the not-yet released SyncTogether from Mark/Space
    More information about these options is available here:
    http://www.mildmanneredindustries.com/mysync
    http://www.markspace.com/synctogether.php

  • When I down load a CD Itunes seems to split the CD into two or more albums. I get the songs but they sort into multiple albums of the same name.

    I just down loaded Stones "Forty Licks" into iTunes in my computer.
    In Itunes I see 4 albums 2 for disc 1 and 2 for disc 2.
    The songs are spread between the albims so I can't play the entire album at once.
    Ideas on how to better download or on how to resort I tunes to get the songs all on one album.

    Yes ensure that the Album Artist entry is the same for all tracks eg Various Artists or Artist & Friends. Whatever you want just has to be the same

  • Two AM's with the same name but different forms causes Deployment problems

    Two Masters forms, DOC & PM are cloned except for the "where clause" in the View's query and the titles in their JSP's.
    DOC workspace has a BC project and a BC4JSP Project. The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='DOCTOR'.
    In Java Webserver :-
    The JSP's are located in C:\source\Doctor\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\Doctor\pol_ValueSet\..
    If I execute Doctor in JWS the records are getting filtered properly.
    PM workspace has a BC project and a BC4JSP Project. Again The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='PAY_MODE'.
    In Java Webserver :-
    The JSP's are located in C:\source\PMode\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\PMode\pol_ValueSet\..
    If I execute PM in JWS, the PM's JSP comes (the title is correct) but the records pertaining to DOC appears. I checked the View's xml file in C:\source\PMode\pol_ValueSet\ the "where clause" is correct. The xml & classes have the same name but their contents are different.
    I want to know whether this problem is because both have the same name for the AM and the BC4JSP's property file.
    Please clarify.

    Deploying two app modules with the same name will definitely cause problems.
    The JSPs use the information in the properties file to connect to the application module and get the data they need from the appropriate View Objects in those app modules. If you have two app modules with the same name, when a JSP tries to connect, it has no way of knowing which one of the app modules to connect to if they both have the same name.
    You could:
    1. Just use one application module that contains all the View Objects you need to access.
    or
    2. Rename one of the application modules or the package it is located in so the names are distinct. If you choose this method, you will also need to update the JSPs (specifically the 'registerApplicationFrompPopertyFile' method call), and your JSP project's appmodule property file.

  • HT1473 Often times when I copy a CD into my library it breaks the CD into more than one Album, all with the same name but with only a few of the songs on each. This happens whenever the CD has music with more than one artists...like maybe duets.

    Often times when I copy a CD into my library it will break my CD into multiple albums in my library, each with only a few songs.
    Usually this is because there might be songs where the artists has other artists in the song.
    How can I compile all of the different albums (all with the same name by the way) back into one as was the original disc?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • HT2905 I have multiple album titles of the same name with different artists. How can I get them to go under one album title again?

    I have multiple album titles of the same name with different artists. How can I get them to go under one album title again?

    In iTunes(on a Mac or PC) just tap on 'Albums' rather than 'Artists' and you'll see them all together.
    You may find that there are songs mislabelled. In which case right tap on the Album or Artist and tap 'Get Info', then change to the correct name and the songs will join the rest of the songs for that Artist or Album.
    Then resync with your iPhone and all will be well.

  • Problem when importing two photo galleries with the same name. Please Help!

    Hi Guys,
    I'm not a pro in dreamweaver so I would appreciate if your answer wouldn't be too technical...
    Anyway I have experienced a problem. Heres the sotory, I have been making a websie in DW and used Adobe Bridge CS5 to create a photo gallery SWF file that I would use for my website. The problem is that I want to use two different photo galleries on two different pages however when I save my second photo gallery in bridge, it saves every file with the exact name as the first photo gallery I created and is working fine... Thus when I try to import the photo gallery files into my website folder structure, I find that it asks me to rename them because the files from the first photo gallery are called the exact same names.. Now obviously when I try to rename them dreamweaver gets confused and goes to the wrong folder and uses the images from my first photo gallery in the second one.
    So I guess my question is how can I organize my folder structure to be able to import multiple galleries without dreamweaver getting confused because bridge names all the files the same. Or how could I save the files through bridge so that they have different names and will work fine when I import into DW...
    Thanks and sorry for the essay,
    Patrick

    #1 You cannot have two files / folders or galleries with the same name.  Redo your image Galleries with different names.
    #2 SWF (flash) is not visible to iPhone, iPad, iTouch, Android or other web devices that don't support Flash Player.  These users will see nothing.  You might wish to explore other photo gallery / slideshow options that rely on jQuery instead of Flash technology.  Some links below.  A Google search will reveal many others.
    jQuery WOW Slider
    http://wowslider.com/
    jQuery Cycle
    http://www.malsup.com/jquery/cycle2/
    jQuery Nivo Slider
    http://dev7studios.com/nivo-slider/
    Nancy O.

  • Are libraries with the same name a problem?

    In previous versions of FCPX, having the same event on two drives was a real problem.  I had backup drives that mirrored my media drive, and if I started FCPX before closing the backup drives, FCPX would warn me about the same event being present on more than one drive and potential corruption (the same may have been true of projects, too).
    In 10.1, you can easily copy libraries to different drives in Finder.  But then both libraries have the same name.  Is that a problem like it was in earlier versions of FCPX (with events)?  Is there a potential corruption issue?
    I've started renaming the libraries from with FCPX after I copy them (so, for example, I have "Day the Beach" and "Day at the Beach Backup."  I don't know if that's advisable or necessary, or even if I need to do the renaming from with FCPX rather than Finder.
    Any advice is appreciated.  Thanks!

    A Library is completely self contained and should not pose any problem.
    However placing a Backup ID makes good house keeping sense to me.
    Al

  • Creating a Mat View having the same name with that of the table name

    Hi everyone,
    After dropping the mat view name "QQ.TRDLN_DIM_MV", I'm trying to re-create it by having the same name as that of the table but I got an error stating that "name is already used by an existing object". How can create a mat view to look like the object owned by schema "GQ", having a name that is the same as that of the table name, without dropping the table?
    OWNER_O OBJECT_TYPE CREATED LAST_DDL_ TIMESTAMP STATUS OBJECT_NAME
    ===
    GQ MATERIALIZED VIEW 05-NOV-08 13-DEC-08 2008-11-05:06:31:46 VALID TRDLN_DIM_MV
    GQ TABLE 05-NOV-08 15-DEC-08 2008-11-05:06:31:00 VALID TRDLN_DIM_MV
    QQ TABLE 17-AUG-07 16-MAR-09 2007-08-17:17:05:21 VALID TRDLN_DIM_MV
    SQL>CREATE MATERIALIZED VIEW QQ.TRDLN_DIM_MV
    2 TABLESPACE FPLC01S
    3 NOCACHE
    4 NOLOGGING
    5 COMPRESS
    6 PARALLEL ( DEGREE 2 INSTANCES 1 )
    7 BUILD IMMEDIATE
    8 REFRESH FORCE ON DEMAND
    9 WITH PRIMARY KEY
    10 AS
    11 select /*+ NO_REWRITE */ trdln_id,
    12 trdln_skid,
    13 trdln_end_date,
    14 first_value(trdln_end_date) over (partition by trdln_id order by trdln_end_date DESC) as MaxDate
    15 from QQ.trdln_dim;
    from QQ.trdln_dim
    ERROR at line 15:
    ORA-00955: name is already used by an existing object
    I appreciate your help. Many thanks in advance!
    Regards,
    Radic

    You'd have to rename the table (using ALTER TABLE tablename RENAME TO othername; ) before you create the MV.
    You can't have both existing with the same name in the same schema.
    What you see in the GQ schema is that the "table" is the underlying table for the Materialized View.
    When you do a CREATE MATERIALIZED VIEW MY_MV AS ...
    Oracle creates two objects with the same name, one being the Materialized View MY_MV and the other being the table MY_MV which is the physical storage. {Remember that a Materialized View is a means of getting a physical representation of a View}.
    In the QQ schema what you have is either
    a. a real Table
    or
    b. an improperly dropped MV, resulting in the underlying Table still present.

  • HT1473 Sometimes when I copy a CD into iTunes all of the songs do not show y up in one album, but mutiple albums, all with the same name. Is there an easy way to get all of the songs into one album.

    Sometimes when I copy a CD into iTunes all of the songs do not show y up in one album, but mutiple albums, all with the same name. Is there an easy way to get all of the songs into one album.

    Generally adding a common album artist will fix things.
    tt2

  • Issue with multiple Albums with the same name. (i.e. Greatest Hits)

    I have multiple albums all with the same name (i.e. Greatest Hits). iTunes mixes all of the albums as one. All of the track 1s together, all track 2s together .... Is there a way for iTunes to recognize that there is more than 1 album with the same name? and to keep each album seperate.
    Thanks

    You need to let iTunes know that they are different albums. The trick I use that work fine is to simply add the artist name of which it is the Greatest Hits in the "Album Artist".
    That way, iTunes will keep your album together.

Maybe you are looking for

  • DNS set up error

    I had DNS working and needed to reinstall now its a no go. I have been following the useful instructions by Antonni Rocco. My log says I dont have an A record for my domain adl.arina.biz but am sure it does and it points to my static IP.

  • Issue with XML bursting program

    Hi All, We have a Oracle concurrent program which generates PDF output using XML data and RTF template. This output is sent as attachment to a designated user using XML bursting. The issue that we are facing is, the mail is sent to the recipients cor

  • Itunes is not letting me download music onto my iphone. How do I get it to work?

    I have been trying to download music onto my iphone and it does not work! It just doesn't connect. Does anyone know how to fix this?

  • Image in CS4 looks lighter than in CS3?

    I just started to use CS4, set up all of my color preferences and opened up an image. I thought that it looked a little bit lighter than what I remembered so I opened up the same image in CS3 and it does look different. The 3/4 tones to the shadows a

  • Garage Band for new Macbook Pro?

    Am I correct, that to get Garage Band on my just ordered MPB, I need to purchase iLife?  I have it for my iPad2.  Or can just GB be purchased separate? Thanks!