Do you know of a way to adjust overall color using an existing CMYK value?

I'm attempting to match some color swatches as closely as possible. I don't have a color spectrometer so thought I'd try shooting and photograph of the swatches and adust them to values as close as possible to the actual. To do it, I included a Pantone Color Bridge book in the photograph, so I know the exact CMYK formula for one of the values in the photo. I'm wondering if there is a way of kind of reverse-engineering the image based on the value?
Thanks in advance.

"Use the Apple VGA Adapter to mirror whatever’s on your iPad or iPhone 4S screen — apps, presentations, websites, and more — on your VGA-equipped TV, display, projector, or other compatible display in up to 1080p HD. Video mirroring is supported on iPad 2 or later and iPhone 4S. "
http://store.apple.com/us/product/MC552ZM/B/apple-vga-adapter
Verify that you computer support vga input.
other software to try:
http://www.airserver.com/Mac
more listed here:
http://apple.stackexchange.com/questions/61956/can-i-use-a-mac-mini-as-an-airpla y-audio-receiver

Similar Messages

  • Anyone know of a way to adjust the top and side MARGINS of a document printed from iOS numbers? The default margins are too wide. Need more working space.

    Anyone know of a way to adjust the top and side MARGINS of a document printed from iOS numbers? The default margins are too wide. Need more working space.

    Open the document,
    Tap the Tools icon (upper right).
    Tap Document Set up.
    Drag the margins to the position you wish (the actual margin width sould display as you are doing this).

  • I have an app idea project going on but I have no access to itunes connect so I can send my idea to the app developers and see what their opinion is about it.Do you know any other ways that can help me promote my idea so it can be further developed?

    I have an app idea project going on but I have no access to itunes connect so I can send my idea to the app developers and see what their opinion is about it.Do you know any other ways that can help me promote my idea so it can be further developed?

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • Is there a way to adjust the color of the Finders file labels?

    is there a way to adjust the color of the Finders file labels?

    Apple has never been good with themes or finder preferences or anything like that. From a marketing and business point of view in the past I would guess they think consistency and therefore exerted brand loyalty outweighs customization, and anyone who really wants to get their own experience will be on linux anyways.
    Nowadays coverflow, expose, smartfolders, aliases and spotlight reduce the need to differentiate between multiple files on the system by a seperate indicator and a colour.

  • Do you know of a way to show iPad content on my Mac for webinars?

    I do demonstrations over webinars of content on an iPad, so I need to use Airplay to link my iPad to my Mac. I have been using Reflector but it is not consistent, and now doesn' work at all.
    Is there a reliable method I could use to ensure that I will be able to demonstrate content, do you know if there is a VGA lead available to link iPad to Mac?
    Thank you for your help in advance internet folk!

    "Use the Apple VGA Adapter to mirror whatever’s on your iPad or iPhone 4S screen — apps, presentations, websites, and more — on your VGA-equipped TV, display, projector, or other compatible display in up to 1080p HD. Video mirroring is supported on iPad 2 or later and iPhone 4S. "
    http://store.apple.com/us/product/MC552ZM/B/apple-vga-adapter
    Verify that you computer support vga input.
    other software to try:
    http://www.airserver.com/Mac
    more listed here:
    http://apple.stackexchange.com/questions/61956/can-i-use-a-mac-mini-as-an-airpla y-audio-receiver

  • How do you know which fields are mandatory while uploading PO using BAPI.

    How do you know which fields are mandatory while uploading PO data using BAPI. in a structure how do you know which fields are mandatory.
    and also, where how do you check that, the BAPI function module is executed.
    Thanks in Advance.
    Naveen.

    hi
    hope it will help you.
    Reward if help.
    REPORT zpo_bapi_purchord_tej.
    DATA DECLARATIONS *
    TYPE-POOLS slis.
    TYPES: BEGIN OF ty_table,
    v_legacy(8),
    vendor TYPE bapimepoheader-vendor,
    purch_org TYPE bapimepoheader-purch_org,
    pur_group TYPE bapimepoheader-pur_group,
    material TYPE bapimepoitem-material,
    quantity(13),
    delivery_date TYPE bapimeposchedule-delivery_date,
    net_price(23),
    plant TYPE bapimepoitem-plant,
    END OF ty_table.
    TYPES: BEGIN OF ty_alv,
    v_legs(8),
    success(10),
    v_legf(8),
    END OF ty_alv.
    TYPES: BEGIN OF ty_alv1,
    v_legf1(8),
    v_msg(500),
    END OF ty_alv1.
    *-----Work area declarations.
    DATA: x_table TYPE ty_table,
    x_header TYPE bapimepoheader,
    x_headerx TYPE bapimepoheaderx,
    x_item TYPE bapimepoitem,
    x_itemx TYPE bapimepoitemx,
    x_sched TYPE bapimeposchedule,
    x_schedx TYPE bapimeposchedulx,
    x_commatable(255),
    x_alv TYPE ty_alv,
    x_alv1 TYPE ty_alv1,
    x_alv2 TYPE ty_alv1.
    *-----Internal table declarations.
    DATA: it_table TYPE TABLE OF ty_table,
    it_commatable LIKE TABLE OF x_commatable,
    it_item TYPE TABLE OF bapimepoitem,
    it_itemx TYPE TABLE OF bapimepoitemx,
    it_sched TYPE TABLE OF bapimeposchedule,
    it_schedx TYPE TABLE OF bapimeposchedulx,
    it_alv TYPE TABLE OF ty_alv,
    it_alv1 TYPE TABLE OF ty_alv1,
    it_alv2 TYPE TABLE OF ty_alv1.
    DATA: po_number TYPE bapimepoheader-po_number,
    x_return TYPE bapiret2,
    it_return TYPE TABLE OF bapiret2,
    v_file TYPE string,
    v_temp(8),
    v_succsount TYPE i VALUE 0,
    v_failcount TYPE i VALUE 0,
    v_total TYPE i.
    DATA: v_temp1(5) TYPE n VALUE 0.
    DATA: x_event TYPE slis_t_event,
    x_fieldcat TYPE slis_t_fieldcat_alv,
    x_list_header TYPE slis_t_listheader,
    x_event1 LIKE LINE OF x_event,
    x_layout1 TYPE slis_layout_alv,
    x_variant1 TYPE disvariant,
    x_repid2 LIKE sy-repid.
    DATA : it_fieldcat TYPE TABLE OF slis_t_fieldcat_alv.
    SELECTION-SCREEN *
    SELECTION-SCREEN BEGIN OF BLOCK v_b1 WITH FRAME.
    *-----To fetch the flat file.
    PARAMETERS: p_file TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK v_b1.
    AT SELECTION-SCREEN *
    AT SELECTION-SCREEN.
    IF p_file IS INITIAL.
    MESSAGE text-001 TYPE 'E'.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *-----To use F4 help to find file path.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = p_file.
    v_file = p_file.
    START-OF-SELECTION *
    START-OF-SELECTION.
    PERFORM gui_upload.
    LOOP AT it_table INTO x_table.
    PERFORM header_details.
    v_temp = x_table-v_legacy.
    LOOP AT it_table INTO x_table WHERE v_legacy = v_temp.
    PERFORM lineitem.
    PERFORM schedule.
    ENDLOOP.
    DELETE it_table WHERE v_legacy = v_temp.
    PERFORM bapicall.
    MOVE po_number TO x_alv-success.
    APPEND x_alv TO it_alv.
    CLEAR x_alv.
    *-----To clear the item details in internal table after the operation for a header.
    REFRESH: it_item,
    it_itemx,
    it_sched,
    it_schedx.
    CLEAR: v_temp1.
    ENDLOOP.
    v_total = v_succsount + v_failcount.
    PERFORM display_alv.
    FORM GUI_UPLOAD *
    FORM gui_upload .
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = v_file
    filetype = 'ASC'
    TABLES
    data_tab = it_commatable
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17
    IF sy-subrc = 0.
    *-----To fetch the comma seperated flat file into an internal table.
    LOOP AT it_commatable INTO x_commatable.
    IF x_commatable IS NOT INITIAL.
    SPLIT x_commatable AT ',' INTO
    x_table-v_legacy
    x_table-vendor
    x_table-purch_org
    x_table-pur_group
    x_table-material
    x_table-quantity
    x_table-delivery_date
    x_table-net_price
    x_table-plant.
    APPEND x_table TO it_table.
    ENDIF.
    CLEAR x_table.
    ENDLOOP.
    ENDIF.
    ENDFORM. " gui_upload
    FORM HEADER_DETAILS *
    FORM header_details .
    MOVE 'NB' TO x_header-doc_type.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = x_table-vendor
    IMPORTING
    output = x_table-vendor
    MOVE x_table-vendor TO x_header-vendor.
    MOVE x_table-purch_org TO x_header-purch_org.
    MOVE x_table-pur_group TO x_header-pur_group.
    x_headerx-doc_type = 'X'.
    x_headerx-vendor = 'X'.
    x_headerx-purch_org = 'X'.
    x_headerx-pur_group = 'X'.
    ENDFORM. " header_details
    FORM LINEITEM *
    FORM lineitem .
    v_temp1 = v_temp1 + 10.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = v_temp1
    IMPORTING
    output = v_temp1.
    MOVE v_temp1 TO x_item-po_item.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = x_table-material
    IMPORTING
    output = x_table-material.
    MOVE x_table-material TO x_item-material.
    MOVE x_table-quantity TO x_item-quantity.
    MOVE x_table-net_price TO x_item-net_price.
    MOVE x_table-plant TO x_item-plant.
    x_itemx-po_item = v_temp1.
    x_itemx-material = 'X'.
    x_itemx-quantity = 'X'.
    x_itemx-net_price = 'X'.
    x_itemx-plant = 'X'.
    APPEND x_item TO it_item.
    APPEND x_itemx TO it_itemx.
    CLEAR: x_item, x_itemx.
    ENDFORM. " lineitem1
    FORM SCHEDULE *
    FORM schedule .
    MOVE x_table-delivery_date TO x_sched-delivery_date.
    MOVE v_temp1 TO x_sched-po_item.
    x_schedx-delivery_date = 'X'.
    x_schedx-po_item = v_temp1.
    APPEND x_sched TO it_sched.
    APPEND x_schedx TO it_schedx.
    CLEAR: x_sched, x_schedx.
    ENDFORM. " schedule
    FORM BAPICALL *
    FORM bapicall .
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    poheader = x_header
    poheaderx = x_headerx
    IMPORTING
    exppurchaseorder = po_number
    TABLES
    return = it_return
    poitem = it_item
    poitemx = it_itemx
    poschedule = it_sched
    poschedulex = it_schedx.
    IF po_number IS NOT INITIAL.
    v_succsount = v_succsount + 1.
    MOVE x_table-v_legacy TO x_alv-v_legs.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ELSE.
    v_failcount = v_failcount + 1.
    MOVE x_table-v_legacy TO x_alv-v_legf.
    MOVE x_table-v_legacy TO x_alv1-v_legf1.
    LOOP AT it_return INTO x_return.
    IF x_alv1-v_msg IS INITIAL.
    MOVE x_return-message TO x_alv1-v_msg.
    ELSE.
    CONCATENATE x_alv1-v_msg x_return-message INTO x_alv1-v_msg SEPARATED BY space.
    ENDIF.
    ENDLOOP.
    APPEND x_alv1 TO it_alv1.
    CLEAR x_alv1.
    ENDIF.
    ENDFORM. " bapicall
    FORM DISPLAY_ALV *
    FORM display_alv .
    PERFORM x_list_header.
    PERFORM build_fieldcat CHANGING x_fieldcat.
    x_repid2 = sy-repid.
    x_event1-name = 'TOP_OF_PAGE'.
    x_event1-form = 'TOP_OF_PAGE'.
    APPEND x_event1 TO x_event.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = x_repid2
    is_layout = x_layout1
    it_fieldcat = x_fieldcat
    i_callback_user_command = 'USER_COMMAND'
    i_callback_top_of_page = 'TOP_OF_PAGE'
    i_save = 'A'
    is_variant = x_variant1
    it_events = x_event
    TABLES
    t_outtab = it_alv
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " display_master_data
    FORM USER_COMMAND *
    FORM user_command USING ucomm LIKE sy-ucomm selfield
    TYPE slis_selfield.
    READ TABLE it_alv INTO x_alv INDEX selfield-tabindex.
    CLEAR : x_alv2,it_alv2[].
    LOOP AT it_alv1 INTO x_alv1 WHERE v_legf1 = x_alv-v_legf.
    x_alv2 = x_alv1.
    APPEND x_alv2 TO it_alv2 .
    ENDLOOP.
    DATA : it_fieldcat TYPE slis_t_fieldcat_alv.
    DATA : x3_fieldcat LIKE LINE OF it_fieldcat.
    CLEAR : x3_fieldcat,it_fieldcat[].
    CLEAR x3_fieldcat.
    x3_fieldcat-col_pos = '1'.
    x3_fieldcat-fieldname = 'V_LEGF1'.
    x3_fieldcat-reptext_ddic = text-111.
    x3_fieldcat-ref_tabname = 'IT_ALV2'.
    APPEND x3_fieldcat TO it_fieldcat.
    CLEAR x3_fieldcat.
    CLEAR x3_fieldcat.
    x3_fieldcat-col_pos = '1'.
    x3_fieldcat-fieldname = 'V_MSG'.
    x3_fieldcat-reptext_ddic = text-112.
    x3_fieldcat-ref_tabname = 'IT_ALV2'.
    APPEND x3_fieldcat TO it_fieldcat.
    CLEAR x3_fieldcat.
    x_layout1-colwidth_optimize = 'X'.
    x_layout1-zebra = 'X'.
    IF it_alv2[] IS NOT INITIAL.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = x_repid2
    is_layout = x_layout1
    it_fieldcat = it_fieldcat
    i_save = 'A'
    i_callback_top_of_page = 'TOP'
    is_variant = x_variant1
    it_events = x_event
    TABLES
    t_outtab = it_alv2
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    ENDIF.
    ENDFORM.
    FORM USER_COMMAND *
    FORM top.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = 'Commentry'.
    ENDFORM.
    FORM BUILD_FIELDCAT *
    FORM build_fieldcat CHANGING et_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: x1_fieldcat TYPE slis_fieldcat_alv.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '1'.
    x1_fieldcat-fieldname = 'V_LEGS'.
    x1_fieldcat-reptext_ddic = text-108.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '2'.
    x1_fieldcat-fieldname = 'SUCCESS'.
    x1_fieldcat-key = 'X'.
    x1_fieldcat-reptext_ddic = text-109.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    x1_fieldcat-col_pos = '3'.
    x1_fieldcat-fieldname = 'V_LEGF'.
    x1_fieldcat-key = 'X'.
    x1_fieldcat-reptext_ddic = text-110.
    x1_fieldcat-ref_tabname = 'IT_ALV'.
    APPEND x1_fieldcat TO et_fieldcat.
    CLEAR x1_fieldcat.
    ENDFORM. " build_fieldcat
    FORM BUILD_LIST_HEADER *
    FORM x_list_header.
    DATA: x_list_header1 TYPE slis_listheader.
    *-----List Header: type H
    CLEAR x_list_header1 .
    x_list_header1-typ = 'H'.
    x_list_header1-info = text-105.
    APPEND x_list_header1 TO x_list_header.
    *-----List Key: type S
    x_list_header1-typ = 'S'.
    x_list_header1-key = text-106.
    x_list_header1-info = v_total.
    APPEND x_list_header1 TO x_list_header.
    *-----List Key: Type S
    CLEAR x_list_header1 .
    x_list_header1-typ = 'S'.
    x_list_header1-key = text-107.
    x_list_header1-info = v_succsount.
    APPEND x_list_header1 TO x_list_header.
    ENDFORM. " build_list_header
    FORM TOP_OF_PAGE *
    FORM top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = x_list_header.
    ENDFORM. " TOP_OF_PAGE

  • Way to CAPTURE style and use on existing TEXT?

    Lets say you have a document.
    You decide GREY works better than RED, so you change the first HEADER to GREY, now I want to change 4 more headers.
    Is there a way, like in photoshop/fireworks/indesign, where you can use something like an eyedropper, select the font/color in the document and then apply that style to existing text?
    Thanks!

    Under the Format menu, you can use Copy Paragraph Style and Copy Character Style, and then (in the same menu) Paste Style to change text. (You can also add icons for these menu items to the toolbar -- in the View menu, choose Customize Toolbar.)
    That said, you will likely be happier if you use named paragraph styles, and apply them to the text you have. That way, if you have headings all in the same style, a change to one will (potentially) change all of them. See the Pages help for information on styles.

  • My Daughter started deleting contacts without asking me first...which proceeded to delete them all from my phone as they synced via the cloud . Do you know of a way to get them back?

    My daughter got an ipod and we set it up using my itunes account and icloud. Unfortunatley all my contacts transfered across to her ipod and before asking me she deleted them all which in turn has deleted from my i phone. Is there any way I can get them back?

    Unfortunately there's no way to get back the contacts you deleted unless he backed them up somewhere else.  He'll just have to recreate them.  This happened because you are both syncing contacts with a shared iCloud account.  When you do this, the synced data is merged and any actions you take on one phone (such as deleting contacts) is also reflected on the other.  To fix this you both need to have separate iCloud accounts (you can continue to share the same Apple ID for purchasing from the iTunes and app stores).  To do this, on your phone go to Settings>iCloud and turn all data that is syncing with iCloud (contacts, calendars, etc.) to Off.  When prompted choose to keep the data on the iPhone.  After everything is turned off, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The other phone will not be effected by this.)  Next, set up a new iCloud account on your phone using a different Apple ID and turn iCloud data syncing for contacts, etc. back to On.  When prompted, choose Merge.  This will upload your data to your new account.  At this point you will have two different iCloud accounts, one for each phone, with identical data on them.
    You will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the unwanted data (such as deleting the your husband's contacts from your account, and vice versa).  These changes will be reflected on each phone.  When finished you will have individual iCloud accounts with just your own data on them.

  • Do you know about the way for saving any monitoring context to file

    I want to save text file(s) with any log or info. about the status of managed target(s).
    But I could not find the answer.
    Please, let me know... Is this enable or not?
    If enable... How could I do that?
    Regards...

    Refer to...
    # I have adopted this script and make the plain file(sql) of (data, schema, any table) on any SunMC Database.
    #!/bin/sh
    DBname=$1
    Tablename=$2
    Username=$3
    Portno=5433
    DATEymdhm=`date '+%Y%m%d%H%M'`
    NO=01
    # Backup of (Schema, Data) on any DB and any table
    pg_dump -p ${Portno} -U ${Username} -t ${Tablename} -W -f ${DBname}_${Tablename}_all-${DATEymdhm}-${NO}.txt ${DBname}
    sleep 3
    # Backup of (Table) on any DB and any table
    pg_dump -p ${Portno} -U ${Username} -t ${Tablename} -a -W -f ${DBname}_${Tablename}-${DATEymdhm}-${NO}.txt ${DBname}
    Edited by: whatsthis on 2012. 2. 9 오후 7:04

  • I cannot click on tabs in any website, do you know why? I can do it when using Internet Explorer but not firefox.

    I have used Mozilla Firefox for years, but all of a sudden I cannot put my curser over a tabs on any website and click on it. What I mean is the top of the websites have words you can click on to go to other pages or in the email system it has tab buttons that allow you look at your inbox or close or save draft, it doesn't allow the curser to click on it. I can go to the tool bar put my curser in that and use the tab button on the key board to tab over to each word or link and then click enter and it will then go to that next page.

    Both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How do you know what the password on the ipad is using itunes

    My Ipad is locked but someone told me I can use itunes to figure out the password.

    There are two different locking mechanisms:  passcode, prevents access to your data,  and activation lock, prevents use of device if stolen.  You do not want the students setting the activation lock.
    If the passcode is set & forgotten , you can reload from backup or wipe ( first typed whip ) the device.
    iPhone or iPad locked from incorrect passcode.
    If you enter the wrong passcode six or more times, you'll see a message that says Ipad is disabled.
    See how to restore from backup.  No back up on your computer, click on the triangle before "If you have never synced your device with iTunes, or you do not have access to a computer"
    http://support.apple.com/kb/ht1212
    http://support.apple.com/en-us/HT1212
    The problem arises when someone sets the activation lock which is set by logging onto your apple id then setting the appropriate option.   DEP is the preferred preventative.  It established your organization as the owner.  The student cannot set an activation log.
    Undoing the Activation lock
    iCloud: Activation Lock
    To remove this lock without your apple id and password, you need to contact apple with proof of ownership.
    http://support.apple.com/kb/PH13695?viewlocale=en_US
    See Texas Mac Man post in
    https://discussions.apple.com/thread/6528124

  • Do you know if there is any mica i can use to hide a rupture of my ipod screen

    it is a very small rupture and im not willing to spend 100$ in a new screen for almost nothing

    I am not aware of any such fix.  If you are concerned, apply a screen protector.

  • Do you know a great mac antivirus?

    I am thinking of downloading things using torrents, but then i'll need a great antivirus. Do you know a great one, for this kind of use?

    Hi...
    Viruses are not so much the issue for Macs but malware can be.
    Great help here >  Thomas' Corner : Mac Virus Guide
    Torrents can cause problems...

  • Do you know of any free wireframes for iPad app development?

    Do you know of any free wireframes that would be used for ipad development? Im looking for an easy and user friendly wireframe to develop an app.

    See Wireframe iOS design apps for iPad? .
    Or give more details on exactly what you need for your work, etc.

  • Ok Apple users...Is there a way to delete e-mails on my Mac and not have to delete the same e-mails on my iPhone, and iPad...and vise-versa. I have the Cloud, and thought that everything would sync all of the time. If you know of a setting I need to adjus

    Ok Apple users...Is there a way to delete e-mails on my Mac and not have to delete the same e-mails on my iPhone, and iPad...and vise-versa. I have the Cloud, and thought that everything would sync all of the time. If you know of a setting I need to adjust, please let me know.

    Are you referring to @mac.com, @me.com or @icloud.com emails? Or some other email providers emails?
    If the former, it should do that automatically. If the latter, no. iCloud does not (nor is it supposed to) sync non-Apple provided emails.

Maybe you are looking for

  • How can I switch iTunes accounts without losing purchases?

    When I purchased my wife an iPhone, I made the mistake of setting her iPhone up on my iTunes account. It had never been a problem until now with iCloud and other such features that are connected with the iTunes account. Is it possible to switch her t

  • MM Catchup

    Dear Gurus, I'm undergoing to do the MM Catch up ,example from November 2008 till September 2009.Let say we do the PR/PO/GR/LIV for Nov 2008 and at the same time we key in the PR for the December 2008 till September 2009 without close/open MM period.

  • How to get file name for failed request in JSOM

    hello friends, i am uploading files to sharepoint 2013 document library. due to some problem when a file is not uploaded request is failed and failed callback handler is executed. at this time how i can know for which file has not been uploaded. as i

  • ALV hirarchial report - Printing.

    Hi, When number of items excceds the page, header details has to print once again  in new page while the report print. can any bopdy tell me, how i can do this. Regards, Sri

  • Layout and Colors etc.

    Hi I wonder how the layout of a map is defined with Oracle Spatial. How is it descided that lakes are blue and roads are black etc? Mapinfo uses sometingh called Map Definition File (.mdf). Can it be used with Map Extreme or is it any similar way to