Problem adding large images to albums

What I want to do is view my images large, one at a time, and add them to various albums as I go. This used to work fine in v6 but now, zoom in Max and you can no longer select photos. It seems you can only select images once they are get about 320px wide or smaller.
Any help as to how I can get this capability back?

This is a known issue (discussed many times on this forum) with iPhoto '08 with no work around found yet.
For now report to Apple - iPhoto menu ==> provide iPhoto feedback - and wait
Larry Nebel

Similar Messages

  • How to get larger images in albums?

    I just realized that when you click on a thumbnail in one of my albums, the larger image is actually smaller than the original photo! All the photos I've put into my web albums have been shrunk to fit into the album display area. For instance, a photo that normally displays about 7 inches high when I view in Preview, comes out about 4.5 inches tall when displayed in my web album.
    How can I get it to display photos at actual size?

    Ray Dunakin wrote:
    I tried turning off "optimize images", but they still were showing up at the reduced size.
    providing a url to your site so people could have a look at what's going on may help...
    What I'd really like is a way to designated specific images to display at a larger size -- most don't need to be very large, but some do.
    I think that's not possible in iWeb PhotoPages... As you choose one format for all. However to get larger images in albums click on a photo and a window will popup called "Photo grid". You can increase the size of the images displaying by reducing the spacing and/or decreasing the number of columns.
    Regards,
    Cédric

  • Problems adding an image title?

    Hi,
    When I place an image in Muse I'm having problems adding an image title. When I Control click the image in Design view the choices I get at the bottom of the pop up menu are
    Edit original
    Edit Image Properties
    When I looked it up in help it tells me I should also see another item "Add Title" but I don't get that as a choice. When I click on "Edit Image Properties" I get a choice of Tooltips or Alt Text but no place for a title.
    Thanks,
    Bill

    This is the page
    http://www.adobekb.com/strategies_for_seo.html#addingmetadata
    To be clear when I right click on an image I only get the choice of "Edit Original" & "Edit Image Properties". When I click on "Edit Image Properties" I only get a choice of Tooltips or Alt Text, nothing for title
    Thanks,
    Bill
    Adding titles and alternative text to images
    After you place images on a page, you can access the Image Properties dialog box to set both a title and alternative text (also sometimes called alt text) that is assigned to the image.
    Here's a brief description of each property:
    Title: In many browsers, the title is displayed in addition to the image, typically as a tooltip that appears when a cursor hovers over it.
    Alternate text: If the image file cannot be shown, this text is displayed in place of the image. Alternate text is also used to describe images to visually impaired visitors using assistive technologies to access page content.
    It is ideal to set titles and alternative text for every site asset, to ensure that visitors have the best experience when navigating your site. Tooltips are helpful for including additional information about graphics and alternative text makes pages more accessible for screen readers that verbally present graphic content.
    To add titles and alternative text, follow these steps:
    1. Select a placed image.
    2. Right-click on the image and select Add Title or Add Alternative Text from the context menu that appears (see Figure 3).

  • Web Flash Gallery: Problem setting Large Images size

    When using the Lightroom Flash Gallery I am not able to change the size of the Large Images (Web | Appearance | Large Images | Size). When I set the size to Medium or Small, the large images always ends up with the same size as when set to Large. Only when setting the size to Extra Large there is a slight change in size.
    How can I change the Large Images size to Medium and Small?
    Jørgen Johanson

    jools2005 wrote:
    Adobe please address this issue.
    This is a User to User forum not official Adobe support. Yes, Adobe staff may participate from time to time, but not often enough that you can depend on them reading your post. Therefore, I suggest that you support a bug report using the facilities provided at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • JTextPane: Problem adding hyperlinks & images

    Hi,
    I have a problem and I just can't figure out how to solve it.
    I need to implement a simple Editor for HTML files. Lucky for me, most of the functionality i need is already provided by swing, but i still need to add images and hyperlinks to my document. Especially, i need to be able to select some text, click on a button and turn it into a hyperlink. If an image is within the selected range, then the image should be included in the hyperlink as well (just as you would expect it to be).
    Adding images works so far, using this code (i'll take care of actually loading the image when the rest works).
    JEditorPane editor = getEditor( e );
    HTMLDocument doc = (HTMLDocument) getStyledDocument( editor );
    MutableAttributeSet attr = new SimpleAttributeSet();
    attr.addAttribute( StyleConstants.NameAttribute, HTML.Tag.IMG );
    attr.addAttribute( HTML.Attribute.SRC, "p.gif" );
    try {
         doc.insertString( editor.getCaretPosition(), " ", attr );
    } catch (BadLocationException e1) {
         e1.printStackTrace();
    }But when i try to do the same with HTML.Tag.A and HTML.Attribute.HREF, the selected text disappears from the code (it is still visible in the JTextPane, though) and is replaced by . I just don't seem to get the whole AttributeSet mechanism or which attributes need to be set to which values.
    I have seriously been stuck on this stuff for over one day now, and went through half a million tutorials, but can't figure it out - and i can't imagine that it is that complicated to do something like that.
    By the way, I don't care whether or not you can click on the link in the JTextPane. The whole application is just for editing purposes and the document's content will be uploaded to a webserver at a later point.
    I hope there's somebody who can help me out here.
    Thanks in advance,
    ak87

    Doesn't anyone have a hint for me here?

  • Problem adding an image to the display list

    I'm trying to create a component to add images to a Panel (id=hbox). I seem to be loading the images successfully (because the trace statement works), but can't add them to the display.
    I'm using the following line of code, but getting an error:
    hbox.addChild(event.currentTarget)
    What am I doing wrong?
    Thank you!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" backgroundAlpha=".5"   backgroundColor="0xffffff" creationComplete="init()"  >
        <mx:Script>
        <![CDATA[
        public function placeAnimals():void{
            for(var i:int=0; i<12;i++){
                var imageLoader:Loader = new Loader();
                var url:String = "images/animal"+i+".png";
                var urlReq:URLRequest = new URLRequest(url);
                imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
                imageLoader.x=50*i
                imageLoader.load(urlReq);       
                function imageLoaded(event:Event):void {
                    trace("Success="+event.currentTarget.url)
                   //hbox.addChild(event.currentTarget)
             public function init():void {
                 placeAnimals()
        ]]>
        </mx:Script>
        <mx:Panel  id="hbox"  height="200"   backgroundImage="images/smallWhitePanel.png"  borderStyle="none" />
    </mx:Canvas>

    You cannot add an image directly like that... why not dot the following
    var img:Image = new Image();
    img.source = url;
    this.addChild(img);
    hpefully it should work.. i'v neva seen image being added to the hbox like that... it will work only if you embed it / put it in source element..
    the following link should help you
    http://livedocs.adobe.com/flex/3/html/help.html?content=controls_16.html

  • Problem adding large video files to library

    When I try to add large video files to my library. It doesn't work. No error message or anything. It just doesn't happen. The file I'm trying right now is 2.65 GB. I've had no problem with video files around 400 MB.

    What format is the video in? iTunes is unfortunately silent when you try to add a video or song that Quicktime can't decode.

  • Problems adding logo/image.

    Hi,
    I have tried to create a logo/image for all pages within my application, however still receive the red cross broken image symbol.
    1) uploaded the image for my application using the shared components tool.
    2) Logo is set to: logo.gif
    logo attributes is: #APP_IMAGES#logo.gif
    any suggestions?

    Right click on broken image and copy link location (in firefox this is the option).
    Now place that link in URL bar to see if image is comming...
    Change the value in URL until you get the picture...look then what is wrong...
    This must lead to success...place the URL here so maybe there is something easy...
    P.S.
    Look in manuals what is WORKSPACE_IMAGES AND APP_IMAGES referencing. Try to place in images dir (/i/) that file and call it with #IMAGE_PREFIX#logo.gif (case sensitive call)-this should show logo.
    P.S. II
    Logo will be shown on every page. So it is not smart to put it in database. Better use #IMAGE_PREFIX# location on pure Apache file system.
    Hope this helps

  • Problem converting XPS document with large images

    Hi,
    When I try to convert XPS documents to PDF in Acrobat 9.0 Pro, I have problems with "large images". They are either truncated or scaled down. The only images that convert correctly are small images that are not stretched to fill a large area. Attached to this message is a simple example. Does anyone know a way to correct this problem? By the way, the page is slightly larger than the standard Letter size.
    Thanks!

    Thanks for your suggestion! In fact, I am the programmer who creates the XPS files from a .NET document. Our company used the method "Postscript + PDF" during a few months and it worked quite well. Recently, we introduced semi-transparent objects and fonts in our documents and the resulting PS prints look really bad. Since I can create a perfect XPS document, and since Acrobat can convert it to PDF, I gave it a try. It solved all the problems that I had with PS printing but there is that thing with images... Anyway, since Acrobat converts XPS to PDF, I guess they should try to solve the bug with the images. As for me, I will see if I can get a component to create PDF documents directly from our application.

  • Adding an image background

    I have problems adding an image (pattern) on my form. Can anyone give me some advice.

    Hi,
    We currently don't support background images. A work-around that can be used for HTML forms is to embed the form in a page hosted on your own website. If the embedded form is configured to be transparent the image behind the form will be visible.
    Please refer to the following FAQ for more information on the embed feature:
    http://forums.adobe.com/docs/DOC-1991
    Regards,
    Brian

  • Problem publishing large photo albums

    I'm using iWeb (iLife'08) to create several a photo gallery: there is a page with the gallery showing all the albums, and each album has 100 to 200 pictures. The albums were created in iPhoto and "inserted" into iWeb using iWeb's media tools.
    Publishing to .Mac has been very frustrating: 1st time I created the entire site, with 10 albums (2000+ pictures all together) and a couple of regular text pages. When I tried to publish iWeb took forever, went into working in the background and eventually came back with an error about not being able to connect to .Mac and to check my internet connection. Needless to say I checked it and it was all good: able to login, plenty of iDisk space available, etc.
    2nd time I decided to start with just one album in the gallery. This time it worked. I started adding (to iWeb) one album at a time and then publishing "changes". It takes some time but it works. However, if I change anything in one album (already published) and add a new album iWeb will again take forever just to come back with an error about the connection to .Mac.
    is there a practical limit to the size of albums in iWeb? Should I use iPhoto directly to create a photo gallery in .Mac and use iWeb to link to it? What is the best way to use these tools to create a large photo gallery?

    Keep it down to about 24 photos per album and 6 albums per page. You can always add more album pages and have an index page to get to them.

  • Problems with large scanned images

    I have been giving Aperture another try since 1.1 came out, and I am still having problems with large tiff files derived from scanned 4x5 negatives. The files are 500mb or more, 16 bit RGB, with ProPhoto RGB or Ektaspace PS5 profiles, directly out of the scanner.
    Aperture imports the files correctly, and shows their thumbnails. When I select a thumbnail "Loading" is displayed briefly, and the the dreaded "Unsupported Image Format" is displayed. Sometimes "Loading" goes on for a while, and a geometric pattern (looking like a rendering of random memory) is displayed. Restarting Aperture doesn't help.
    Lower resolution (250mb, 16bit) files are handled properly. The scans are from an Epson 4870 scanner. I have tried pulling the scans into Photoshop and resaving with various tiff options, and as PSD with no improvement. I have the same problem with corrected/modified psd files coming out of Photoshop CS2.
    I am running on a Power Mac G5 dual 2ghz with 8gb of RAM and an NVIDIA GeForce 6800 GT DDL (250mb) video card, with all the latest OS and software updates.
    Has anyone else had similar problems? More importantly, is anyone else able to work with 500mb files of any kind? Is it my system, or is it the software? I sent feedback to Apple as well.
    dual g5 2ghz   Mac OS X (10.4.6)  

    I have a few (well actually about 100) scans on my system of >500Mb. I tried loading a few and am getting an inconsistent pattern of errors that correlates with what you are reporting.
    I imported 4 files and three were troubled, the fouth was OK. I imported another four files and the first one was OK and the three others had your reported error, also the previously good file from the first import was now showing the same 'unsupported' image' message.
    I would venture to say that if you shoot primarily 4x5 and work with scans of this size that Aperture is not the program for you--right now. I shoot 35mm and have a few images that I have scanned at 8000dpi on my Imacon 848 but most of my files are in the more reasonable 250Mb range (35mm @ 5000dpi).
    I will probably downsample my 8000dpi scans to 5000dpi and not worry to much about it. In a world where people believe that 16 megapixels is hi-res you are obviously on the extreme side.(Good for you!) You should definately file a bug report but I wouldn't expect much help anytime soon for your super-sized scans.

  • Problem rotating a large image

    Application description:
    A JFrame with a control panel at the bottom, which contains a couple of JSlider's which controls the scaling, translation and rotation of a BufferedImage using an AffineTransform.
    JDK used:
    1.5.0_04
    Problem description:
    The application works fine when using a "normal" sized image. But when I use a large image (1600x1200) the application seems to freeze. The GUI isn't drawn, just the infamous grey rectangle. I've narrowed it down to the rotation. If I comment out the AffineTransform.rotate call, the application works fine and the very large image is displayed in all it's glory, with translate and scale still applied.
    Is this due to some limitation of AffineTransform?

    Scale and translate would be less intensive than
    rotate.possibly, but my guess is probably not.
    If you have a world matrix that everything gets multiplied through, rotate, tranlate and scale all should be pretty fast.
    To rotate such a large image would be very cpu
    intensive and probably require a substantial amount
    of memory. You may want to check your computerAgain maybe, but IMO very unlikely. If Java uses a world matrix (and I've got no idea how else it could do things like scale or rotate) then there should be no or almost no penalty for transformations. And you certainly wouldn't need any more memory.
    performance during the operation to determine if your
    computer is being bogged down.Would be difficult to test for individual graphics operations, but you could check as to whether the CPU gets pinned while painting.

  • Large image in lightbox opens in new window

    I added a lightbox gallery to my site and it was working fine.  Then, I tried to add more thumbnails and that's when problems started.  Some of the larger images wouldnt load at all so I then started over with a new page/gallery, deleted files off the server and tried uploading again.  The quirky thing is that the gallery works fine on my computer but when I upload it onto the server and view it from the web it doesn't work correctly.  The larger images open up in a new window  Im guessing that I'm missing something on the server but I don't know what.  I reuploaded everything on the local server and still nothing.  Can anyone help?

    I finally got it to work by deleting files off the remote and uploading again.  Thought I did that last night but I guess this morning I did something right that I had missed.

  • AppleScript Bug: Duplicating stacked images to albums

    for anyone else using AppleScript, I encountered this bug a couple of nights ago. I've reported it to Apple.
    14-Feb-2009 02:14 AM Gregory Charles Rivers:
    Summary:
    The Aperture/AppleScript "Duplicate" command when used to add stacked images to albums does not work as expected.
    (1) when stacked images are successfully added to the target album, they are added as masters rather than simple album items.
    (2) if the source project is not selected in the Inspector, stacked images will not be added to the target album.
    (3) "Duplicate" is not a suitable command for adding objects to albums and confuses scriptors. an additional "Add" or "Assign" command should be created expressly for this purpose.
    Steps to Reproduce:
    * begin of steps to reproduce *
    PROBLEM #1
    1. [APERTURE] import 3 masters into a new project called "Gregory"
    2. [SCRIPT] in a script editor, get the new project's ID:
    id of every project whose name is "Gregory"
    -> "UkRHKvb/RfmZ8H+Jn/pxRA"
    3. [SCRIPT] get a list of the images in the new project:
    every image version of project id "UkRHKvb/RfmZ8H+Jn/pxRA"
    -> a list of 3 objects
    4. [APERTURE] create two albums within the project:
    -> "Album 1" and "Album 2"
    5. [APERTURE] stack the first two images.
    6. [SCRIPT] add only the first image to "Album 1"
    copy every image version of project id "UkRHKvb/RfmZ8H+Jn/pxRA" to theImages
    duplicate theImages's first item to album "Album 1" of project id "UkRHKvb/RfmZ8H+Jn/pxRA"
    -> the stack that image 1 is a member of, is added to the album, but it's not a normal 'linked' album item.
    7. [APERTURE] delete the image from "Album 1" by selecting the image and pressing "Delete" on the keyboard.
    -> a warning is sounded but nothing happens. with normal album images, they're simply removed from the album.
    -> "Remove from album" is greyed out in the Images menu.
    8. [APERTURE] select the first image of the stack within the album and press Command-Delete.
    -> a dialog is presented confirming that the images inside the album are masters.
    confirm.
    -> the image is removed from the album, and from the project!
    9. [APERTURE] select the remaining image and press Delete.
    -> the image is removed from the album without affecting the master as would normally be expected.
    (the work-around for removing 'masters' from the album is to unstack them after which they become 'normal' album items again.)
    PROBLEM #2
    10. [APERTURE] import the first master again, back into the same "Gregory" project.
    -> we now have 3 masters in the project.
    11. [APERTURE] stack the first two images.
    12. [APERTURE] within project "Gregory", select "Album 2".
    13. [SCRIPT] add all 3 images to "Album 1" (while "Album 2" is still selected within Aperture).
    copy every image version of project id "UkRHKvb/RfmZ8H+Jn/pxRA" to theImages
    repeat with i in theImages
    duplicate i to album "Album 1" of project id "UkRHKvb/RfmZ8H+Jn/pxRA"
    end repeat
    -> only the unstacked image is added to the album.
    14. [APERTURE] select the project "Gregory".
    15. [SCRIPT] run the script again.
    copy every image version of project id "UkRHKvb/RfmZ8H+Jn/pxRA" to theImages
    repeat with i in theImages
    duplicate i to album "Album 1" of subfolder "nested" of project id "UkRHKvb/RfmZ8H+Jn/pxRA"
    end repeat
    -> all of the images are added to the album.
    -> the stacked images are still 'masters' rather than simply album items.
    PROBLEM #3
    the "Duplicate" command should be used for adding images as links to objects such as albums. the use of the "Duplicate" term for this action leads to confusion. an additional "Add" or "Assign" command should be created for this specific purpose.
    * end of steps to reproduce *
    Expected Results:
    whether stacked or not, images added to albums should be simple linked items, not masters, and which when deleted by pressing Delete simply disappear from the album without affecting the true masters.
    Actual Results:
    (1) stacked images added to albums are added as masters instead of linked items.
    (2) stacked images cannot be added to albums if their containing projects are not selected in the Projects inspector.
    (3) the use of the term "Duplicate" when applied to adding items to albums is confusing because the images aren't actually duplicated.
    Regression:
    Unstack all images before running any script that adds stacked images to albums.

    I have noticed behavior with drag-and-drop working anomalously different for me than as reported by others. It has not yet been problematic, but definitely anomalous.
    It sounds like the Aperture team should forget features improvements for a while and focus on stability.
    -Allen

Maybe you are looking for

  • Mobile IconItemRenderer broken for iconFields?

    I have a mobile application needing IconItemRenderer to list a bunch of lines, each with their own icon (depending on some item state), which is exactly what IconItemRenderer is designed for. 1) in the itemRenderer, i can define a right-hand decorato

  • Reversal of GRN,Vendor Excise Invoice,If QM is active.

    Dear Experts, Please guide me how to reverse the entry if....... MIGO (Part 1) done Usage Detail (UD) done/Not done J1IEX (Part 2) done MIRO done I did..... Created Raw material PO with Cenvatable tax code MIGO with capture excise invoice UD for insp

  • Go to a specific byte in a field ?

    I know how to go to a specific field on a Form by doing go_item. My question is, can I go to a specific byte in the field? Say I want to go to the place in the field where the value entered in it ends. Is there a way to do this? Thanks

  • Cfid & cftoken keep resetting everytime time the page refreshes!!!!

    I need some assistance.  I have setup several CF applications and never had any issues with session/application management.  However this time around every time I refresh the page it gives me a new cfid and cftoken.  Obviously it won't allow me to ke

  • Output showing up in 2 different rows in Infocube for same Billing Number

    Hi, I have a Billing Infocube which gets data from 2 DSO's Billing header DSO & Billing Item DSO seperately.  In Billing header, i have Billing Doc. Number & Shipping condition.  In Billing item, i have Billing Doc. Number & Billing Quantity.  In the