Lower right corner change of photo sizing.

Installed OS6 on my MacBook Pro and MacPro machines. Noticed when I tried to resize from original size jpg to a smaller size, the reduction from original to large is way too dramatic. (Example a 7 meg file when picking the large size, ends up being a 500kb file, medium 150kb and small 55kb.). On the old leopard system, the file sizes would have been spread out more evenly. (Example; a 7mg original would have been; large 2.3mg, medium 980kb and 160kb for small.) The problem is, most recipients have trouble receiving files over 5mg., but can't use the real small sizes to make decent larger prints from these small kb sizes. Apple support had no advice to me except to now compress the large jpg's as zip file,s and then send them. I send lots of photo attachments to individuals and companies, and it's a real pain to zip them over the convenient way of just attaching them and then using the submenu on the lower right corner of the mail window, and do it with one click... Any Ideas??

I'm having the same problem. Did you ever find an answer to this?

Similar Messages

  • New to iphoto 11. I'm trying to share a pic via email as an attachment. The box in the lower right corner to "attach photos to message" is grayed out. Any suggestions?

    Also, when I try to attach the pic using gmail (not apple mail), when I browse my mac to find the file it takes me to my iphoto library in the pictures folder, but will only select the entire library. It doesn't allow me to get into the iphoto library to select the individual pic. Any help would be much appreciated.
    David

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Since installing Firefox 4 I can't see the encryption symbol (e.g. for online banking)on the lower right corner

    Some sites are providing encryption certificates , so like ebay, and of course all internet banking sites. Previous versions of Firefox had been shown a symbol in the lower right corner (lock) with more details about the certificate. Is it still availabble, and how?
    Thanks for help and
    best regards
    Georg

    In Firefox 4 you no longer have the Status bar that showed the padlock in previous Firefox versions.<br />
    You can click the [[Site Identity Button]] on the left end of the location bar to see the padlock.
    A click on the "More Information" button will show details about the connection.
    The background color of the "Site Identity Button" on the left end of the location bar will change color (blue or green) and show the domain in case of a secure https connection.
    * Hover the Site Identity Button then to see "Verified by xxxx"
    * Click the [[Site Identity Button]] on the left end of the location bar to see the padlock
    * Click the "More Information" button in that pop-up to see additional information about the connection.
    You can also look at this extension:
    * Padlock: https://addons.mozilla.org/firefox/addon/padlock-icon/

  • HT202190 Where is the "Settings icon in the lower right corner of the Home Sharing window."?

    Where is the "Settings icon in the lower right corner of the Home Sharing window."? Anybody else doesn't find it? Is it because of I have the most updated version of iTunes? Have things changed?

    What I had to do is send to my iPhone from my Mac, respond to the resulting alert, choose the action button while the destination was highlighted, and then save the address to favorites.

  • Amodal dialog box: positioning in lower right corner of screen

    I have what seems a quite common requirement, that is to automatically position an amodal dialog box (CL_ABAP_DIALOGBOX_CONTAINER) to the lower right corner of the screen.
    The logical approach to do this would be to read the screen resolution, deduct the size of the box, and pass the result to the TOP and LEFT parameters of the constructor of the container.
    Unfortunately, I haven't found any documentation of what the values for TOP and LEFT (and for WIDTH and HEIGHT, for that matter) really represent. They're not screen pixels, that's for sure.
    To read the screen resolution, I execute the following code:
    DATA:
      lo_consumer       TYPE REF TO cl_gui_props_consumer,
      ls_metric_factors TYPE cntl_metric_factors.
      lo_consumer = cl_gui_props_consumer=>create_consumer( ).
      ls_metric_factors = lo_consumer->get_metric_factors( ).
    In ls_metric_factors-screen-x and ls_metric_factors-screen-y I get back the screen resolution (x = 1280 and y = 994 on a 1280 x 1024 screen, weirdly, but close enough). Got this from another SDN post, BTW - thanks.
    When I manually position my dialog box to the farthest right lower corner, so that the mouse cursor can just about reach it, the GET_LEFT and GET_TOP methods for the dialog box return LEFT = 1453 and TOP = 387. So, obviously, these values have nothing to do with screen pixels.
    What I did, then, was to calculate a factor between the screen pixels and the TOP and LEFT values - a factor which is different for the X and the Y dimensions. I got:
    - (1453 / 1280) = 1.135 for the x dimension
    - (387 / 994) = 0.389 for the y dimension.
    With these factors, I calculate the initial position of the box as follows:
    l_box_pos_x = ( ls_metric_factors-screen-x * lc_factor_x ) - lc_box_width.
    l_box_pos_y = ( ls_metric_factors-screen-y * lc_factor_y ) - lc_box_height.
    This seems to work fine, at least on my system and my front-end PC, with all supported resolutions from 800 x 600 up to 1280 x 1024.
    It just leaves the question open: Does anybody know what the unit of measure for the sizing and positioning parameters of controls is? Why a box with a width and a height of 100 [whatevers] each is not square, but rectangular?
    And finally: does somebody have a more intelligent way to do this?
    Thanks, regards & stuff
    Rainer

    Hi Rainer,
    While creating the dialogbox container object, just set metric property to '1' (for Pixels) and then while setting TOP and LEFT you can provide pixels.
    For example,
        CREATE OBJECT REF_DIALOGBOX_CONTAINER
            EXPORTING
                WIDTH = 100
                HEIGHT = 100
                TOP = 638
                LEFT = 924
                CAPTION = 'hello world'
    <b>            metric = 1.</b>
    Then your calculation simply becomes,
    l_box_pos_x = ls_metric_factors-screen-x - lc_box_width.
    l_box_pos_y = ls_metric_factors-screen-y - lc_box_height.
    <b>NOTE: Now you will see that your dialog box is a SQUARE!!</b>
    Hope this helps..
    Sri

  • TS3999 In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ event

    In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ events?
    Better yet... as there's a lot of "wasted" space w/ too large Month title and empty space surrounding the Month title above and too much space surrounding the month/year slider bar below, how can I minimize these to allow me more usable / valuable calendar "contents" so I don't need to waste so much time clicking "more" just to see the bottom of the truncated third event and find out there are no 4+ events posted that date?  i.e. more "user-friendly" presentation?
    Thx!
    [email protected]

    In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ events?
    Better yet... as there's a lot of "wasted" space w/ too large Month title and empty space surrounding the Month title above and too much space surrounding the month/year slider bar below, how can I minimize these to allow me more usable / valuable calendar "contents" so I don't need to waste so much time clicking "more" just to see the bottom of the truncated third event and find out there are no 4+ events posted that date?  i.e. more "user-friendly" presentation?
    Thx!
    [email protected]

  • Camera already on from lockscreen on iPhone 5c. How do I turn it off? The camera icon is running in the lower right corner and when I swipe up from the bottom of the lockscreen it brings up the camera running.

    My camera is already running from the lockscreen, the camera icon is displayed in the lower right corner and when I swipe up the control center it brings up the camera first. If I swipe up again I get the control center.  How do I stop the camera from staying on and coming up first?

    I thought the feature was for it to be available for me to use, not to swipe up and have the camera already going. The control panel is not coming up first, it is the camera. In order to get to the control panel I have to swipe up again and the camera is still going. Annoyingly, I have had to disable the camera from the control panel so it isn't coming up first, and now it is unavailable to use quickly.  

  • How to create a popup notification in lower right corner of screen

    Hi
    I am fairly new to GUI building in Java. I am using Netbeans 5.0 and currently developing a desktop application. I wanted to display informational messages from the application to come up in lower right corner of screen - similar to when in MSN or Yahoo messenger if new person signs in. Similar pop-up is also found in Norton when it finishes live update.
    Currently I am using JOptionPane.showMessageDialog to do this, but it would be more appealing with messages showing on the side without interrupting the application user.
    Can someone point me to what I should look at to achieve this? Any sample code would be great help.
    Thanks

    Use JFrame from javax.swing package. JOptionPane is a built-in dialog that is located at the center of its parent component. With JFrame u can specify the position of your GUI. Try to read the Sun's java tutorial on Creating GUI with Swing: http://java.sun.com/docs/books/tutorial/uiswing/index.html

  • How to make JFrame positioned to lower right corner of user's desktop

    I'm a new java user, and I'm working on building a small
    application. When the application is launched, I would
    like the application (JFrame) window to be positioned
    in the lower right corner of the user's desktop. Does
    anyone know how to get the user's desktop size so
    I can position the application.
    Here is a code snippet where I lauch the app.
    public static void main(String args[]) {
    ArchiveRestore mainFrame = new ArchiveRestore();
    mainFrame.setSize(500, 500);
    mainFrame.setTitle("Master Model Automation");
    mainFrame.setVisible(true);
    Thanks
    -cliff

    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Will get the screen size. The Toolkit class is in the java.awt package.

  • HT5362 How to move the banners from the upper right corner to the low right corner of the screen on Mac (Mavericks)?

    How to move the banners from the upper right corner to the low right corner of the screen on Mac (Mavericks)?
    Sometimes, when I am about to click something in the upper right corner, the banners stand in the way. It is very annoying.
    However, I still need them and it is not an option to completely turn off notifications.
    Has anybody faced the same problem?

    Yeah, i've been playing around a bit with Notifications, and not being able to move there location is very annoying. The default location  normally means it is covering one or more tabs in Safari (or any tabbed application for that matter). Might have to try Growl again.

  • Premiere Elements "sign in Required" will not let me enter Adobe ID.  Just spins in lower right corner.  Says "Please connect to internet and retry."

    Premiere Elements "Sign in Required" will not let me enter Adobe ID.
    Message "Please connect to the Internet and retry" comes up after loading icon run in lower right corner.
    I have new S/N key, have tried reloading program, and have loaded trial on another PC and brought to this PC.

    Gobindlakhiani for information on how to resolve the connection error please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html.

  • Where is the picture of the "security lock" that used to be in my lower right corner??

    There used to be a picture of a "security lock" in my lower right corner, either on my start bar or immediately above it, to show you were safe to enter your credit card info. before shopping websites. I haven't seen the picture of a "security lock" since I upgraded to Firefox 4. ?????

    Was replaced in Firefox 3 the the '''Site Identity Button''' enveloping the favicon on the Location Bar, see
    * https://support.mozilla.com/kb/Site%20Identity%20Button
    The padlock on the former Status Bar indicated a secure connection (https:)

  • In the lower right corner of the window there is a column of little white boxes with "9.8" over it what is this and how do I get rid of it?

    In the lower right corner of the window there is a column of little white boxes. Right over the column is "9.8". What is this and how do I get rid of it?

    Please provide a screen shot of that issue.
    https://support.mozilla.com/en-US/kb/Adding+screenshots

  • Contacts lower right corner has 2 more entries

    On the iPad, some of my contacts have a person symbol and the number 2 in the lower right corner.
    When I tap on it, there are 2 linked cards, unified and unknown.
    Some of the info there is the same as the contact card, some is older info, some info has a different category such as work or home than the contact has now.
    Where does this come from?
    Does this info exist on the Mac too if contacts are synced? I don't remember seeing it there. On the iPhone?
    Why do only some cards have this?
    How can I make it into only 1 set of information? ( I assume it is taking up space with 3 sets of info.)
    If I do, will it carry over to the iPhone as well, or would I have to fix it there if the info is local?
    Still on iOS 5.1.1

    I also noticed unified and unknown on the iPhone. How can I make these merge with the contact that is already there so there is only one entry?

  • Document "tiles" into lower right corner when opened

    If this is a duplicate post, I apologize . . .I've not read all the posts in the forum, but I'm in a time crunch. 
    My document looks as though it will open normally, page comes up normally, and then it "tiles" down so that upper left corner of the page is in the lower right corner.  You can literally watch the page step down from a full page until only about a 1" x 2.5" section is visible.  It only prints that lower right corner, and that's all that is viewable.  Also, even though the document is multiple pages, it only shows what appears to be the last page, and says the document is "1 of 1 pages"  When it "tiles" down, it appears that there are multiple pages behind the page shown, but we cannot get to them.  I've tried opening it in Adobe 9.3 and Adobe 7.  I'm not a whiz at Adobe, but this is the first time I've seen this.  Any ideas??  Thanks in advance.

    I also noticed unified and unknown on the iPhone. How can I make these merge with the contact that is already there so there is only one entry?

Maybe you are looking for

  • Apple TV network problem continues to aunt me...

    Last week, I updated firmware of my *D-Link DSL604T* ADSL wireless router and had a problem with Apple TV wireless connection. It was not really the wireless connection, because its internet connection to see movie trailers worked fine, but only iTun

  • Web Template - Report Error

    Hello all, How r u ? We are getting this error while trying to select or modify the options in the report which is created using WAD. <b>An exception with the type CX_SY_DYN_CALL_ILLEGAL_TYPE occurred, but was neither handled locally, nor declared in

  • How to create a database using Java?

    Hi there.. I'm a student who is currently studying IT and was asked to do a project based on database but create using Java.. since i'm a beginner..i was wondering whether is it possible to do that? and if it is possible.. can you kindly show me a sa

  • Some apps do not have sound in ipad2

    in my ipad, I do not get sound on some of the apps. sound is working for some apps ( like pbs kids) , also for you tube. How can I fix it ?

  • Too Much Music.  Can I "un-sync?"

    I have about 500 songs on my 60 GB MacBook. All my music is back up. Is there any way to remove the current music on my computer, yet not have my iPod freak out and erase what 500 songs are already on there? Thanks.