How to convert Kuler swatch numbers for Quark

How can I use the swatch numbers in Kuler in Quark? I am not needing it to be perfect - but as close as I can get it. Is there a way to take the swatch numbers in Kuler and convert those to the Pantone or CMYK (etc.) settings in Quark? Thanks much for your kind help.

On kuler.adobe.com, when you click on the "Make changes to this theme and view color values" button (looks like 3 horizontal sliders) for a particular theme, you will see the color values listed at the bottom. These are in HSV, RGB, CMYK, LAB, and hex, so one of these should work for you.
Hope that helps!

Similar Messages

  • How to Convert spool which is for smartform output  to PDF?

    how to Convert spool which is for smartform output  to PDF?
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF' is not working for smartform output,
    if i use this there will be error spool not contain list output?
    than whats the function module or way to convert spool contain smartform output to pdg?
    regards,

    <b>Procedure</b>
         When we activate the Smartform the system generates a Function Module. The function module name we can get from Smartfrom screen from menubar
    “Environment => Function Module_Name” . In a report we can get this Function module name by calling a Function Module standard SSF_FUNCTION_MODULE_NAME. This function module  at runtime calls the FM generated by smartform, which in turn is then used to pass data from the report to Smartform. In the report given below the FM generated is “ /1BCDWB/SF00000152 ”. In this FM we can see CONTROL_PARAMETERS in import tab. This is of type SSFCTRLOP. We need to set the GETOTF of this to be ‘X’. Setting this field will activate the OTF field in smartform.
    In export tab of the FM generated by smartform we can see a parameter JOB_OUTPUT_INFO which is of type SSFCRESCL. The SSFCRESCL is a structure of having one of fields as OTFDATA. OTFDATA in turn is a table of type ITCOO. ITCOO has two fields TDPRINTCOM and TDPRINTPAR. TDPRINTCOM  represents command line of OTF format data and TDPRINTPAR contains command parameters of OTF format data.
    In every Smartform output in OTF format, TDPRINTCOM begins and ends with ‘//’. ‘EP’ represents the end-of-page value for TDPRINTCOM field.
    In addition we need to set few fields at the place where we call this FM(generated by smartform) in our program. While calling this FM we should set control_parameters, output_options, user_settings and job_putput_info fields as shown in program.
    Once these settings are done we can call Function Module CONVERT_OTF to convert the OTF data of smartfrom output to PDF data format. Once these are done we can call method “cl_gui_fronted_services=>file_save_dialog” to specify the directory path where we want to save the output PDF file. After this we can call Function Module GUI_DOWNLOAD to download the PDF file on our local system.
    <b>Here is a sample code of program to perform the function.</b>
    SAMPLE CODE
    [code]*&---------------------------------------------------------------------*
    *& Report  ZAMIT_SMART_FORM_PDF                                        *
    REPORT  ZAMIT_SMART_FORM_PDF                    .
    data: carr_id type sbook-carrid,
          cparam type ssfctrlop,
          outop type ssfcompop,
          fm_name type rs38l_fnam.
    DATA: tab_otf_data TYPE ssfcrescl,
          pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
          tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
          file_size TYPE i,
          bin_filesize TYPE i,
          FILE_NAME type string,
          File_path type string,
          FULL_PATH type string.
    parameter:      p_custid type scustom-id default 1.
    select-options: s_carrid for carr_id     default 'LH' to 'LH'.
    parameter:      p_form   type tdsfname   default 'ZAMIT_SMART_FORM'.
    data: customer    type scustom,
          bookings    type ty_bookings,
          connections type ty_connections.
    start-of-selection.
    ***************** suppressing the dialog box for print preview****************************
    outop-tddest = 'LP01'.
    cparam-no_dialog = 'X'.
    cparam-preview = SPACE.
    cparam-getotf = 'X'.
      select single * from scustom into customer where id = p_custid.
      check sy-subrc = 0.
      select * from sbook   into table bookings
               where customid = p_custid
               and   carrid in s_carrid
               order by primary key.
      select * from spfli into table connections
               for all entries in bookings
               where carrid = bookings-carrid
               and   connid = bookings-connid
               order by primary key.
      call function 'SSF_FUNCTION_MODULE_NAME'
           exporting  formname           = p_form
    *                 variant            = ' '
    *                 direct_call        = ' '
           importing  fm_name            = fm_name
           exceptions no_form            = 1
                      no_function_module = 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.
        exit.
      endif.
    * calling the generated function module
      call function fm_name
           exporting
    *                 archive_index        =
    *                 archive_parameters   =
                     control_parameters   = cparam
    *                 mail_appl_obj        =
    *                 mail_recipient       =
    *                 mail_sender          =
                     output_options       =  outop
                     user_settings        = SPACE
                     bookings             = bookings
                      customer             = customer
                      connections          = connections
          importing
    *                 document_output_info =
                     job_output_info      = tab_otf_data
    *                 job_output_options   =
           exceptions formatting_error     = 1
                      internal_error       = 2
                      send_error           = 3
                      user_canceled        = 4
                      others               = 5.
      if sy-subrc <> 0.
    *   error handling
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      tab_otf_final[] = tab_otf_data-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       format                      = 'PDF'
       max_linewidth               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    IMPORTING
       bin_filesize                = bin_filesize
    *   BIN_FILE                    =
      TABLES
        otf                         = tab_otf_final
        lines                       = pdf_tab
    EXCEPTIONS
       err_max_linewidth           = 1
       err_format                  = 2
       err_conv_not_possible       = 3
       err_bad_otf                 = 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.
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    *  EXPORTING
    *    WINDOW_TITLE         =
    *    DEFAULT_EXTENSION    =
    *    DEFAULT_FILE_NAME    =
    *    FILE_FILTER          =
    *    INITIAL_DIRECTORY    =
    *    WITH_ENCODING        =
    *    PROMPT_ON_OVERWRITE  = 'X'
      CHANGING
        filename             = FILE_NAME
        path                 = FILE_PATH
        fullpath             = FULL_PATH
    *    USER_ACTION          =
    *    FILE_ENCODING        =
    *  EXCEPTIONS
    *    CNTL_ERROR           = 1
    *    ERROR_NO_GUI         = 2
    *    NOT_SUPPORTED_BY_GUI = 3
    *    others               = 4
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *************downloading the converted PDF data to your local PC********
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       bin_filesize                    = bin_filesize
       filename                        = FULL_PATH
       filetype                        = 'BIN'
    *   APPEND                          = ' '
    *   WRITE_FIELD_SEPARATOR           = ' '
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    IMPORTING
       filelength                      = file_size
      TABLES
        data_tab                        = pdf_tab
    *   FIELDNAMES                      =
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22
    IF sy-subrc <> 0.
    ENDIF.
    [/code]
    Thanks and Regards,
    Pavankumar

  • How to find Sales order numbers for List of Deliveries

    Hi
    How to find Sales order numbers for List of Deliveries
    Thanks
    Muthu

    Hi,
    Open the delivery list.
    Select  a delivery, goto menubar, environmment, document flow.
    Here u can able to see the  order no. (but, here u can see one by one , not cumulatively)
    Regards
    Kaleeswaran

  • How do I get serial numbers for computers bought in the last seven years? They have been stolen but I am not in the country. Can I do it remotely?

    how do I get serial numbers for computers bought in the last seven years? They have been stolen but I am not in the country. Can I do it remotely?

    Check here first, and use your AppleID:
    https://supportprofile.apple.com/

  • Pages and numbers  Ipad : How to convert pages and numbers to word and xls?

    Hello everyone,
    I am currently using Pages and Numbers for Ipad. As I am currently working on these two programs and with their equivalent for PC (Word and Excel) for my research project, I would like to know how I can convert respectively the page and number format to word and xls, to use my documents both on my Ipad and my PC.
    - Is there a convert option in pages or numbers for IPad?
    - otherwise, is there suc an option in iwork.cim ?
    - if nothing of such kind exists on pages and numbers for Ipad and in iwork.com, is there any software which could do the conversion ?
    Thanks for your answers,
    John Molson

    Within Pages, you can export to MS Word, Pages, and PDF, but Numbers only exports to Numbers or PDF...
    Pages and Numbers on your Mac can convert the files to Word and Excel...
    Message was edited by: celliott147

  • How to convert pages into numbers

    How to convert documents in
    pages into numbers for processing

    I responded to you here > How to convert pages document into...: Apple Support Communities
    Please do not start duplicate topics 

  • How can I lock in numbers for use in a spreadsheet ap?

    How can I lock in numbers on my Ipad for use in a spreadsheet?

    There is a forum that deals exclusively with "Numbers" discussions:
    https://discussions.apple.com/community/iwork/numbers?view=discussions

  • How to convert jpeg to pdf for free?

    How to convert jpeg file to pdf file for free?

    You can also Download Acrobat XI Trial from the below link and Install it and use it for 30 days ....
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us

  • How to convert mp3 CD audiobook for ipod?

    I use Audiobook Builder to convert Auciobook CDs to an ipod-compatible bookmarkable format, and the program handles all of the steps transparently.  in iTune 10, how can I make this same conversion from an mp3 audiobook CD into iTunes?  I tried following the instructions for this from an earlier post on this discussion group, but have run into a problem.  When I select all of the MPEG audiofiles from the mp3 CD and instruct iTunes via the Advanced Menu to "Create AAC Version", iTunes says that it is converting the files track by track.  BUT, when it is done, I still have only MPEG audio files showing, no AAC converted files.  Thanks for any suggesions.

    Thank you for your posting, which is very helpful, however it will be better if you can post on the Video forum as well
    http://discussions.apple.com/forum.jspa?forumID=807
    By the way, I must say that it is a very good post

  • How to convert mp4 videos (HD) for use on the new ipad in imovie without a mac.

    Hi,
    Please help. I have many videos taken with my sony cybershot camera (Mpv4 (HD)). I have the new ipad and have downloaded imovie. I have converted the videos so they can be viewed on the ipad but imovie will not recognize them. I have a Pc (not a Mac) and have watched many youtube tutorials on how to convert my videos for use on the new ipad and imovie but so far no success.

    If you are on the PC there are a LOT of video converters you can use. One of them is Freemake: http://www.freemake.com/
    It's free, no ads or banners, clean interface, simple to use, and you can convert to various formats with ease.

  • How to convert existing Flex project for iPhone?

    Hi guys, I have a serious problem here with creating iPhone apps in Flash. I have created an app for the iPhone completely using Flex components long before CS5 came out. I've been looking for tutorials but with no luck. My issue is that I am not very sure how to convert the app to be used on iPhone.
    As I've read the forums, some of you suggested compiling using command line. I guess that would be awesome. However, would it work if I'm using Flex framework? I've already tried to import my .SWF in Flash using loader.load() and add the mx.* component using addChild(VideoExample) I need just some solution that would save me days of searching and rewriting code, but any solution will be good. I have started a similar thread in Flash but if I get any answers here I will delete it.
    Please respond, help would be very much appreciated!
    Here's my mxml wrapper, from which I start the main application:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="EntryPoint.main()">
    </mx:Application>
    Then I have a class which creates the main container:
    package {
    import mx.core.*;
    public class EntryPoint {
        public static function main():void {
            var client:VideoExample = new VideoExample();
            var mxmlApp:Application = Application(Application.application);
            mxmlApp.addChild(client);
    Here is the main class VideoExample:
    package {
    import mx.controls.*;
    import mx.containers.*;
    public class VideoExample extends Canvas {
        public function VideoExample() {
            super();
            init();
            private function init():void {
            loadImage();
            loadText();
                    loadDisplay();
                    startConnection();

    I'm so sorry, I'm not really familiar with the codes.

  • How to block wrong serial numbers for goods receipt.

    "while doing grn via migo t code serial numberes are entered wrongly.
    means current serial number is 4 digits 2000,2001,2002,,, but  8 digit serial numbers(20002001) are entered wrongly in migo  ,101m type. when i am going to do grn for that materiall it is taking 8 digit serial number
    how to block those 8 digit serial numbers? How to continue current serial number series as(2000)"
    how to initialize serial numbers for a particular material

    This means that you are not mapped as a worker in the system
    Go to HRMS resp..create employment...then go to sysadmin user form and query the user for which u want to associate..
    then in the person field map the user which u created employment
    Then you should be able to access the all the purchasing forms
    Mahendra

  • How to convert movies to itunes for my itouch4g

    pls help i dnt know how to convert my movies so that i can pu it to my itouch4g

    Download the app vlc media player from the app store. Its free. All you have to do is drag and drop it into the app via itunes and itll convert it for you. Then just go into the app on the ipod and watch.

  • How to convert MP4 to MP3 for export

    I want to convert an MP4 file in my iTunes library to MP3 for export via email. I know how to convert a CD on import by the preferences settings. And I know I can burn an MP3 CD. I just want to take a simgle MP4 file in my library, and convert it to MP3 in order to share with someone who can't read MP4.

    Ah so that's how it works.
    I understand now. Thanks.
    ~iBook G4 1.07GHz (Kaiya), with extra 256MB RAM ~and a red Apple logo~(Mac OS X 10.3.9)~ LaCie 160GB external hard drive~ ~3G 15GB iPod (Nakai)~ ~GiveStarsto users who earn them.~

  • I use a French bluetooth keyboard how do i lock the numbers for doing calculations? Does anybody know? i.e. the numbers are above the top row of keys and you have to use the shift key to access them.  You can't use the cap lock key to lock the numbers.

    How do I lock the numbers on a French keyboard if I'm using a small blue tooth keyboard with no number pad?

    How do I lock the numbers on a French keyboard if I'm using a small blue tooth keyboard with no number pad?

Maybe you are looking for