Stuck with array's NEED HELP!!!

I have been working at this for two hours now and I need a someone else's opinion other than my own. I need to create a method that finds the row index of the row which contains the largest number divisible evenly by 6. and the column index of the column with the smallest sum. all in one method.
This is what I have so far.
  public static int sum(int[][]arr, int numRow)
              int[][] s;
              s = new int[0][10];
              int u = 0, largestevenindex = 0, largesteven = -99999, product = 0, sum = 0, i, j;
              for(i=0;i<numRow;i++)
                for(j=0;j<arr.length;j++)
if(arr[i][j]%6==0 && arr[i][j]>largesteven) //To find the the row index of the largest number divisible by 6.
          largesteven = arr[i][j];
          largestevenindex = i;
     System.out.println(largesteven);
     System.out.println(largestevenindex);
     for(u=0;u<arr[i].length;u++) //I think I have to create another table and place the sums of the colums and then compare. Is there an easier way?
s[0] = s[0][u]+arr[i][j];
     System.out.println(s[0][u]);
return largestevenindex;
This is the test file23 45 10 77 19 13 16
52 34 71 19 88 65 3
12 1 57 16 4 36 17
9 22 31 27 8 25 12
56 77 88 22 33 44 99
6 21 16 89 4 37 48
25 17 8 9 64 72 81
95 26 5 73 18 92 66
99 12 45 72 19 77 43
11 71 26 34 81 7 45
16 2 34 68 67 7 51
19 52 4 56 51 95 12
57 4 7 9 2 1 3
Anyone have any tips for my code, or another way to do this. Thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Your right flounder, I forget to add we are suppose to just find the product of the two index(smallest sum cloum index and largest row index divisible by 6)
         public static int sum(int[][]arr, int numRow)
              int[][] s;
              s = new int[0][10];
              int u = 0, largestevenindex = 0, largesteven = -99999, product = 0, sum = 0, i, j;
              for(i=0;i<numRow;i++)
                for(j=0;j<arr.length;j++)
if(arr[i][j]%6==0 && arr[i][j]>largesteven)
          largesteven = arr[i][j];
          largestevenindex = i;      
return largestevenindex;
This gets the row index of the highest number divisible by 6. How do I go about finding the colum index that has the smallest sum. any hints or clues. It has to be apart of this method, though.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Stuck with an error, need help.

    Hi Gurus,
    I am calling the workflow throught the function module SWW_wi_start_simple, I am throwing with an exception 'read_failed' Can any one say why this error being stated.
    Secondly, I coded as below to start the work flow with the wf container. How can i use those conatiner variables in the workflow builder
    I coded as below now , now can i use these variables directly in workflow builder or do i need to create again in the workflow builder.
    Can any one say this please I am in need.
    code
    FUNCTION zhr_workflow_initiator.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(EMPLOYEENR) LIKE  PA0000-PERNR
    *"     REFERENCE(PLANNAME) LIKE  T5UCA-LTEXT
    *"     REFERENCE(DEPENDANCY) LIKE  T5UCF-LTEXT
    INCLUDE <cntn01>.
      DATA: wis_obj TYPE swc_object.
      DATA: task  LIKE  swwvpublic-wi_rh_task VALUE 'WS90000001',
            WI_ID LIKE  swwvpublic-wi_id.
      DATA: agents LIKE swhactor OCCURS 0 WITH HEADER LINE,
            wi_container LIKE swcont OCCURS 0 WITH HEADER LINE.
      DATA:BEGIN OF benadjreakey,
                pernr      LIKE  PA0001-PERNR,
               subty      like  p0378-subty,
               objps      like  p0378-objps,
               sprps      like  p0378-sprps,
               endda      like  p0378-endda,
               begda      like  p0378-begda,
               seqnr      like  p0378-seqnr,
            END OF benadjreakey.
    data: l_PLANNAME(30) TYPE c,
          l_DEPENDANCY(20)  TYPE c.
    data: BENEFIT_PLAN      like T5UCA-BPLAN,
          DEPENDACY_CODE    like T5UCF-DEPCV,
          COMPANY_CODE      like PA0001-BUKRS,
          PERSONAL_AREA     like PA0001-WERKS.
    "Initialize" NULL_AGENTS1
      CLEAR agents.
      REFRESH agents.
      MOVE employeenr  TO benadjreakey-pernr.
      move planname    to l_planname.
      move dependancy  to l_dependancy.
    **MOVE SUBTYPE        to BENADJREAKEY-subty.
    **MOVE LOCKINDICATOR  to BENADJREAKEY-sprps.
    **MOVE VALIDITYEND    to BENADJREAKEY-endda.
    **MOVE VALIDITYBEGIN    to BENADJREAKEY-begda.
    **MOVE RECORDNUMBER    to BENADJREAKEY-seqnr.
    CALL FUNCTION 'ZHR_BEN_WORFLOW_DATA'
    EXPORTING
       PLANNAME         = l_planname
       PERNR            = benadjreakey-pernr
       DEPENDANCY       = l_dependancy
    IMPORTING
       BENEFIT_PLAN         = benefit_plan
       DEPENDACY_CODE       = DEPENDACY_CODE
       COMPANY_CODE         = COMPANY_CODE
       PERSONAL_AREA        = PERSONAL_AREA
    Get object Referance
      swc_create_object wis_obj 'BENADJREAS' benadjreakey.
      swc_set_element wi_container 'benefit_plan_code'    BENEFIT_PLAN.
      swc_set_element wi_container 'Dependancy_code'      DEPENDACY_CODE.
      swc_set_element wi_container 'Company_code'         Company_code.
      swc_set_element wi_container 'PERSONAL_AREA'        PERSONAL_AREA.
    swc_set_element wi_container 'ADJUSTMENTREASON' wis_obj.
      swc_container_to_persistent wi_container.
      CALL FUNCTION 'SWW_WI_START_SIMPLE'
      EXPORTING
            task = task
      IMPORTING
            wi_id = wi_id
      TABLES
          AGENTS = AGENTS
          wi_container = wi_container
      EXCEPTIONS
            id_not_created = 1
            read_failed = 2
            execution_failed = 3.
    MOVE wi_id    TO workitem_id.
      IF sy-subrc <> 0.
        WRITE / 'NO_workflow_started'.
      ENDIF.
    ENDFUNCTION.
    Ravi

    Hi Ravi,
    You were able to program the function module but you are not able to find out why the exception is raised? This sounds a bit strange to me, or do you want us to give an answer in stead of searching for one yourself?
    If you didn't create these container elements in the workflow you can't use them, and it could even be that that is why your exception is raised. By putting them in a container which is used when starting the workflow, they will not be automatically created in your workflow.
    And to be more up to date use FM SAP_WAPI_START_WORKFLOW as Arghadip suggested.
    Regards,
    Martin

  • Z77A-GD55: Boot stuck with flashing cursor (need help!)

    When I start my computer, it says A2 in the lower left of the screen, and then B2 for quite a long time. Afterwards, it's just a white cursor flashing on a black background, and nothing else happens.
    I have recently installed a third hard disk and changed my graphics card (from 2x Sapphire HD 7970 to 1x EVGA GTX 760).
    What can I do to fix this problem?

    Quote from: badboy2k on 20-August-13, 05:16:16
    A2 = IDE Detect (looking for a hard drive as you do not have a OS that could just be the issue there)
    B2 = Legacy Option ROM Initialization <---- that is a problem and may indicate you have a problem with your EVGA GeForce GTX 760 as that is usually a Graphics Card issue code (check its seated and connected properly)
    was the 3rd HDD clean (new with no OS on it) and what SATA port you got it attached to?
    I removed the graphics card and connected the screen cables to the motherboard instead, and then started the computer. I worked fine, but of course, I can't use it how I want to without a graphics card.
    I then tried to insert it again, and made sure everything was connected properly. When I then started the computer, nothing had changed, and it was still stuck at the flashing cursor.
    The new hard disk was clean, yes. I previously had my three drives connected like this:
    - SSD (240GB) and HDD (2000GB) connected to the two SATA 1&2 (6.0 Gb/s)
    - Optical drive (Bru-Ray read/write) connected to SATA 3 (3.0 Gb/s)
    When I installed the new hard disk, I connected the old 2TB to SATA 4 (3.0 Gb/s), and the new 3TB to SATA 2 (6.0 Gb/s).
    The 240GB SSD is the disk with the operating system (Win7 64), and this is still, and has always been, connected to SATA 1.
    Does anyone have any possible solutions for my problem from the information currently given?
    I haven't been able to use my dear gaming computer for four weeks now, and it's driving me crazy...

  • Iphone4 upgrade ios5.0.1, done upgrade and reboot itself, iphone stuck at sos mode. need help!!

    iphone4 upgrade ios5.0.1, done upgrade and reboot itself, iphone stuck at sos mode. need help!!

    By "sos mode" do you mean recovery mode?  If so, you have to connect it to iTunes and restore it.

  • HT201210 i can't restore my iphone4 from 5.1 to 6 and it stuck in recovery mode need help

    i can't restore my iphone4 from IOS 5.12 to IOS 6 and it stuck in recovery mode need help please

    Read here > http://support.apple.com/kb/HT1808
    Hope that helps.

  • Stuck with problems and no help

    hi,
    We are stuck with the following set of problems. Repeated entries to this forum have not fetced any response. If anybody can help us on any of these issues, please reply -
    1. We are not able to define any custom validator. We made our own validator that extends CompareValidor, but when we try to apply this rule to an attribute in the validation tab, we get the error - "no properties defined". Do i need to do something else besides creating a new class that extends CompareValidator and then writing my own code in the vlaidate method.
    2. While deploying our jspApplication on java web server, we are getting the message "error - null". The details are as mentioned in the Topic 'can anyone help!!!' that has been posted by Prabhdeep ().
    3. I have two tables, Customer and address. There is no FK between them (there cannot be because address is shared between many entities). In the address, i have 2 fields, BpType and BpId. BpType will contain 'C' to identity that this address is for a customer and id will have the customer id. In jdev 3.1, i have created entity and view objects for the 2 tables. also, i have made a view link. i need to put the condition Address.bpid = customer.customeid and address.bptype = 'c'. but it is not letting me put the second part of the condition. the chk on id works fine. as soon as i add a chk on type and test the application module, then while insertion of address i get the following error - "set method for BpType cannot be resolved".
    4. I have made a jsp appl based on bc4j. now, i need to put a check on any entity in such a manner that if the check fails, my jsp should ask the user that an exception is occuring and does he want to save even with the exceptional data. if he says yes, i want that the same entity should now save the data without giving an exception. How do i achieve this interaction between my entity and my jsp.
    Thanks a lot for any help,
    Aparna.

    I will answer Question #3:
    I'm not sure if I understand exactly what is
    happening. At first I thought you meant that you couldn't even add the second part of the association clause. But, later it sounds like you were able to add the second part of the clause (namely "address.bptype =
    'c'") and that you are experiencing some runtime error.
    Assuming the latter (that it is a RT problem), I take it this
    "...cannot be resolved" error is the error with code 27020.
    Under normal error conditions, you shouldn't get this error. Something "unusual" (or unforeseen by us) is happening if you are getting this error. Anyway, if you wrote your own client code, you should wrap a try/catch block around it, pick out the detail exception, and see what's going
    on. See the example code below:
    try
    ... make call that causes the exception ...
    catch(oracle.jbo.AttrSetValException ex)
    // Print stack trace for the outer ex
    ex.printStackTrace();
    // Get the inner exception
    Object[] details = ex.getDetails();
    if (details.length > 0)
    Exception innerEx = (Exception) details[0];
    // Now, print the inner exception's
    // stack.
    innerEx.printStackTrace();
    This will help shed some light on the exception and the cause of it.
    John - JDeveloper Team

  • I just got a iPhone 5S and I forgot my passcode. I don't have Find my Iphone or icloud and my phone isnt synced with itunes, i need help.

    I just got a IPhone 5S and I forgot my passcode. I'm stuck on the disabled part. I don't have Find My IPhone or iCloud and my phone isn't synced with iTunes, I really need help.

    Hi Numento,
    Follow the instructions in this support article for "If you have never synced your device with iTunes....":
    http://support.apple.com/kb/HT1212
    Cheers and good luck!
    GB

  • Got stuck at boot. Need help.

    Guys, I need your help.
    I have created a Bootcamp partition and wanted to install windows. I guess the disk is corrupted so when the computer restarted I got stuck with a black window, the iMac will not boot from the DVD. The problem is that I cannot switch back to my Leopard partition and the DVD is stuck into the superdrive (I cannot eject it). If I restart the computer it eventually goes to the same black screen. What can I do? I have a Logitech keyboard so the "Option" button is not recognized at startup to switch to Leopard. Any idea?
    Thanks.
    Andrew

    Oh.... try to hold the "S" key for safe start-up....???

  • Im using iPad2, 16GB. stuck in recovery mode. need help.

    Hi. Im using iPad2. stuck in recovery mode, tried getting out but cant. need help badly.

    RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • 2 issues with my phone need help !!

    I am having problems with my app store, when I am downloading an app it is always stuck on 92% that's 1 issue,  my second issue is my messages when I send a message it keeps saying sending I don't know why. I need help with these 2 issues Please & Thank You

    What phone?

  • BB Desktop Manager no longer works with Mac Maverick - Need Help Urgently

    I have been a loyal Blackberry user since the Government of Canada officially began using these cell phones. I feel, however, abandoned by Blackberry (they obviously don't believe that it is easier to retain an existing customer than acquire a new one). I'm using a Blackberry Bold (9900) with a Macbook Pro. Everything was fine until I upgraded my Mac operating system to Maverick; my Blackberry Desktop Manager no longer works, so I cannot sync the content (contacts, calendar) of my phone with my Mac, but that's not the worst of it.
    I recently had a momentary lapse and exceeded the 10 password attempts to access my phone... this accidentally wiped my phone clean... and because Desktop Manager does not work with Mac, I do not have a way to recover my data. Rogers was of no help and had Blackberry updated its desktop software months ago, as it should have, this issue would have been moot. I do not know how or why, but I was able to recover most of my data, but I'm not sure just how up-to-date tha data is and am still going through it, but I'm having issues with some functionality.
    I'm in the US for several months and have suspended my Canadian services. Prior to the wipe, I was able to use wifi on my phone to send and receive emails with no problem.  After the wipe, I can't send emails or bbms.  I checked my blackberry internet service and all email accounts are good to go. BBMs are another issue.  I need help.  Suggestions please. 

    Apple has ceased synchronization with Mavericks. The issue lies with Apple, not with the desktop software. To mitigate the lack of sync capabilities in Mavericks you can sync your contacts and calender on your Mac with the usual suspects (Yahoo, Google). Create a backup (archive) for Contacts and Calender on your Mac first, then create one of those email accouonts that allow syncing. On your 9900 and with BlackBerry provisioning enabled create the new or existing email account. See which email accounts can sync with BB, I know Yahoo is working fine. For Yahoo, get the Yahoo Calender sync (a few bucks one-off payment required), Contacts sync works off the shelf within BB. If you reset the 9900 you should be able to restore all data with BB DTM. Please note that emails you received during the 9900 reset and the date of restore will not be available on the device. You will still not be able to sync contacts/calender over BB DTM. I hope that helps.
    BlackBerry Bold 9900, Blackberry Z10 and BlackBerry PlayBook.

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Blue boxes with question marks, Need help

    In safari i am constantly getting blue boxes with question marks in them, replacing images.
    These boxes are showing up on tumblr, forums, facebook and other places.
    I need help fixing it please.

    Thoseboxes mens it can't decipher the format, might try
    Perian...
    http://perian.org/
    Perian enables QuickTime application support for additional media:
              •          File formats: AVI, DIVX, FLV, MKV, GVI, VP6, and VFW
              •          Video types: MS-MPEG4 v1 & v2, DivX, 3ivx, H.264, Sorenson H.263, FLV/Sorenson Spark, FSV1, VP6, H263i, VP3, HuffYUV, FFVHuff, MPEG1 & MPEG2 Video, Fraps, Snow, NuppelVideo, Techsmith Screen Capture, DosBox Capture
              •          Audio types: Windows Media Audio v1 & v2, Flash ADPCM, Xiph Vorbis (in Matroska), and MPEG Layer I & II Audio, True Audio, DTS Coherent Acoustics, Nellymoser ASAO
              •          AVI support for AAC, AC3 Audio, H.264, MPEG4, VBR MP3 and more
              •          Subtitle support for SSA/***, SRT, SAMI
    Never heard of those sites though, so no idea what they use.

  • Serious Issue with Linkage..Need help ASAP!

    OK, I have big deadline for Monday and I can't figure this
    out. I have a bunch of movieclips that are set up with linkage for
    actionscript and set to export in first frame. Everything was fine
    and dandy for a week. Now all of a sudden Flash hangs when I try to
    export the swf. If I turn off the export in first frame everything
    is fine. The problem then is that my move clips aren't available
    for the attachmovie call. What I don't understand is why it was
    fine, then all of a sudden this happened for no apparent reason.
    Has anyone got a workaround or solution for this? I need help with
    this ASAP. Thanks.
    --Paul

    Sadly nothing you can do. The file must be corrupted.
    sometimes files that need saving corrupt themselves (product of
    voltage variations or some other physical things) making some
    objects "BAD", maybe you can save your work if you determine what
    is the only object that is corrupting all the file and delete and
    and redraw it.

  • My first Mac and first experience with iPhoto.  Need help

    Hello everyone. I just purchased my first Mac, a Mini, last week and I'm trying to learn how iPhoto works. I've been able to import picturs from my NAS (network attached storage) drive which holds all our photos, music and videos.
    However, when I took pictures over the weekend, I wanted to put them on the NAS as well and have them automatically import into iPhoto. I like that iPhoto lets you put a description about the pictures, but I can't find a way to type a description and then set iPhoto to save the pictures to my NAS drive.
    I ended up just saving them to the NAS drive and then importing again and telling iPhoto to not import duplicates. The problem with that is I get folders called thumbnails and then I get messages telling me the Thumbs.db files are not readable and those are coming from my camera card or the NAS drive, maybe because it was formatted on a PC. I know Thumbs is a PC item.
    With my old PC, it allowed me to pick where I wanted my photos stored and what name I would like to call the pictures and then it named them all in succession automatically. Will iPhoto do this and if so, how do I do that? And how do I enter descriptions about my old photos to make them easier to find during a search?
    Thanks for the help. While the Mac is very similar to my old PC, there sure are a lot of things I'm unfamiliar with. But with time and some help from experts like you, I'm sure I'll get comfortable with it.
    John

    John
    iPhoto is a photo organiser - that is a database. Like any database the data has to be imported into the application.
    What format is that NAS? iPhoto does not sit happily on disks that are not formatted for Mac OS X (journalled). You will find issues with saving changes to the db and with sharing pics among other apps.
    You can put a library on an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    With my old PC, it allowed me to pick where I wanted my photos stored and what name I would like to call the pictures and then it named them all in succession automatically. Will iPhoto do t
    No. For a start, filenames have no relevance in iPhoto - it's all about visual organisation. You can attach titles, keywords and comments to pics, of course, and can add them to the File on export.
    If you want to set the pics in a spot, then do that with the Finder and thereafter import them. You can use a batch file renamer such as FileList to rename the files prior to import.
    and telling iPhoto to not import duplicates.
    Using a Referenced rather than a Managed library means that iPhoto will not copy the files, but rather simply reference them on your HD. It will create an alias to the Original file, a thumbnail and, if you modify the pics, a Modified version.
    However, you need to be aware of a number of potential pitfalls using this system.
    1. Import and deleting pics are more complex procedures
    2. You cannot move or rename the files on your system or iPhoto will lose track of them
    3. Most importantly, migrating to a new disk or computer can be much more complex.
    Always allowing for personal preference, I've yet to see a good reason to run iPhoto in referenced mode unless you're using two photo organisers.
    As a general comment: iPhoto is a bit different from most photo apps. It's happiest when it manages the files and lets you go on to manage your Photos. That's a key distinction though, between Files and Pictures. iPhoto is about Pictures, not Files.
    You do all your work in the iPhoto Window - there is never a need to go into the Photo Library on the Hard Disk. To find and access photos:
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    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.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *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.
    3. *Show File*: 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.
    To use an external editor
    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.
    By all means post again if you need more info.
    Regards
    TD

Maybe you are looking for