Multiple Images for albums

Very recently, I can no longer view the other images I've added to individual albums, in the album artwork viewer. The images are in the file info but not viewable with the 'Selected Images' tab (the next image 'arrow' has diappeared)

Hi, this is bothering me a lot as well, some time ago I had a thread about it:
https://discussions.apple.com/message/17555584#17555584
and this one too:
https://discussions.apple.com/message/17559240#17559240
please complain to apple about it, use the feedback page
http://www.apple.com/feedback/itunesapp.html
and/or use Bug Reporter.

Similar Messages

  • Multipe images for album art?

    So, you can add multiple images to iTunes for each track. Like, the album cover and an image of the liner notes, or the back cover, or, something like that.
    I don't seem to be able to see those secondary images while using my 5G iPod that I synced after adding the images.
    Is it possible to see multiple images for album art? Is my iPod even getting those secondary images?
    Thanks!

    Actually in a way you can do this, although you won't see the multiple images all at the same time. For an album you can actually have a different image for each track on that album. So for example you could have the cover for the first track, the back cover for the second track and so on. All you need do is browse info for each track and drop each image into each track separately.

  • Unable to select multiple images for upload

    I have Windows 7 Pro and FF 9.0
    I have an online store and am always uploading product photos for items I have listed. I recently switched from XP Pro to Windows 7 Pro. I had no issues with XP. However, now that I have Windows 7 Pro I am unable to select multiple images for upload when using FF. I can only select one image at a time.
    The issue is unique to FF. I have tried in several other browsers, and FF is the only one that I am unable to select multiple images from.
    I had FF 8.0.1 and upgraded to 9.0... hoping that would resolve the issue. It did not. I have restarted my computer several times which has also had no effect.

    Hi,
    Welcome to the    Discussions
    I see it is about 6 hours since you posted, so I guess you will get this when you wake. (I'll be sleeping then)
    This would be better asked in the forum for Using Leopard inside the Leopard Category sating which browser and which site it was.
    (it probably made lots of sense to you when you were typing it but it seems a little short in facts or workable info.)
    8:43 PM Wednesday; March 24, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    Message was edited by: Ralph Johns (UK)

  • Adding multiple images for tiled background?

    Hi,
    I'm having some trouble trying to add multiple images to the my tiled layer class. I can't figure out a way how to add these images to my current code. My goal is to add at least 4 images onto the screen.
    Here's my code:
    private void buildBackground() throws IOException
            Graphics g = getGraphics();
            Image tileImageOne;
            Image tileImageTwo;
            Image tileImageThree;
            Image tileImageFour;
            TiledLayer tiles;
            try
                tileImageOne = Image.createImage("/tile_1.png"/*, "/tile_2.png",
                        "/tile_3.png", "/tile_4.png"*/);
                tiles = new TiledLayer(11, 14, tileImageOne, 20, 20);
                int[] grid={
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    1,1,1,1,1,1,1,1,1,1,1
                for(int i=0; i<grid.length; i++)
                    int column = i%11;
                    int row = (i-column)/11;
                    tiles.setCell(column, row, grid);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    catch(IndexOutOfBoundsException e)
    e.printStackTrace();
    catch(IOException io)
    io.printStackTrace();
    Edited by: vopo on Sep 22, 2007 4:35 PM

    I've read the API.
    But the thing that confuses me is the uploading of images. I can't figure out how by uploading different images can the code recognize which one would go into the tile.
    -I know in the api it shows different numbers to display each tile used with a specified image. But I can't figure out how to code it.
    Here's my attempt
    private void buildBackground() throws IOException
            Graphics g = getGraphics();
            Image tileImageOne;
            Image tileImageTwo;
            Image tileImageThree;
            Image tileImageFour;
            TiledLayer tiles;
            TiledLayer tiles2;
            try
                tileImageOne = Image.createImage("/tile_1.png");
                tileImageTwo = Image.createImage("/tile_2.png");
                tiles2 = new TiledLayer(11, 14, tileImageTwo, 20, 20);
                tiles = new TiledLayer(11, 14, tileImageOne, 20, 20);
                int[] grid={
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    1,1,1,1,1,1,1,1,1,1,1
                for(int i=0; i<grid.length; i++)
                    int column = i%11;
                    int row = (i-column)/11;
                    tiles.setCell(column, row, grid);
    tiles2.setCell(column, row, grid[i]);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    catch(IndexOutOfBoundsException e)
    e.printStackTrace();
    catch(IOException io)
    io.printStackTrace();

  • How to use the same (selection) paths in multiple images for batch processing?

    I have a whole bunch of photos I need to batch process, but, when creating an action for this, I stumbled upon the problem that the paths I selected with the pen tool, and saved under the "Paths" tab need to be in every image for to be used in the action. I did try to solve it for some time, but couldn't figure out. Any ideas?
    Many Thanks
    Carlos

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • [REQ] resizing multiple images for same height or width

    I often insert a lot of images in my indesign documents on a single page. I need to make them of the same height and then resize the image accordingly. I'm using cs6
    For example to align all the images horizontally in a neat way, I change the height manually [for e.g. 60mm] in its dimensions box. Is there a way to do it quickly? Eg. I select all the images and put their height 60mm and their height becomes as specified and they get resized accordingly?
    Same is the requirement of images for width.

    See my reply here: [REQ] fast performance of an exported pdf on slow pc

  • Potential [BUG] in PS Touch for Android, v. 1.7.5; can't select multiple images for export in different folders

    Can anyone repro this; it's somewhat situational depending on how you organize your projects:
    In the project selection user interface, go to export (5th icon from upper right) > choose a desired destination (like Save to Gallery or Camera Roll). Choose a project.
    If you have projects residing in multiple folders, try and navigate to another folder by using the "back arrow" icon in the upper left. Once you're out of the folder you just left and try to choose another, PS Touch simply does not respond. (It doesn't lock up; it just doesn't register tapping another folder.) I could have sworn I was able to export images in multiple folder at once before.
    Using a Google Nexus 2013 Wi-Fi model with Android Lollipop 5.0.1. I can record a movie if need be illustrating this potential issue.

    Update: I've worked out the difference between the two sets of errors I get.
    The basic error is this:
    ORA-00200: control file could not be created
    ORA-00202: control file: '+DBLIVE1'
    ORA-17502: ksfdcre:4 Failed to create file +DBLIVE1
    ORA-15001: diskgroup "DBLIVE1" does not exist or is not mounted
    ORA-15055: Message 15055 not found; No message file for product=RDBMS, facility=ORA
    ORA-01031: insufficient privileges
    However if my init.ora contains the line:
    control_files=/opt/oracle/server/10.2.0/dbs/cntrlNEONREL1.dbf
    then I instead get the second error:
    CREATE DATABASE "NEONREL1"
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00349: failure obtaining block size for '+DBLIVE1'
    ORA-01031: insufficient privileges
    So basically these must be the same error, just in the second case I'm not trying to put the control file on the ASM so it fails at a different point.
    But both errors must be because of the same cause, I suppose.

  • Checking multiple images for import

    Perhaps there is a way to do this quickly, but I can't find it in the 'help' . OK, so I can 'Uncheck All' or 'Check all' for import - or go through ticking the tiny box for each image I want to import.
    But, is there any way of just selecting a group of images, as you would to 'stack' for instance, and then 'checking' them for import - I can't be the only user who has multiple projects on a single CF card for example and wants to import stuff to different libraries etc (quickly instead of one by one and with a decent sized 'target' area rather than the tiny tick box).
    Given that Aperture majors on 'workflow', perhaps I'm missing something really obvious, in which case, please let me know. If I'm not missing it, why is it missing, please Apple, put some more functions than just 'stack' under the RMB for importing.
    Thanks for any steers.
    Stephen

    OK, sorry, Found it. Select the images then hit the tick box for one and it selects all. Is that in the manual? Perhaps obvious, wish I'd found it before writing the question!

  • Export Settings for uploading images for albums

    I can not upload my files to an online site to design a photo album.  Apparently they are too large.  Can someone send a screen print of how the export should be set to produce a quality 10 x 10 album and will upload in a reasonable time frame?  Thanks so much!

    I would have to guess, as I don't know your upload speeds wherever you are located. You also don't say what your need for quality is, or what use these photo albums will be put to. And if you are a professional photographer, I suppose the needs for quality are higher than for me (I am not a professional photographer).
    So, my starting point in the Export dialog would be to set the Quality slider to 70. If the quality isn't good enough, try higher. If the upload speeds are too long, try lower.
    Sorry, I can't give you a screen capture, as I am at work at the moment.

  • Adding a filename label to multiple images for a book

    Hi. I have finally convinced my studio to go Mac and we are presently playing with a trial version of Aperture.
    I am presently trying to create a new book using the Stock book theme, to create a book of thumbnails. I have taken out all the text boxes and made a page - creating the thumbnails the right spacing and size, but now I am trying to add labels to each thumbnail. I have successfully created a label linked to the meta data (file name) but I want this to apply to all the images. I have about 400 images so as you can imagine don't want to click new label for each one. I have tried to copy and paste the caption but all it seems to do is repeat the same file name, so I have 30 pages all labeled 001.jpg.
    Can anyone help? I'm sure in true Apple fashion its quite simple, but I still have not worked it out and am running out of time.
    Any help would be greatly appreciated.
    Thanks
    Hannah

    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    However, you can only send 4 pics at a time to an external editor.
    Regards
    TD

  • Images for albums

    Hello,
    I like having a cover for each song I have into my iPod touch... I'd like to know how big the images has to be to fit correctly the size of the screen... For example, when I had the iPod nano 4gigas, it took an image 100pxls x 100pxls to fit the screen... With the iPod Touch I tried with 300px x 300px and it's good enough, but maybe it takes something moe.... Could you please help me?
    Thank you in advance
    LC

    Hi,
    As a general rule I use 600x600 pixels, this keeps the file size sensible but still looks good when doing full size "cover flow" on the PC monitor.
    Obviously the Touch's screen is only 320 pixels wide so if necessary make that your maximum if you only need the art on your Touch.
    Regards,
    Dud.
    Message was edited by: Duddo

  • Setting multiple album images for a group.

    I want to put multiple images for CDs that I have (Front, back, inside of booklet, etc). Can I do this for an entire CD or do I need to do each song separately?

    You can add multiple album artwork images to multiple tracks at the same time, but not through the Multiple Song Get Info pane. Each time you drag an image onto the Artwork box in this pane, the previous image is erased.
    To add multiple images, select your tracks in the main iTunes Window, and make sure that Artwork box under the Source Menu is visible. Then just drag the image you want to add to the tracks onto this pane, but make sure you FIRST add the image you want to appear FIRST. There isn't any way to reorder the images in a group of tracks - that has to be done in the individual track's artwork pane (Get Info>>Artwork tab).
    Lita

  • Batching multiple images - save for web?

    i'm new to elements 9 on my mac & was wondering if there is a way to save multiple images for web?  the only thing i've come across in the program is one image at a time. thx

    Hello,
      There isn't a way of sending multple images through the Save for Web dialog box. But there are ways of working with multiple files that may accomplish the same, it just depeneds on exactly what you are looking to do. For example, if you are only looking for a way to turn a bunch of PSD, TIFF, or RAW files into a internet compatible JPEG, that can be done via File>Process Multiple Files. From here you can take a folder of images and convert them to another format such as JPEG (you can do other things too, like resize, rename, perform autofixes).
    -Brett

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Choose key photo for album

    Dear Common Wisdom:
    I have created a web site of photo galleries with an index page at http://www.byzantineaegina.org
    How can I choose a key photo to represent each gallery on the first page?
    Thanks!
    CJ

    you can set key image for albums page, as long as the image is one of the first of 50 images in the album (aka photos page) and you need to know how iweb widgets work.
    have a look: http://temp.cyclosaurus.com/revolving/keyImageAlbums/keyImageAlbums.html
    notice the displayed image is the 4th image in the album, not the first image.

Maybe you are looking for

  • Google search bar in safari

    a not very serious but annoying little problem i have here.. all other websites display fine, but when i do a google search using the bar in safari i get it all back in some foriegn language. going to google.com and doing the same search it's all in

  • Indexes not used

    Hi All, I have a table and an index on a column. When I query this table based on the where condition of the index column, full table is scanned. I tried giving optimizer hint, but still it is performing full table scan. Please help what could be the

  • Ses referncing contract

    Hi all I have created service masters for various trades (i.e electrical, mechanical). I am creating a framework order and setting a limit. I am not planning the services - there would be too many rows and the user interface is to complex for the use

  • OS Authentication via JDBC

    Can someone provide a code example of How to Connect With Operating System Authentication Using JDBC/OCI? Thanks

  • ESS-portal integration with Time and Travel management(HR) in R/3

    Hi,      Im doing with ESS-portal configuration with Time and Travel Management in R/3,So please kindly send me Documents for integration part.I'll b so thankful if u people send me docu as soon as possible. send me documents to [email protected] tha