Need help resizing photos - confused as to why this isn't working

Hi - I have a customer looking for photos to be 1024x683 and 360x240.  I sized my artboard in Illustrator to those dimensions, dropped in the photo and resized it to fit.  Saved file.  When running cursor over file name - blip comes up and says file size dimensions are 1504 x919 for example (they're all different) and these are examples on the ones that I sized for 360x240.  If anyone can respond that would be great as I'm supposed to have about 100 files out overnight tonight!  Thanks!...h

You can use save for web, just don't forget to turn on clip to Artboard. Otherwise items off the artboard would make your document larger. An artboard not filled short of the EXACT edges, would also make your document smaller.
If you need a different format, use export but check use arboards there and then choose screen resolution.
Mylenium wrote:
AI thinks in inch and the default DPI setting for any new document is 300 DPI.
I cannot find that be true.

Similar Messages

  • HT5037 I have downloaded and installed this tool, but it's still telling me I need to update. Any suggestions why this isn't working for me? I have a Macbook Pro.

    I have downloaded and installed the iPhoto tool to update so my pictures transfer over, but it's still telling me I need to update. Any suggestions why this isn't working for me? I have a Macbook Pro.

    You have to download and RUN the iPhoto library upgrade - then launch iPhoto - If you had iPhoto '08 or earlier (version 7.x.x) - the upgrade is installed in the utilities folder of your Applications folder
    LN

  • Confused as to why this doesn't work...

    I wrote this code correctly, but it doesn't seem to work. I'm not sure if I'm leaving something out or not using something correctly. If anyone can tell me why this doesn't work, it would be greatly appreciated!
    P.S. in the actionPerformed method, I want to put the window to close once someone clicks an "ok" button. How is this done? I've tried using setDefaultCloseOperation(3), but it doesn't seem to work.
    peace,
    Mark
    //?2002 Copyright. MJA Technologies.  All Rights Reserved.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class About extends JFrame implements ActionListener
        JTextArea textarea;
        JPanel panel1;
        JButton okbutton;
        String output;
        public About()
            super("Pages");
            Container container = getContentPane();
            textarea = new JTextArea();
            textarea.setText("Pages 1.0 beta 0\n?2002 MJA Technologies.\nAll Rights Reserved.");
            container.add(textarea);
            setDefaultCloseOperation( 3);
            setVisible(true);
            setSize(400, 300);
        public void actionPerformed(ActionEvent event)
            if(event.getSource() == okbutton)

    Oh see, you said this:
    "P.S. in the actionPerformed method, I want to put the window to close once someone clicks an "ok" button. How is this done? I've tried using setDefaultCloseOperation(3), but it doesn't seem to work."
    so I said this:
    "setVisible(false)"
    NOOOOOOOOOOOW you say the TextArea doesn't show up...that's a whole other problem.
    Jeeeeeeeeeeeeeeeez.
    So what layout manager are you using in the container? (hint hint)

  • I need help! My iPod Touch's menu button isn't working.

    Is there a way to fix it? Or do I need to buy another one?

    Also see:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button

  • Xcoding (1st attempt):Can someone please tell me why this isn't working?

    Hi Folks,
    Please forgive me if this is the wrong forum/area,  I am new here/first post.
    I recently have been trying out XCODE and learning Objective-C.  Coming from a background
    of Microsoft Basic 2.0, it's been a challenge to say the least!
    Here's what I wrote so far,  it's a basic 'wager/dice' game.  I basically want the game
    to keep repeating until the player runs out of money (I know I still have to program
    that into the 'while' function, so I defaulted it for 10 times in the interim). 
    Here's what I need to figure out:
    - The "While" loop is working, yet the 'cash' constantly resets to 1000 each time it starts again. I tried
    {bracketing} the functions, but whether I win/lose the dice rolls, it always resets to 1000
    There's a bunch more things I need to figure out, but if someone can tell me why the 'cash'
    keeps reseting to '1000' each time,  I'd greatly appreciate it!
    - CF
    /* dice wager game */
    #include <stdio.h>
    #include <Foundation/Foundation.h>
    int main(int argc, const char * argv[])
        int r = arc4random() % 6+1;
        int bet;
        int dice;
        int cash=1000;
        int total;
        int loop=1;
        while (loop<10){
        printf("\n");
        printf ("You have %i dollars, How much do you want to bet? \n", cash);
        scanf ("%d",&bet);
        printf ("What is the number you want to bet on (1 out of 6)? \n");
        scanf ("%d",&dice);
        if ( dice == r )
            printf("You guessed it right %i \n",r);
            total=bet+cash;
            printf("You now have %i \n",total);
        else if (r!=dice)
            printf("Your number %i was, the number is %i \n", dice,r);
            total=bet-cash;
            printf("You now have %i \n",total);
            if (total==0)
                printf("You have no more money, game over \n");
                break;
    loop++;

    Thank you!!!
    I know it seems silly to you, but it now suddenly all makes sense to me!
    Thanks!
    Here's the revised code:
    /* dice wager game */
    #include <stdio.h>
    #include <Foundation/Foundation.h>
    int main(int argc, const char * argv[])
        int r = arc4random() % 6+1;
        int bet;
        int dice;
        int cash=1000;
        int total;
        int loop=1;
        total=cash;
        while (loop<10){
        printf("\n");
        printf ("You have %i dollars, How much do you want to bet? \n", cash);
        scanf ("%d",&bet);
        printf ("What is the number you want to bet on (1 out of 6)? \n");
        scanf ("%d",&dice);
        if ( dice == r )
            printf("You guessed it right %i \n",r);
            cash=bet+cash;
            printf("You now have %i \n",cash);
        else if (r!=dice)
            printf("Your number %i was, the number is %i \n", dice,r);
            cash=cash-bet;
            printf("You now have %i \n",cash);
            if (cash<=0)
                printf("You have no more money, game over \n");
                break;
            loop++;

  • Can someone tell me why this isn't working?

    I am trying to upload files to a WebDAV server located at
    https://webdav.buzzsaw.com/jasonpratt/webdav
    uid: webdav
    pwd: Webdav2005 (case sensitive)
    I can download and view files, but can't upload anything. Any ideas why not? Please help, O Mac experts!

    I created a webdav server on my mac. It is working, however when I upload files, (with the finder), the permissions are not set were I can write. So if I try to copy a folder, the contents will not copy. I have learned that umask can overcome this. However I have not found how to enable a umask_module in apache.
    I have tried Transmit 3.2.1 and it is inconvienent, because it does not mount a Volume like the finder would. I coppied the same folder. It shows that it has the same permissions as the folder I uploaded with the finder. drwxr-x--- . However the contents are coppied in the folder.
    Another stange thing, If I try to manually copy the contects after the folder and contents failed, then it works. So it looks like I do have write (w) rights.

  • Making a complex button with the Tween class...not sure why this isn't working.

    Hi all,
    I'm trying to make a button which scales up on rollover and
    scales down on rollout and I wanted to use the Tween class to do it
    because I'm going to be making a bunch of these buttons and I want
    the code to be as efficient as possible.
    So right now I have a circle in a movie clip, and here's what
    I have on the first frame of that circle's actions layer:
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    function grow(who) {
    var tw:Tween = new Tween(who, "_xscale", Strong.easeOut,
    100, 400, 1, true);
    var tw2:Tween = new Tween(who, "_yscale", Strong.easeOut,
    100, 400, 1, true);
    function shrink(who) {
    var tw3:Tween = new Tween(who, "_xscale", Strong.easeOut,
    400, 100, 1, true);
    var tw4:Tween = new Tween(who, "_yscale", Strong.easeOut,
    400, 100, 1, true);
    this.onEnterFrame = function() {
    trace(rewind);
    if (rewind == true) {
    shrink(this);
    this.onRollOver = function() {
    rewind = false;
    grow(this);
    this.onRollOut = function() {
    rewind = true;
    The circle scales up just fine but when I rollout it doesn't
    scale back down. I did a trace to see if my tween was being called
    and sure enough it was. So I did another trace to see if the
    _xscale or _yscale was changing and they both were going down to
    around 290 on rollOut although there's no noticeable difference in
    the size of the button, it just looks like it's sitting there.
    I was also wondering if importing the whole class library
    will add very much to my file size?
    Also, since I'm going to have a lot of these buttons on the
    stage at the same time (these buttons will be like markers all over
    a map so there'll probably be around 50+) would it be a bad idea to
    have that many onEnterFrame checks running simultaneously? Is that
    going to slow the user's CPU way down?

    Thanks for the suggestions guys.
    I tried your code and got the rollOut to work but the button
    blinks rapidly if the user rolls out and then rolls back in
    quickly. Here is a link to the swf:
    http://www.stationarynotes.com/studioI/buttonTest.swf
    It also has to reach a complete stop the first time the
    button expands or else it won't run the shrink function on rollOut.
    I put all of my code on the first frame of the movie clip's
    actions layer so here's what mine looks like:
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    function grow(who) {
    var tw:Tween = new Tween(who, "_xscale", Strong.easeOut,
    100, 400, 1, true);
    var tw2:Tween = new Tween(who, "_yscale", Strong.easeOut,
    100, 400, 1, true);
    tw.onMotionFinished=function():Void{
    who.onRollOut = function() {
    shrink(who);
    function shrink(who) {
    var tw3:Tween = new Tween(who, "_xscale", Strong.easeOut,
    400, 100, 1, true);
    var tw4:Tween = new Tween(who, "_yscale", Strong.easeOut,
    400, 100, 1, true);
    this.onRollOver = function() {
    grow(this);

  • Need help in activation a license key in CCT. It works as a trial now

    Need help in activation a license key in CCT. It works as a trial now

    1st the sata drive cannot be listed as a slave drive to the ide master [key word=ide-can be configured as master OR slave, master IF only 1 hd, master and slave IF 2 hds], on the sata controler you can have master and slave, the ide cable has two connectors for the hds, sata has only 1 hd connector.
    are you wanting to install the sata as primary master and move the operating sys to that drive, if so you will need an IMAGING software to move an operating system OR you could do a fresh operating system install to the sata drive then install your programs.

  • I need help authenticating my outgoing server settings in setting up my work email on my Galaxy S5.  It says unable to authenticate or connect to server and I even called helpdesk at my email support and they tried every possible port (80, 25, 3535 or 465

    I need help authenticating my outgoing server settings in setting up my work email on my Galaxy S5.  It says unable to authenticate or connect to server and I even called helpdesk at my email support and they tried every possible port (80, 25, 3535 or 465 SSL) and none of them work. Please help!

    You will need to get the required info to create/access the account with an email client from your school.
    Are you currently accessing the account with an email client on your computer - if you have a Mac with the Mail.app, or if you have a PC with Outlook Express, etc.? If so, you can get the required account settings there.

  • Hi i need help one of my key on the keyboard dosen't work for some reason please help

    hi i need help one of my key on the keyboard dosen't work for some reason please help

    try smc reset
    http://support.apple.com/kb/ht3964
    and Pram reset
    http://support.apple.com/kb/ht1379
    (Try pram a few times to get correct sequence)
    Check what you have selected in
    system preferences/system/accessibility/keyboard
    and system preferences/hardware/keyboard  (keyboard and keyboard short cuts tabs)

  • I have been trying to update my software in my macbook pro, but every time I go through the motions of updating/restarting my computer nothing happens and it still shows I need a software update. Anyone know why this is happening?

    I have been trying to update my software in my macbook pro, but every time I go through the motions of updating/restarting my computer nothing happens and it still shows I need a software update. Anyone know why this is happening?

    How large is your HD and how much space do you have left?
    Check out the following & do the necessary: 
    Disconnect all devices from the computer then do the following:
    Boot up from your Snow Leopard Install DVD while holding down the "c" key.
    Select the language you wish to use, and then choose "Disk Utility" from the menu bar.
    Your HD should appear in a panel on the left hand side of the window which opens. Select it and then click on the "repair disk" button in the right hand section of the window.
    Once this process has been completed restart your computer and repair permissions directly from Disk Utility.
    Try SU again. 
    If Disk Utility is unable to complete the repair, you will need to use a stronger 3rd party utility like DiskWarrior, Techtool PRO (not Deluxe) or Drive Genius.

  • What happened to the 24/7 live chat for mobile me? I need help right now. Too complex for this. Crime involved., What happened to the 24/7 live chat for mobile me? I need help right now. Too complex for this. Crime involved.

    What happened to the 24/7 live chat for mobile me? I need help right now. Too complex for this. Crime involved., What happened to the 24/7 live chat for mobile me? I need help right now. Too complex for this. Crime involved.

    Hi Tmswrite,
    Here is what you want to do to protect yourself and your device:
    Find My iPhone Basics  - Apple Support
    iCloud: Find My iPhone overview
    Here's some information on how the Activation Lock protects you:
    Find My iPhone Activation Lock in iOS 7
    Sorry for your troubles. Hope it turns out OK for you!
    GB

  • Unsure why this is not working?

    Can anyone give me a pointer as to why this is not working? I put the code from line 16 through 50 in the "...before displaying the page" additional pl/sql section of the wizard. The form wizard created the code from 5 through 15 and 51 through 55. The first error I understand because I think the wizard forgot to end the procedure correctly by saying "end beforeModuleDisplay;" instead of just putting "end;".
    If I am right, how can I fix this since the wizard is the one putting in this info? I tried putting the correct end statement in where I put the rest of my code, but that created even more errors.
    Error creating package SOCSBO_USER.ACCT_INFO
    Error creating package SOCSBO_USER.ACCT_INFO
    Line/ColumnError
    56/5PLS-00103: Encountered the symbol "PROCEDURE" when expecting one of the following: begin declare end exception exit for goto if loop mod null pragma raise return select update while <an identifier> <a double-quoted delimited-identifier> <a bind variable> << close current delete fetch lock insert open rollback savepoint set sql execute commit forall <a single-quoted SQL string> The symbol "declare" was substituted for "PROCEDURE" to continue.
    2128/5PLS-00103: Encountered the symbol "END" when expecting one of the following: begin function package pragma procedure form
    -- PACKAGE BODY SOCSBO_USER.ACCT_INFO
    -- created Monday 05-NOV-2001 16:52
    create or replace
    1 package body ACCT_INFO as
    2 --
    3 -- Created by ASAPP using WebDB at 15:16:46, Mar 04, 2002
    4 --
    5 procedure beforeModuleDisplay
    6 (
    7 p_block_name in varchar2,
    8 p_object_name in varchar2,
    9 p_instance in integer,
    10 p_event_type in varchar2,
    11 p_user_args in varchar2,
    12 p_session in out PORTAL30.wwa_api_module_session
    13 )
    14 is
    15 begin
    16 declare
    17 l_fs varchar2(200);
    18 l_cv varchar2(200);
    19 l_sv varchar2(200);
    20 l_lang varchar2(100);
    21 l_idx integer;
    22 begin
    23 l_lang := portal30.wwctx_api.get_nls_language;
    24 l_fs := p_session.get_value_as_varchar2(
    25 p_block_name => 'DEFAULT',
    26 p_attribute_name => '_FORM_STATE');
    27 l_cv := p_session.get_shadow_value(
    28 p_block_name => 'DEFAULT',
    29 p_attribute_name => 'A_ACCOUNT_COURSE',
    30 p_language => l_lang);
    31 l_sc := p_session.get_shadow_value(
    32 p_block_name => 'DEFAULT',
    33 p_attribute_name => 'A_ACCOUNT_SUBPROJECT',
    34 p_language => l_lang);
    35 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    36 l_idx := row_function.get_index('COURSE_BOTTOM');
    37 if upper(l_cv) = 'Y' then
    38 p_form.items(l_idx).visible := 'Y';
    39 else
    40 p_form.items(l_idx).visible := 'N';
    41 end if;
    42 end if;
    43 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    44 l_idx := row_function.get_index('SUBPROJECT_BOTTOM');
    45 if upper(l_sv) = 'Y' then
    46 p_form.items(l_idx).visible := 'Y';
    47 else
    48 p_form.items(l_idx).visible := 'N';
    49 end if;
    50 end if;
    51 exception
    52 when others then
    53 PORTAL30.wwerr_api_error.add(PORTAL30.wwerr_api_error.DOMAIN_WWV,'app','generic','SOCSBO_USER.ACCT_INFO.beforeModuleDisplay', p1 => sqlerrm);
    54 raise;
    55 end;
    56 procedure row_function
    REST OF CODE NOT RELEVANT

    Hello Albert,
    You open a new pl/sql block on line 16, but you have only one 'end' statement.
    You can correct this by adding another 'end' statement after line 55 or you can remove the inner PL/SQL block and place it in the procedure itself. Variables can be declared after 'is' on line 14. In your example it's better to do it this way. See example.
    Hope this helps...
    Nancy.
    Example solution 2:
    -- PACKAGE BODY SOCSBO_USER.ACCT_INFO
    -- created Monday 05-NOV-2001 16:52
    create or replace
    1 package body ACCT_INFO as
    2 --
    3 -- Created by ASAPP using WebDB at 15:16:46, Mar 04, 2002
    4 --
    5 procedure beforeModuleDisplay
    6 (
    7 p_block_name in varchar2,
    8 p_object_name in varchar2,
    9 p_instance in integer,
    10 p_event_type in varchar2,
    11 p_user_args in varchar2,
    12 p_session in out PORTAL30.wwa_api_module_session
    13 )
    14 is
    15 l_fs varchar2(200);
    16 l_cv varchar2(200);
    17 l_sv varchar2(200);
    18 l_lang varchar2(100);
    19 l_idx integer;
    20
    21 begin
    22
    23 l_lang := portal30.wwctx_api.get_nls_language;
    24 l_fs := p_session.get_value_as_varchar2(
    25 p_block_name => 'DEFAULT',
    26 p_attribute_name => '_FORM_STATE');
    27 l_cv := p_session.get_shadow_value(
    28 p_block_name => 'DEFAULT',
    29 p_attribute_name => 'A_ACCOUNT_COURSE',
    30 p_language => l_lang);
    31 l_sc := p_session.get_shadow_value(
    32 p_block_name => 'DEFAULT',
    33 p_attribute_name => 'A_ACCOUNT_SUBPROJECT',
    34 p_language => l_lang);
    35 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    36 l_idx := row_function.get_index('COURSE_BOTTOM');
    37 if upper(l_cv) = 'Y' then
    38 p_form.items(l_idx).visible := 'Y';
    39 else
    40 p_form.items(l_idx).visible := 'N';
    41 end if;
    42 end if;
    43 if upper(l_fs) = 'UPDATE_AND_DELETE' then
    44 l_idx := row_function.get_index('SUBPROJECT_BOTTOM');
    45 if upper(l_sv) = 'Y' then
    46 p_form.items(l_idx).visible := 'Y';
    47 else
    48 p_form.items(l_idx).visible := 'N';
    49 end if;
    50 end if;
    51 exception
    52 when others then
    53 PORTAL30.wwerr_api_error.add(PORTAL30.wwerr_api_error.DOMAIN_WWV,'app','generic','SOCSBO_USER.ACCT_INFO.beforeModuleDisplay', p1 => sqlerrm);
    54 raise;
    55 end;
    56 procedure row_function
    REST OF CODE NOT RELEVANT

  • Need help undoing photo transfer from iPhone 4s.

    Hello gang, I need some help with a photo transfer as things have gone awry!
    I had ~100 photos in my Camera Roll on my 4s.  Went to transfer these to a PC, as usual; however, I did (2) thiings differently this time:
    (a) did this directly to a USB (instead of to my hard drive first).
    (b) Instead of my normal 'copy/paste/delete' I did a 'cut/paste' in order to save a step.
    Well, lo and behold, these are now on my USB but each at 1KB size and when I go to view I get the message "Windows Photo Viewer can't open this picture because either Photo Viewer doesn't support this file format, or you don't have the latest updates to Photo Viewer."  My PC is running Windows 7, and right now I have about 100 photos that are not accessible.  I am not able to 'copy' back to the iPhone and at this point they are lost.
    I am curious if copying directly to the USB instead of to my hard drive has generated this issue, although I do not understand why.  I have plugged in the USB to other PCs and photos are still not readable, nor are the photos still present in my Camera Roll.  Please tell me these are not gone?!
    Help!

    Please, try "Photo Transfer WiFi" or "Sync Photos to Storage" from the App Store. Does it solves your problem?
    I recommend you the second app. It allows you to send all your Camera Roll photos and videos to the desktop in one tap!
    https://itunes.apple.com/us/app/sync-photos-to-storage-simplest/id740485263?mt=8
    http://itunes.apple.com/us/app/photo-transfer-wifi-drag-drop/id674978018?mt=8

  • Need help putting photos on my iPad

    Trying to put scanned photos on my iPad. I have tried iTunes but under devices there is no photos to select. Need help.

    Photos doesn't appear on the left-hand sidebar under Devices, it appears on the right-hand side in a similar way as for selecting and syncing music, apps etc
    If you are on iTunes 11 on your computer then you may want to re-enable the left-hand sidebar via View > Show Sidebar (option-command-S on a Mac, control-S on a PC), which might make it easier to navigate and my instructions may make more sense.
    To sync photos, connect and select your iPad on the left-hand side of your computer's iTunes (if you've enabled the sidebar), and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    If you haven't enabled the sidebar, then from your library click 'iPad' at the top right of the screen and you should get a series of buttons along the top of the screen, including one for Photos

Maybe you are looking for

  • When I try to activate imessage or facetime a message pops up that says to check my network connection but safari is working fine

    I know that my apple ID and password are right because I checked online and I tried changing my DNS but nothing has worked. I am in college and use the university's wifi could that have something to do with it?

  • How to restart a message from beginning

    Hi, in our test-xi we have 10.000 failed message because of a mapping error. The problem is, that the receiver determination was wrong so the wrong interface mapping was startet. If I restart the failed messages, only the step "message mapping" is ru

  • Changing focus inside the JFileChooser!

    Hi there! When i open a JFileChooser the focus automatically goes on the drive combo box... Is there any way to change the focus to another component? for example to the "File Name" text field? It drives me nuts, as i can't find a way to do it! :) An

  • [solved] audio problem after update

    hi, after the kernel update of yesterday i have a problem with my audio. after a reboot, my audio is totally absent. i have saw that the pulseaudio process is present and activate, and all graphically is ok (all indicators works well). the strange th

  • SQL date query problem with century/ year

    We have an oracle database with about 6 million records. There is a date field called Entered Date that ranges from 1985 to the present. The majority of these records were entered prior to Jan 1 2000. If I run a query like select count(*) from (table