How to save custom presets in Recolor Artwork?

I'm using Illustrator CC 2014 18.1 on a Windows machine and I would like to uncheck the 'preserve white and black' boxes in the Color Reduction options of Recolor Artwork and save it as a preset. PFA, the image for reference. The default settings load up every time illustrator is launched. Having to change it every time is pretty inconvenient.
Also, have the issues with actions that use scripts been resolved? My actions that have scripts do not load on every launch.
Thank you for your help.

Hi Monika
Tried reading the prefs file, and the only thing I could find closest to the Color Reduction Options panel was this:
/ColorHarmony {
    /HarmonyDialogRecolorArtCheckbox 1
    /ShowStorage 1
    /ShowAdjustSliders 0
    /SliderColorSpace 3
    /mapMethodPreserveSpots 1
    /mapMethodApplyToAll 1
    /combineTintsOnExtraction 1
    /ShowHideColorGuide 1
    /VariationTypeColorGuide 0
looks like the Recolor Artwork panel with the Recolor Artwork Checkbox option. Any suggestions?
@Ton, have filed the same. Looking forward to seeing it sorted out.

Similar Messages

  • How to save Custom control records through module pool program ?

    Hi guru ,
    1. How to save Custom control records through module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi,
    can refer following code -
    IN PAI , CODE is as follows-
    *&      Form  editor_output
    FORM editor_output .
    NARRATION1 is name of custom controller
      IF v_editor IS INITIAL.
      Create obejct for custom container
        CREATE OBJECT v_custom_container
          EXPORTING
            container_name              = 'NARRATION1'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      Create obejct for the TextEditor control
        CREATE OBJECT v_editor
          EXPORTING
            wordwrap_mode              = cl_gui_textedit=>wordwrap_at_fixed_position
            wordwrap_position          = line_length
            wordwrap_to_linebreak_mode = cl_gui_textedit=>true
            parent                     = v_custom_container
          EXCEPTIONS
            error_cntl_create          = 1
            error_cntl_init            = 2
            error_cntl_link            = 3
            error_dp_create            = 4
            gui_type_not_supported     = 5
            OTHERS                     = 6.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFORM.                    " editor_output
    getting textdata in internal table as follows
    *&      Form  create_text
    FORM create_text .
      REFRESH : it_texttable,
                it_text.
      IF v_doc_number IS NOT INITIAL.
        IF v_editor IS NOT INITIAL.
          CALL METHOD v_editor->get_text_as_r3table
            IMPORTING
              table                  = it_texttable
            EXCEPTIONS
              error_dp               = 1
              error_cntl_call_method = 2
              error_dp_create        = 3
              potential_data_loss    = 4
              OTHERS                 = 5.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    Now, our final text data is in internal table it_texttable.
    pls, Reward if found helpful.

  • How to save Custom control records ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    REPORT  ZCUSTOMC.
    CLASS event_handler DEFINITION.
      PUBLIC SECTION.
        METHODS: handle_f1 FOR EVENT f1 OF cl_gui_textedit
                 IMPORTING sender,
                 handle_f4 FOR EVENT f4 OF cl_gui_textedit
                 IMPORTING sender.
    ENDCLASS.
    DATA: ok_code LIKE sy-ucomm,
          save_ok LIKE sy-ucomm.
    DATA: init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit.
    DATA: event_tab TYPE cntl_simple_events,
          event     TYPE cntl_simple_event.
    DATA: line(256) TYPE c,
          text_tab LIKE STANDARD TABLE OF line,
          field LIKE line.
    DATA handle TYPE REF TO event_handler.
    START-OF-SELECTION.
      line = 'First line in TextEditControl'.
      APPEND line TO text_tab.
      line = '----
      APPEND line TO text_tab.
      line = '...'.
      APPEND line TO text_tab.
      CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT: container EXPORTING container_name = 'TEXTEDIT',
                       editor    EXPORTING parent = container,
                       handle.
        event-eventid = cl_gui_textedit=>event_f1.
        event-appl_event = ' '.                     "system event
        APPEND event TO event_tab.
        event-eventid = cl_gui_textedit=>event_f4.
        event-appl_event = 'X'.                     "application event
        APPEND event TO event_tab.
        CALL METHOD: editor->set_registered_events
                     EXPORTING events = event_tab.
        SET HANDLER handle->handle_f1
                    handle->handle_f4 FOR editor.
      ENDIF.
      CALL METHOD editor->set_text_as_stream EXPORTING text = text_tab.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'INSERT'.
          CALL METHOD editor->get_text_as_stream IMPORTING text = text_tab.
        WHEN 'F1'.
          MESSAGE i888(sabapdocu) WITH text-001.
        WHEN OTHERS.
          MESSAGE i888(sabapdocu) WITH text-002.
          CALL METHOD cl_gui_cfw=>dispatch.      "for application events
          MESSAGE i888(sabapdocu) WITH text-003.
      ENDCASE.
      SET SCREEN 100.
    ENDMODULE.
    CLASS event_handler IMPLEMENTATION.
      METHOD handle_f1.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-004.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>set_new_ok_code   "raise PAI for
             EXPORTING new_code = 'F1'.           "system events
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
      METHOD handle_f4.
        DATA row TYPE i.
        MESSAGE i888(sabapdocu) WITH text-005.
        CALL METHOD sender->get_selection_pos
             IMPORTING from_line = row.
        CALL METHOD sender->get_line_text
             EXPORTING line_number = row
             IMPORTING text = field.
        CALL METHOD cl_gui_cfw=>flush.
      ENDMETHOD.
    ENDCLASS.
    aniruddh

  • How to save Custom control records module pool program ?

    Hi guru ,
    1. How to save Custom control records module pool program ?
    I wrote multiple lines of record in custom control
    Who to save that records ?
    thanking you.
    Regards,
    Subash.

    Hi Subasha,
    Please check the format below since it is based on a working code
    **************data declarations
    TYPES: BEGIN OF TY_EDITOR,
    EDIT(254) TYPE C,
    END OF TY_EDITOR.
    data: int_line type table of tline with header line.
    data: gw_thead like thead.
    data: int_table type standard table of ty_editor.
    You should create a text for uniquely identifying the text you are saving each time so that it doesn't get overwritten
    For this a key combination must be decidedd to uniquely identify the test..here it is loc_nam
    ****************fill header..from SO10( t-code )
    GW_THEAD-TDNAME = loc_nam. " unique key for the text
    GW_THEAD-TDID = 'ST'. " Text ID
    GW_THEAD-TDSPRAS = SY-LANGU.
    GW_THEAD-TDOBJECT = 'ZXXX'. "name of the text object created
    *Read Container and get data to int_table
    CALL METHOD EDITOR ->GET_TEXT_AS_R3TABLE
    IMPORTING
    TABLE = int_table
    EXCEPTIONS
    ERROR_DP = 1
    ERROR_CNTL_CALL_METHOD = 2
    ERROR_DP_CREATE = 3
    POTENTIAL_DATA_LOSS = 4
    others = 5.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop data from int_table and save to int_line-tdline appending it.
    *save the text
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    HEADER = GW_THEAD
    TABLES
    LINES = InT_LINE
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5.
    IF SY-SUBRC 0.
    ENDIF.
    The code shown above is ok and working fine for save also,hope that the above sample with helps you solve the problem
    Please check and revert,
    Reward if helpful
    Regards
    Byju

  • How to save custom settings

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    I know of rooVid but it does not work for leopard.
    Please advise thanks.

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    MPEG Streamclip (free) will allow you to save named "Presets" which can be recalled/loaded as needed when using Streamclip to perform the various exports via the QT/QT component structure embedded in the current OS. (I.e., the created file is not for use by QT Pro itself.)

  • How to save effect presets

    Hi,
    I know how to save and recall effect presets added to a clip, but:
    how can I recall a preset to insert it in the master track of the audio mixer?
    Thanks for your kind help
    Lluís

    You can't.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • How to save a preset of eg. a transform - so you can re-use it again...

    Hi.
    Imagine that you add several pictures as part of a video...
    On the first picture you apply several adjustments like transform, cropping etc.
    Is it possible to save these presets - so you easily can apply them to the remaining or selected pictutres, instead of having to redo them all again....as this can be incredible time consuming.
    Any way this can be done?
    Br.
    Jens

    You can copy and paste effects from one clip to multiple clips.

  • How to save custom Producer Kits?

    Hello.
    I've been trying to save a complete custom mixed/edited producer kit with no succes.
    There's an article how to load, edit and save the patches, but I haven't been able to make the custom saved producer kits to appear in the library or even in the finder. The saved instrument appears on the Library image window, but not in the library. Has anyone succeeded with saving pre-mixed multichannel drum kits?
    I would like to use this in other songs too...

    Thanks Art, CCTM and KC
    Oh how I wish to say these advices resolved the problem - but no...
    I followed through these steps:
    In the Finder, choose Go to Folder from the Go menu.
    Type ~/Library/Preferences in the "Go to the folder" field.
    Press the Go button.
    Remove the com.apple.logic10.plist file from the Preferences folder. Note that if you have programmed any custom key commands, this will reset them to the defaults. You may wish to export your custom key command as a preset before performing this step. See the Logic Pro X User Manual for details on how to do this. If you are having trouble with a control surface in Logic Pro X, then you may also wish to delete the com.apple.logic.pro.cs file from the preferences folder.
    If you have upgraded from an earlier version of Logic Pro, you should also remove~/Library/Preferences/Logic/com.apple.logic.pro.
    Restart the computer.
    I found the plist files from the ~/Library/Preferences folder and deleted them
    I also deleted
    Then restarted - no cure
    Then I did the same but deleted all files including "logic" from the Preferences. Then checked out all the User accounts of this computer with the same procedure. I deleted also the Mainstage PLISTS just to make sure.
    Then I emptied the Trash and restarted - but no cure
    Then I did that all again and deleted the Logic Pro X app - restarted and reinstalled it.
    That didn't help either.
    I also tried to save different PATCHes using SAVE on the Library low-right corner.
    I wasn't sure where to save them, but the Labrary didn't create any User Folder or those custom patches.
    Not even after using refresh library...
    What about Garageband, Final Cut Pro or some other app - could they cause this?
    What do you think? Do I have to start from a scratch to build up the system installing every app one by one again to make this work? That would be **** of a job...
    I'm beginning to feel like a kid complaining about something and nothing seems to help.
    Thanks for your patience and all the advice you've given.
    If you have any other ideas- keep them coming

  • How to "save" custom objects in keynote

    I've created custom art / objects in keynote that I'd like to reuse and quickly insert into presentations.  Is there a way to "store" or "save" the custom artwork in my version of keynote for quick recall?

    Hi, Offline edition doesnt support custom objects or any other object that is not available as part of the default offline solution. Hope it helps
    -- Venky CRMIT

  • How to save custom metadata display in CS4.2?

    I know this has been asked in the past, but no one has come up with an answer I can find.
    Here's what happens: in the project bin, I click Metadata Display, click the Premiere Project Metadata line, unclick the metadata I don't want to see, save the settings as My Setting, and go on with my day.  The settings remain the same UNTIL I close the propject and open it back up and all the settings go back to default.  So I open the Metadata Display back up from the project bin to reload my saved, custom settings...the (custom) bar is greyed out and not selectable, so I have to go through and do this all over.
    Essentially, Premiere is NOT saving the custom settings.  Why is this happening?  It worked when I had 4.1.  What's going on?

    do a chain and endchain on the fields.Then insert the fields in to the required database.

  • How to save customized skin (via Intel graphics) from session to session

    Hi-I'm a novice so hopefully there's an easy resolution. I've customized the Firefox theme using Intel HD graphics "color enhancement." Even though the coloring setting are saved via the Intel card, when I start a new Firefox session the theme reverts to the original shadings. I can change back to my customized theme by opening the Intel Control Center but I'd like to avoid that step.
    Is there a way to keep my settings as default without fiddling with css editing which I'm too stupid to do? Thanks for any thoughts

    Thanks for responding! It's a trivial issue but with OCD I can spend hour after hour trying to get things as I want them.
    I found Flaminglow as a theme that was a bit unique. But I wanted the saturation, contrast, etc. altered, which I did with Intel graphics program that was pre-installed. I can save the color enhancement i.e. "a" scheme, "b", etc. with Intel. But when I restart the pc it reverts to the default colors of Flaminglow and I have to go to the Intel program and enter the saved scheme. I don't want to have to do that each time I turn the PC on. I've included a screenshot of the homepage and one of the Intel control center.
    I thought that perhaps a session saving add on may work but just don't know. Make any sense, lol? Thanks

  • How to save tool presets as brush presets?

    I have some tool presets that would be very useful, but I normally just go to brush presets, which i have organized and which provide greater flexibility. Is there a way to turn "tool" into a "brush"? Going through defining brush presets, forced me to adjust all kind of things, but as tool presets they are already perfect. There has to be a way to do it easier! Hope you can help.

    gener7 wrote:
    Btw, just heard LinkIn just brought Lynda.com. Hope it doesn't become a train wreck under the new management.
    Gene
    I'll ad a giant AOL 'Me Too' to that Gene.  I don't blame Lynda and Bruce when there is $1.5b on the table, but I think it a sad reflection on our times that a dot.com that has questionable worth to our society, can afford to pay so much money for a genuinely useful service like Lynda.com.  Apparently they started with $20k and have built it up with no outside help, so they are sitting pretty right now.
    My concern is that the focus of Lynda.com does not shift even remotely towards business type courses, and away from creative.  BTW  I am absolutely loving my Lynda subscription.  It seems that no matter what the subject, if you ever get stuck on something, there is a world class course to put you straight. As regards Photoshop, I considered myself at least an expert, yet I have been able to find game changing new tips on almost a daily basis.  Or sometimes just a better way of doing things.  It absolutely helps to go into the expert courses with a good working knowledge, because it means you pick up the content straight away, and hopefully remember it. 
    Somebody was smiling down on me the day I was about to commit $250 for a year's subscription, and literally as I sat down at the computer, there was a ping to tell me a new email had arrived, and it turned out to be offering that same subscription for $150.  I suspect the apparent coincidence was driven by my recent visits to the site, but if that email had arrived ten minutes latter, I'd have been down a $100.  :-)

  • Is There A Way To Create Custom Presets For Sharing/Exporting?

    First-time iMovie users, long-time Mac enthusiast.
    VERY impressed with how easy this wonderful application is to learn, but the inability to save custom presets exporting to Quicktime is puzzling.
    iMovie6 does remember the settings I specified in "Expert Settings", but it'd be great to save it as "canned preset" that would show up w/all the other ones (Email, CD-Rom, Web, etc).
    Is this just another feature I've yet to discover, or is it possible at all? Or is it the first roadblock I've encountered where extra ca$h is needed for another product?
    many thank u's in advance.

    .. the key to using a Mac is to think less..
    this is EXACTLY the Mac-experience.. and that is, why PCusers often call us "computer illiterate" .. we don't want to know, what a bios is, a batch file, a bitrate..
    my father-in-law spends 90% of his time with re-installs, set-ups, drivers.. and in the meantime, I create movies and dvds ...
    maybe a bit of TOO much glory, but still saying it all:
    http://www.youtube.com/watch?v=No1MxAnHuJM
    come back here often, share your experiences, dare to ask any question.. there's no dumb question, just dumb answers
    have fun with iM and your Mac ...

  • Figured out how to print to 11x17 with Acrobat (but how to save or do this in Preview?)!

    after about a year and a half of doing the digital equivalent of walking into a very large building that is totally blacked out - and bumping around endlessly until i found a light swich - i am not able to print to 11x17 out of Acrobat on the Mac.
    i have posted the steps below and when i recover from this herculean taks i am going to try and tackle printing to 12 x 18.
    i just took another look at PREVIEW and i am afraid that it is going to take me another year and a half to figure out Preview and/or Numbers etcetera - so if anyone has any tips on printing to 11x17 or 12x18 in these two programs i would be uber happy to get the instructions for this.
    also, if has ANY IDEAS on how to save this set of preferences so that i can simply print to 11x17 without going through all of these steps each time it would be great. i have not figured out how to save the presets and it is going to make me unhappy especially when i have to print 20 pages at a time.
    thanks!

    here's documentation on getting 12 x 18 plots out of this machine.
    LET ME KNOW IF YOU FIGURE OUT HOW TO SAVE THESE TO A PRESET.
    thanks...
    https://discussions.apple.com/message/23217426#23217426

  • Is there a way in Final Cut Pro 7 to save custom Batch Export settings?

    Is there a way in Final Cut Pro 7 to save custom Batch Export settings?

    Don't think so.  Years ago, I seemed to figure out a way in an earlier version of fcp, but when I tried to recreate it, I couldn't make it work.
    You can send to compressor and save custom presets there.

Maybe you are looking for

  • Excel Pivot (molap) will not refresh from an SSAS box that is not part of the Farm

    I have spent hours trying to get this working going through many links.  One of the best ones is this. http://whitepages.unlimitedviz.com/2010/12/connecting-to-cubes-and-external-data-with-excel-in-sharepoint/ However even after doing all of this it

  • Function module for reading service line items of a po

    function module for reading service line items of a po.............I want to read data from eslh and esll tables to getthe service line details..... My requirement is if the item category is 9 I need to print the service line items. So I wan to read

  • IMic, a blast from the past

    I'm still using OS 10.2.6. I have an older iMic that I bought when I purchased the G3 dual USB four years ago. Never took it out of the package until this evening when I was going to transfer some audio tape to CD. Has anyone out there ever gotton th

  • Po Pending

    how can i get the stock of po's lineitem wise? and po must open or pendding,.... if it help full then reward full. Message was edited by:         patel paresh

  • Retriggerable pulse task

    Hi all.  I am looking for this file. 1. Retriggerable Pulse Task  2. SCXI Analog Input Task For your information, I was given a task to do some enhancement for my project. However, I can't these two sub.vi from the file neither in the example. The or