How to put a texture on a selection in photoshop cs5

so I have my selection made and saved around this apple in the center of the picture.What I want to do is, put a crumpled paper texture on the apple and make it look like its made of a pice of crumpled paper. Also i want to make the selection colord and the rest of the picture black and white. How do i do this?

Hello!
Once you've got your selection, invert it. PC:(CTRL+SHIFT+I) Mac: (CMD+Shift+I) or select>inverse.
Bring the crumpled paper as a new layer, make sure you get the selection back PC: (CTRL+Shift+D) Mac: (CMD+Shift+D) or select>reselect, then click the add a layer mask icon on the bottom of the layers panel.
To make selective desaturation, get the selection active per the previous shortcuts, then add a B&W adjustment layer, and it will respect the selection. If the layer mask is the opposite of what you want, CTRL+I/CMD+I will invert its values.
Read more about Layer masks and their creative possibilities in the help files: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7867a.h tml

Similar Messages

  • How to disable the printer's color management in Photoshop CS5 with Mavericks?

    Hi there, does anyone know how to disable the printer's color management in Photoshop CS5 with Mavericks? There doesn't seem to be an option. Could you help? Many thanks

    Just select Photoshop Manages Color, and the printer driver color options should be disabled.

  • How do you change the language to English in Photoshop CS5 after installation is completed? When I installed the program, English was not one of the language options so now everything reads in spanish. I can not read in spanish. Please help!!

    How do you change the language to English in Photoshop CS5 after installation is completed? When I installed the program, English was not one of the language options so now everything reads in spanish. I can not read in spanish. Please help!!

    Hi mujabee1111,
    Please uninstall the application from your machine and then use the link below to download the installer for the CS5 download in English language:
    Download CS5 products
    Regards,
    Sheena

  • How to put F4 facility in the selection screen using

    <i><b>HI Experts,
    i have a query ..
    i want to put F4 facility in the selection screen and The F4 help  for the order number (chvw-aufnr) on the selection screen should be the same like the F4 help for order number in transaction COOIS.. PLease provide support in this regard.
    Its urgent..An early reply will be highly appreciated.
    Regards.
    Neeraj</b></i>

    See the following ex:
    TYPES: BEGIN OF TY_MBLNR,
            MBLNR LIKE MKPF-MBLNR,
          END OF TY_MBLNR.
    DATA: IT_MBLNR TYPE STANDARD TABLE OF TY_MBLNR WITH HEADER LINE.
    data: it_ret like ddshretval occurs 0 with header line.
    At selection-screen on value-request for s_mat-low.
      Select MBLNR from mkpf into table it_mblnr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = ' '
          RETFIELD               = 'MBLNR'
      PVALKEY                = ' '
      DYNPPROG               = ' '
      DYNPNR                 = ' '
      DYNPROFIELD            = ' '
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
         VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
        TABLES
          VALUE_TAB              = IT_MBLNR
      FIELD_TAB              =
         RETURN_TAB             = IT_RET
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF SY-SUBRC = 0.
        read table it_ret index 1.
        move it_ret-fieldval to S_mat-low.
      ENDIF.

  • How to put a value in a selection screen parameter

    how do i forcefully put a value to a field in the selection screen.
    i mean during runtime.
    and it's a parameter not a selection-option.
    thanks

    Hi,
    Check this sample code.It can help you.Basically you need to use 'DYNP_VALUES_READ' in at selection-screen on value-request for s_posnr-low.
    tables : vbap.         " Sales Document: Item Data
                         Constant Declaration                                      *
    CONSTANTS:
      C_X TYPE C VALUE 'X'.     " Translate to Uppercase
                         Variable Declaration                                      *
    Variable for Table index
      data v_sytabix like sy-tabix.
    Variable for Program name
      data L_NAME LIKE SYST-REPID.
    Range for getting values form selection screen
    DATA: BEGIN OF range1 OCCURS 0,
             SIGN(1),
             OPTION(2),
             LOW  LIKE vbap-vbeln,
             high like vbap-vbeln,
          END OF range1.
    Internal table for Report output
      data: begin of i_vbap occurs 0,
              vbeln like vbap-vbeln,            " Sales Document
              posnr like vbap-posnr,            " Sales Document item
            end of i_vbap.
    Internal table for output to the F4 help
      data: begin of I_DISPLAY occurs 0,
              vbeln like vbap-vbeln,            " Sales Document
              posnr like vbap-posnr,            " Sales Document item
            end of I_DISPLAY.
    Internal table for return value form function module
      DATA: BEGIN OF I_RETURNVAL OCCURS 0.
              INCLUDE STRUCTURE DDSHRETVAL.     " Interface Structure Search
      DATA: END OF I_RETURNVAL.
    Internal table for F4 help field heading
      DATA: I_FIELDTAB LIKE DFIES OCCURS 0 WITH HEADER LINE.
    Internal table for getting screen values from selection screen
      data L_SCR_FIELDS LIKE DYNPREAD OCCURS 1 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME title text-001.
      select-options:
            S_VBELN for vbap-vbeln no intervals,
            S_POSNR for vbap-posnr no intervals.
    SELECTION-SCREEN end OF BLOCK B1.
    at selection-screen on value-request for s_posnr-low.
      clear: L_SCR_FIELDS, I_FIELDTAB, i_display, I_RETURNVAL.
      refresh: L_SCR_FIELDS, I_FIELDTAB, i_display, I_RETURNVAL.
      L_NAME = SYST-REPID.
      MOVE 'S_VBELN-LOW' TO L_SCR_FIELDS-FIELDNAME.
      APPEND L_SCR_FIELDS.
    Call the Function module DYNP_VALUES_READ to get the values form
    selection screen
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME                         = L_NAME
          DYNUMB                         = SYST-DYNNR
          TRANSLATE_TO_UPPER             = C_X         " X
        TABLES
          DYNPFIELDS                     = L_SCR_FIELDS
       EXCEPTIONS
         INVALID_ABAPWORKAREA           = 1
         INVALID_DYNPROFIELD            = 2
         INVALID_DYNPRONAME             = 3
         INVALID_DYNPRONUMMER           = 4
         INVALID_REQUEST                = 5
         NO_FIELDDESCRIPTION            = 6
         INVALID_PARAMETER              = 7
         UNDEFIND_ERROR                 = 8
         DOUBLE_CONVERSION              = 9
         STEPL_NOT_FOUND                = 10
         OTHERS                         = 11
      IF SY-SUBRC eq 0.
        LOOP AT L_SCR_FIELDS.
          range1-sign = 'I'.
          range1-option = 'EQ'.
          range1-low = L_SCR_FIELDS-FIELDVALUE.
          range1-high = space.
          append range1.
        ENDLOOP.
      ENDIF.
    F4 help Field headings
      I_FIELDTAB-TABNAME = 'I_DISPLAY'.
      I_FIELDTAB-FIELDNAME = 'VBELN'.
      I_FIELDTAB-POSITION = '1'.
      I_FIELDTAB-OUTPUTLEN = '10'.
      I_FIELDTAB-INTTYPE = 'C'.
      I_FIELDTAB-INTLEN = '10'.
      APPEND I_FIELDTAB.
      I_FIELDTAB-FIELDNAME = 'POSNR'.
      I_FIELDTAB-POSITION = '2'.
      I_FIELDTAB-OFFSET = '10'.
      I_FIELDTAB-OUTPUTLEN = '6'.
      I_FIELDTAB-INTTYPE = 'N'.
      I_FIELDTAB-INTLEN = '6'.
      APPEND I_FIELDTAB.
    Retrieve sales document, Sales document item from table Sales
    Document: Item Data(VBAP).
    Primary keys used for selection: VBELN
      select vbeln posnr from vbap
                   into table i_display
                   where vbeln in range1.
    Call the function module F4IF_INT_TABLE_VALUE_REQUEST for F4 values
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD               = 'POSNR'
          WINDOW_TITLE           = 'Line Item'
          VALUE_ORG              = 'S'
          MULTIPLE_CHOICE        = C_X           " (for muliple selection)
        TABLES
          VALUE_TAB              = I_DISPLAY
          FIELD_TAB              = I_FIELDTAB
          RETURN_TAB             = I_RETURNVAL
        EXCEPTIONS
          PARAMETER_ERROR        = 1
          NO_VALUES_FOUND        = 2
          OTHERS                 = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
    Star for For single values
      READ TABLE I_RETURNVAL INDEX 1.
       S_POSNR-LOW = I_RETURNVAL-FIELDVAL.
    End for the single values
    Start For multiple selection
       loop at i_returnval.
         s_posnr-sign = 'I'.
         s_posnr-option = 'EQ'.
         s_posnr-low = I_RETURNVAL-FIELDVAL.
         append s_posnr.
       endloop.
       sort s_posnr.
       read table s_posnr index 1.
    End for multiple selection
      ENDIF.
                         Start-of-selection                                        *
    start-of-selection.
    Retrieve sales document, Sales document item from table Sales
    Document: Item Data(VBAP).
    Primary keys used for selection: VBELN
      select vbeln posnr from vbap
                        into table i_vbap
                        where vbeln in s_vbeln
                          and posnr in s_posnr.
    if the above selection is successful continue the process else exit *
    form the report
      if sy-subrc ne 0.
       message e002 with 'No data to display'.
      endif.
    end-of-selection.
      if not i_vbap[] is initial.
        loop at i_vbap.
          write:/ i_vbap-vbeln, i_vbap-posnr.
        endloop.
      endif.

  • How to put drop down box in selection screen

    Hi all,
    I have to create a selection screen.
    in that i have to use a drop down box for the text box.
    how to do that.
    thanking u.
    with regards,
    giri.

    HI
    Check thi ssample code -
    REPORT ZTESTPRG.
    TYPE-POOLS: VRM.
    DATA: NAME TYPE VRM_ID,
    LIST TYPE VRM_VALUES,
    VALUE LIKE LINE OF LIST.
    PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'PS_PARM'.
    VALUE-KEY = '1'.
    VALUE-TEXT = 'LINE 1'.
    APPEND VALUE TO LIST. VALUE-KEY = '2'.
    VALUE-TEXT = 'LINE 2'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    START-OF-SELECTION.
    WRITE: / 'PARAMETER:', PS_PARM.
    Hope this helps.
    OR
    You can use the F4 function module or use a List box
    see the sample codes
    See the following ex:
    TYPES: BEGIN OF TY_MBLNR,
    MBLNR LIKE MKPF-MBLNR,
    END OF TY_MBLNR.
    DATA: IT_MBLNR TYPE STANDARD TABLE OF TY_MBLNR WITH HEADER LINE.
    data: it_ret like ddshretval occurs 0 with header line.
    At selection-screen on value-request for s_mat-low.
    Select MBLNR from mkpf into table it_mblnr.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    DDIC_STRUCTURE = ' '
    RETFIELD = 'MBLNR'
    PVALKEY = ' '
    DYNPPROG = ' '
    DYNPNR = ' '
    DYNPROFIELD = ' '
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
    VALUE_ORG = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
    TABLES
    VALUE_TAB = IT_MBLNR
    FIELD_TAB =
    RETURN_TAB = IT_RET
    DYNPFLD_MAPPING =
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF SY-SUBRC = 0.
    read table it_ret index 1.
    move it_ret-fieldval to S_mat-low.
    ENDIF.
    Go through the test program.
    REPORT Ztest_HELP .
    TABLES : MARA.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS : P_MATNR(10) TYPE C.
    SELECTION-SCREEN END OF BLOCK B1.
    DATA : BEGIN OF ITAB OCCURS 0,
    MATNR TYPE MATNR,
    END OF ITAB.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MATNR.
    SELECT MATNR
    FROM MARA
    INTO TABLE ITAB
    UP TO 10 ROWS.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'MATERIAL NUMBER'
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'P_MATNR'
    VALUE_ORG = 'S'
    TABLES
    VALUE_TAB = ITAB
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3.
    LIST BOX
    Input : p_char = 'J'.
    Press: enter
    List Box of Month = January, June , July.
    REPORT ZLIST_VALUES.
    TYPE-POOLS vrm.
    tables:
    spfli.
    parameters: p_char type c.
    parameters:
    p_month(12) as listbox visible length 20,
    p_year as listbox visible length 20 .
    DATA:
    t_table TYPE STANDARD TABLE OF vrm_value,
    t_table1 TYPE STANDARD TABLE OF vrm_value,
    vrm_values1 LIKE LINE OF t_table.
    DATA:
    t_year TYPE STANDARD TABLE OF vrm_value.
    data: w_year(4) type n value '2000'.
    at selection-screen output.
    vrm_values1-key = 'a'.
    vrm_values1-text = 'January'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'p'.
    vrm_values1-text = 'February'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'q'.
    vrm_values1-text = 'March'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'r'.
    vrm_values1-text = 'April'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 's'.
    vrm_values1-text = 'May'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 't'.
    vrm_values1-text = 'June'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'u'.
    vrm_values1-text = 'July'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'v'.
    vrm_values1-text = 'August'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'w'.
    vrm_values1-text = 'September'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'x'.
    vrm_values1-text = 'October'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'y'.
    vrm_values1-text = 'November'.
    APPEND vrm_values1 TO t_table.
    vrm_values1-key = 'z'.
    vrm_values1-text = 'December'.
    APPEND vrm_values1 TO t_table.
    t_table1[] = t_table.
    delete t_table1 where text+0(1) <> p_char.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = 'p_month'
    values = t_table1
    EXCEPTIONS
    ID_ILLEGAL_NAME = 1
    OTHERS = 2.
    do 10 times.
    add 1 to w_year.
    vrm_values1-key = sy-index.
    vrm_values1-text = w_year.
    APPEND vrm_values1 TO t_year.
    enddo.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = 'p_year'
    values = t_year
    EXCEPTIONS
    ID_ILLEGAL_NAME = 1
    OTHERS = 2.
    start-of-selection.
    write: p_month.

  • How to put edited AE clips back into PPro? (CS5.5)

    Okay, so, here it goes.
    I edit my main footage in Premiere Pro. I recently purchased a denoising software that only is compatible with After Effects, so I have been using the denoiser plugin in After Effects. After I edit my basic video cut in Premiere, I select all of the clips (including audio) in the timeline, and open it in a new AE comp. After it has been opened, I do all of my major video touch ups in AE (such as denoising). Now, when I try to export the project as a Premiere Pro (PP) project and open it in Premiere, it doesn't load the project. It's just an empty sequence. That is not a big deal though, because I tried something else. I tried linking the AE composition from AE to PP which works, but it is very slow and precomposes all of the individual clips into one video clip.
    So, just to go over it again, this is what I did: Cut clips in PP > Selected all clips in the timeline of PP and opened them in a new AE comp > Edited the individual clips inside the AE comp w/ effects that are not supported by PP (only AE supports the denoiser effect) > opened the edited AE comp in PP > then the comp came up as a precomposed video clip instead of individual clips.
    So, my question is, how do I get the comp from AE to stay as individual clips when I open it in PP in case I need to adjust something? Is there a way to do this? Or should I just do the denoise effect very last?
    Two other things:
    (1) I noticed that it is extremely slow in PP to render parts of an AE comp... is it just because of the added effects?
    (2) I transcode my video footage to ProRes 422 before I bring them into PP. Once I bring the clips into AE and then back into PP (if I figure out how to), will the clips still be the same ProRes codec? I need them to be the same codec due to color grading and effects later on in post.
    Thank you SO MUCH if you can answer this! ANY help is appreciated! I explained this pretty much as good as I can, so if you don't understand my question, just ask, and I'll try to give you more info. Thanks!!

    I select all of the clips (including audio) in the timeline, and open it in a new AE comp.
    That's where you messed up.  Instead, right click on each clip you want to fix, and choose Replace with After Effects Composition.  Then redo your effects.

  • How to wrap an image around a mug in Photoshop CS5?

    I have tried many things like transform -> warp or tried to play with 3D but nothing gave me an effect like this image. Does anyone know a good tutorial or would like to explain to me how to wrap an image around a mug and make it look realistic like this?

    For Photoshop Elements
    Step A
    Select the Type Tool, type in your text
    .. then look at the top of the
    page
    You will see an arc with a T over it
    Click on that and you will be
    able to curve the text
    Step B
    There are 3 items to consider in order for this project to come out
    satisfactorily.
    A. The picture of the coffee mug needs to be properly
    sized, and enhanced
    B. Directions for the text above
    C. The picture for application to the mug needs to be
    configured so that its curvature conforms. I shall give you directions, but the
    values may require adjustment for your particular picture:
    Duplicate background layer, and shut off visibility by clicking on its eye
    icon
    Increase canvas size Image>resize>canvas
    size. Uncheck relative. Enter new values for width & height. Try 120% (+/-).
    You need more "real estate" for the next steps. The checkerboard pattern denotes
    transparency, which you want all around.
    Rotate picture. Image>rotate>layer, 90
    degrees right
    Filter>distort>spherize. Set mode to vertical only. Amount 100%
    Filter>distort>shear. Click center of control line, grab this center
    handle, and pull just a little to left
    Rotate picture back. Image>rotate>layer>90 degrees left
    Copy to clipboard, paste on picture of mug. Position and adjust size with
    move tool.
    Edit: Resolution of picture of mug and of picture to be applied should be about
    the same number. You can check this in Image>resize>picture size before you embark on
    above.

  • How to view .MOS files in Adobe Bridge and Photoshop CS5?

    I recently shot with a large format camera and used Capture One to tether during my shoot. I went home to look through my pictures and noticed that the files are .MOS files and they don't open in Bridge or Photoshop. How can I fix this?

    Apparently it depends also on whether .mos was shot with compressed or uncompressed format.  If uncompressed DNG will work http://www.luminous-landscape.com/forum/index.php?topic=11843.0;wap2

  • Slices in Save for Web not highlighting when selected in Photoshop CS5.5

    Lately I've just noticed when I select slices in Save for Web the newly selected areas do not highlight in their normal yellow colour. They are however selected and save correctly if I do save them. If I toggle slice visibility off and back on again they selected slices become highlighted but it's kind of a pain. Have I done something to cause this or is this a known issue with one of the updates?
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x64
    on a Dell Precision T1660 running Windows 8.0

    I just copy the preferences from my computer for you to see what are shown about adobe
    file:///Users/raymondsmith/Library/Preferences/Adobe/
    file:///Users/raymondsmith/Library/Preferences/Adobe%20Illustrator%20CS2%20Settings/
    file:///Users/raymondsmith/Library/Preferences/Adobe%20Photoshop%20CS2%20Paths
    file:///Users/raymondsmith/Library/Preferences/Adobe%20Photoshop%20CS2%20Settings/
    file:///Users/raymondsmith/Library/Preferences/Adobe%20Photoshop%20Elements%206%20Paths
    file:///Users/raymondsmith/Library/Preferences/Adobe%20Photoshop%20Elements%206%20Settings /
    file:///Users/raymondsmith/Library/Preferences/AdobeUM/
    file:///Users/raymondsmith/Library/Preferences/AppleWorks/
    file:///Users/raymondsmith/Library/Preferences/ByHost/
    file:///Users/raymondsmith/Library/Preferences/CD%20Info.cidb
    file:///Users/raymondsmith/Library/Preferences/CDDB%20Preferences
    file:///Users/raymondsmith/Library/Preferences/cfx%23FBSxPfw
    file:///Users/raymondsmith/Library/Preferences/com.adobe.acrobat.90.sh.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.Acrobat.Pro7.0.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.acrobat.sh.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.Acrobat.Uninstaller.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.Adobe%20Help%20Viewer.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.ami.installer.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.bridge2.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.mediabrowser.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.PhotoshopElements.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.Reader_ppc_9.0.plist
    file:///Users/raymondsmith/Library/Preferences/com.adobe.Reader.plist
    file:///Users/raymondsmith/Library/Preferences/com.aol.aim.plist

  • How do I get clipping paths to work in PhotoShop CS5?

    I've always used clipping paths to pull-out parts of images that I then save as eps files and bring into other images.
    For some reason, I can't get CS5 PS to capture only the path I created, instead it continues to capture the entire image.
    I normally create a path with the pen tool, save the path, identify it with the Clipping Path from the dropdown, then save out as an EPS. Has worked thousands of times for me in previous versions of PhotoShop, but not with CS5.
    Anyone else encounter this problem or have a solution?

    Ok, I did that but it's still reacting the same way. So I need to start from scrtach and build a new path? That can't b
    e. When I make the change and hit selection I am still getting an inverted selection. See.

  • How do I install a plug-in module into photoshop CS5 for a Sony Digital Photo PrinterUP-CR10L?

    I am trying to install a borders module for the Sony Digital Photo Printer UP-CR10L into photoshop CS5. I have copied the plug-in into the program file for Adobe plug-ins but it is not coming up in photoshop. What am I doing wrong?
    Thanks for your help.
    Sherri

    Hello imagesbysherri,
    Our Sony Professional Product team would be better equipped to assist you with this. You can find them on Facebook at www.facebook.com/SonyProUSA. I hope this helps.
    Best regards,
    Farley

  • How would I copy,paste, and erase in Adobe Photoshop CS5?(Easy points)

    Please explain the steps I would do in order to complete these tasks.Thank you.
    *The reason I am asking this is because customer service is unvailable to me and when I try to accomplish what I seem to be erasing,copying,and or pasting my actions end in failure.

    This Photoshop Elements Forum,
    Please post your query @ http://forums.adobe.com/community/photoshop

  • How do I update camera raw 6.3 on Photoshop CS5 Windows?

    I tried the help menu and updates but its not working. I have Nikon D7000 and I took pictures in RAW and they are NEF files that will not open in photoshop, hence the reason i am trying to update my camera raw plugin but I cant figure it out and ive contacting adobe 3 times with no luck. Help!

    You will need to do a manual update of the ACR 6.7 plug-in, which is the last version that will run with CS5.
    You'll need to download it from here (Windows version):
    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Camera Raw 6.7 Update
    There are installation instructions on the download page, which you need to follow to the letter.
    Good luck1

  • How do I process Canon G15 Raw files in Photoshop CS5?

    Hi - I have Photoshop CS5 and I'm having trouble processing Canon G15 Raw files. I downloaded the most recent Camera Raw converter but it didn't seem to wrong. I suspect I'm doing something wrong in the installation process. Thanks!!

    The G15 needs Adobe Camera Raw version 7.3 or higher. Unfortunately CS5 can’t be updated beyond ACR 6.7. But it is possible to download and install the free DNG converter to convert your CR2 files to the Adobe universal Raw format and the DNG files will open in CS5 (keep your originals as backups and for use in the camera manufactures software)
    Windows download (.exe file) click here DNG Converter 8.7.1
    Mac download (.dmg file) click here DNG Converter 8.7.1
    You can convert a whole folder of raw images in one click. See this quick video tutorial:
    You Tube click here for DNG Converter tutorial

Maybe you are looking for

  • Itunes crashes when importing music (v10.5.2.11, Win 7 (64))

    iTunes crashes whenever I try to import either a file or folder - regardless of the file format (e.g. WMA, MP3 etc.).  This is only a recent problem.  Is the only option to try to re-install iTunes?  Thanks for any assistance.  Dyswim

  • Push NOT working! please help

    I have a locked iphone 3GS with os3.1. yesterday i installed Ping! and it didn't work. i uninstalled it and installed it for about 4 times and still it didnt work. I restored my iphone and it didnt work also. I then read the faq of Ping! and they sai

  • Send KeyEvents to a TextField

    Hi, I have a small problem with sending Key events from code to a JTextField component. I use the EventQueue's postEvent method to post the event: Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(event) It seems, that the listeners associa

  • Can't establish VPN on windows client to OSX server

    Hi everyone, I'm stuck for a while now with a very annoying problem. I can't establish a VPN connection on a windows client to a OSX Server. It worked fine while we had OSX server 10.6. We recently updated to 10.8 and got this problem. I know some of

  • Creation of interactive PDF

    Hi every body , i want to know creation of interactive form and i want to use tht in my web dynpro ABAP application . i know how to use it in Web dynpro , but i dont know how to create it . can any body help and show me some docs in this i.e creation