I have a PDF format document I want to use to attach to an application, however, it still has the "adobeacrobat.html" at the end of it; how do you getr rid of it?

    How do you get rid of the "adobeacrobat.html" thing at the end of my PDF documents?

I googled PDF Optimizer and there were several free PDF Optimizer downloads listed. They appeared to be from different companies; FyTek, cvisiontech, softpedia, etc. Is there one that is better for getting rid of of my error message?
I am familiar with the concept of preflighting files; but I don't have any software that does this. Can you suggest one?
Thank you for your helpful response. - Carol

Similar Messages

  • Q re sync. I have deleted photos on my iMac going from 20,000 to 11,000. My iPad still has the 20,000. If I sync the 2 hopefully I will end up with only 11,000 on both devices but before I sync I want to make certain I won't end up 20,000 again

    sync between desktop and iPad

    Sorry, been away for quite a while....to clarify....
    When you sync photos from iTunes, you overwrite the last set of photos that you synced unless you select them to sync to the iPad again. All photos have to be included/selected in every sync, and if any photos are not selected to sync, those photos will be erased. Since the photos no longer exist on your Mac, it is impossible for them to reappear on the iPad when you sync again. You have nothing to worry about ad long as the photos have been deleted from the Mac.

  • I have children's books in Japanese, Chinese and Arabic that I am trying to convert into epub formats that ibookstore will accept. My source docs are in ms word or pdf format. I want to use ibooks author for this purpose. Can anyone suggest a solution?

    Is there an easy way of importing the children's books into ibooks author? There is an image on every other page. The books has to be in fixed layout format.
    Any help will be sincerely appreciated. I understand that ibookstore will accept only epub 3.0 formats for Japanese titles. As I stated earlier, my objective is to make those language books available in ibookstore.

    The books has to be in fixed layout format
    If you mean keep the same as original, I wouldn't expect to retain that, sorry.
    You'd be obligated to either copy/paste in sections/blocks of text, images, etc. or insert from Pages/Word, but either way you can expect to have to rework towards whatever 'fixed' layout you need in an iBA book....that can mean significant work in some examples.
    You may want to work with a sample to find out the best workflow in any case.
    As for Arabic support, see this thread: Does iBook Author support Arabic...: Apple Support Communities
    Good luck.

  • HT204053 I have multiple apple id and i want to use newly created id for app down load. it has default id that i can not change I

    I have multiple apple I'd and default I'd comes up. I want to change with new I'd. How can I do that?

    iOS: Changing the signed-in iTunes Store account
              http://support.apple.com/kb/HT1311

  • Converting spool request into multiple pdf formated documents

    Hi Guys,
                 I am designing a report with several pages of output and running it in background.
    Is there a possibility to convert each page into an separate pdf format document ?
    If I use ALV report as output, if its more than page, do I face any issue with pdf conversion.
    Thanks

    Check the Following code, This might be helpful:
    form rstxpdft4 using filename.
    * Read spool job contents (OTF or ABAP list) and convert
    * to PDF, download PDF
      data: download  value 'X'.
      data: lv_filename like rlgrap-filename.
      lv_filename = filename.
      data otf like itcoo occurs 100 with header line.
      data cancel.
      data pdf like tline occurs 100 with header line.
      data doctab like docs occurs 1 with header line.
      data: numbytes type i,
            arc_idx like toa_dara,
            pdfspoolid like tsp01-rqident,
            jobname like tbtcjob-jobname,
            jobcount like tbtcjob-jobcount,
            is_otf.
      data: client like tst01-dclient,
            name like tst01-dname,
            objtype like rststype-type,
            type like rststype-type.
      select single * from tsp01 where rqident = gt_rq-rqident.
      if sy-subrc <> 0.
        write: / 'Spool request does not exist', gt_rq-rqident
                color col_negative.
        exit.
      endif.
      client = tsp01-rqclient.
      name   = tsp01-rqo1name.
      call function 'RSTS_GET_ATTRIBUTES'
           exporting
                authority     = 'SP01'
                client        = client
                name          = name
                part          = 1
           importing
                type          = type
                objtype       = objtype
           exceptions
                fb_error      = 1
                fb_rsts_other = 2
                no_object     = 3
                no_permission = 4.
      if objtype(3) = 'OTF'.
        is_otf = 'X'.
      else.
        is_otf = space.
      endif.
      if is_otf = 'X'.
        call function 'CONVERT_OTFSPOOLJOB_2_PDF'
             exporting
                  src_spoolid              = gt_rq-rqident
                  no_dialog                = ' '
             importing
                  pdf_bytecount            = numbytes
                  pdf_spoolid              = pdfspoolid
                  btc_jobname              = jobname
                  btc_jobcount             = jobcount
             tables
                  pdf                      = pdf  .
      else.
        call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
             exporting
                  src_spoolid              = gt_rq-rqident
                  no_dialog                = ' '
             importing
                  pdf_bytecount            = numbytes
                  pdf_spoolid              = pdfspoolid
                  btc_jobname              = jobname
                  btc_jobcount             = jobcount
             tables
                  pdf                      = pdf
    *************** download PDF file ***********
    v_filename = lv_filename.
    *  call function 'WS_DOWNLOAD'
    *       exporting
    *            bin_filesize            = numbytes
    *            filename                = lv_filename
    *            filetype                = 'BIN'
    *       tables
    *            data_tab                = pdf
    *       exceptions
    *            file_open_error         = 1
    *            file_write_error        = 2
    *            invalid_filesize        = 3
    *            invalid_type            = 4
    *            no_batch                = 5
    *            unknown_error           = 6
    *            invalid_table_width     = 7
    *            gui_refuse_filetransfer = 8
    *            customer_error          = 9
    *            others                  = 10.
    *  if sy-subrc <> 0.
    ** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    **         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *  else.
    *    gv_count = gv_count + 1.
    *  endif.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE                    = numbytes
        FILENAME                        = v_filename
        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'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    *   WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    *   SHOW_TRANSFER_STATUS            = ABAP_TRUE
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = pdf .
    *   FIELDNAMES                      =
    Thanks.

  • HT4623 I want to upgrade my iPad but it always says that it has the latest upgrade. But I'm only on iOS 5. How can I bypass this?

    I want to upgrade my iPad but it always says that it has the latest upgrade. How do I get the latest one?
    I want to upgrade my iPad but it always says that it has the latest upgrade. But I'm only on iOS 5. How can I bypass this?

    The original iPad can't be updated past 5.1.1.
    (90356)

  • I have a pdf File tht I want to convert to a word program.  how do I do that?

    I have a pdf file that I want to convert to a word program.  How do I do that?

    Hi Patrick,
    You have subscribed for this service yesterday, uaually it would take 24 hrs to get this service activated. I can see that your service is now up and running.
    Kindly check the below mentioned article on how to get started with ExportPDF:
    http://forums.adobe.com/docs/DOC-2412
    Let me know if you have any issue while accessing the service,
    Regards,
    ~Pranav

  • I have an IPhone 4, and I wanted to reset it, but couldn't do it via computer because the "find my IPhone" was turned on. So I went to ICloud Find My IPhone and just erased my phone from there. The was acting weird but I finally got to a black scre

    I have an IPhone 4, and I wanted to reset it, but couldn't do it via computer because the "find my IPhone" was turned on. So I went to ICloud > Find My IPhone and just erased my phone from there. The was acting weird but I finally got to a black screen with the spinning circle. And it won't advance. I can't just hold the sleep button and home button down because my sleep button is broken! Any help? I have reset my phone before.

    Hello cwypyski,
    The link below provides information on and can also assist with setting up service for your iPhone to have your Sleep/Wake button repaired.
    Service Answer Center - iPhone
    http://support.apple.com/kb/index?page=servicefaq&product=iphone
    All my best,
    Allen

  • 2 New Ipads (Retina and Mini)(New to Apple) How do I share purchased apps, but others have each act independently? Mini is for the Wife the Ipad4? is for me. I want to use mine at work, etc. She's home with the kids. Can we set them up seperate, but share

    2 New Ipads (Retina and Mini)(New to Apple) How do I share purchased apps, but others have each act independently? Mini is for the Wife the Ipad4? is for me. I want to use mine at work, etc. She's home with the kids. Can we set them up seperate, but share
    --break--
    So we are entirely new to Apple products. I'm an IT guy, but have always been a windows user.
    So the Ipad with Retina Display is to be mine (and will use it at work for notes, organization, etc)
    The MINI is for the wife.
    But, are we allowed and can we.. buy an app and share that app between both devices? IE. Can I buy a copy of Angry Birds for the House and both Ipad's use that single purchase? and if so, can we still run the Ipads seperate other than to share the apps purchased. IE my facebook and email set up on mine and hers on her ipad mini?
    When I finally find a note taking app I like, can I share it on her ipad, without her having all my work files, etc?
    Thanks for helping out the apple noob. Hoping for a great experience, and anticipate droping $100 in apps the first day.. just don't want to do that twice. If this is against the usage policy, thats unfortunate but good to know. (I mean we can share stuff on PC as long as its in the same household)
    thanks again (explanations or links are fine)

    There are a number of Apple services: iMessage, FaceTime, iCloud, Game center, Find My iPad, etc.
    Now, to share apps, music and books you need to have the same Apple ID:
    iPad's Settings > iTunes & App Stores > Apple ID > Your purchasing Apple ID.
    For the other service, your wife should have her own Apple ID.
    All she needs is a valid e-mail address, apply Apple ID below:
    https://appleid.apple.com
    Here's a limk with useful tips: Note: It's also valid in IOS 6
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family

  • I have 2 iphones in the family and want to use itunes match on both devices, but my husband has his own itunes acct, how can he use the main itunes library and get out music on his phone also

    I have 2 iphones in the family and want to use itunes match on both devices, unfortunately my husband has his own itunes acct and when i change on his phone to my itunes acct it states that the email is already in use, any help on how to get the itunes match to go onto both devices, thanks

    "Method Three
    Create a separate iTunes library for each device. Note:It is important that you make a new iTunes Library file. Do not justmake a copy of your existing iTunes Library file. If iTunes is open,quit it.
    This one may work. I searched and searched on the website for something like this, I guess I just didn't search correctly, lol. I will give this a try later. My daughter is not be back for a few weekends, therefore I will have to try the Method 3 when she comes back for the weekend again. "
    I forgot to mention that she has a PC at her house that she also syncs to. Would this cause a problem. I am already getting that pop up saying that the iPod is synced to another library (even though she is signed in with her Apple ID to iTunes) and gives the pop up to Cancel, Erase & Sync, or Transfer Purchases. My question arose because she clicked on "Erase & Sync" by mistake when she plugged the iPod to her PC the first time. When the iPod was purchased and setup, it was synced to my PC first. When she went home, she hooked it up to her PC and then she erased it by accident. I was able to restore all the missing stuff yesterday using my PC. However, even after doing that it still told me the next time I hooked it up last night that the iPod was currently synced with a different library. Hopefully, you can help me understand all this. She wants to sync her iPod and also backup her iPod at both places. Both PCs have been authorised. Thanks

  • I have an iPad 2 and want to use video mirroring. I bought a VGA adapter for the iPad, iPhone and iPod so that I could plug the iPad into any monitor, TV, projecter, etc without it being an HD device. I plug it in and it appears the monitor has no communi

    I have an iPad 2 that I want to use with video mirroring to give lectures with. I bought a VGA Adapter for the iPad, iPhone, and iPod as I want to be able to connect with any TV, monitor or projector for lectures, not just an HD device.. After plugging in my iPad to the VGA adapter and then to the video device, it appears that there is no connection with the iPad. Anybody have any thoughts?
    Thanks, Steve

    This article outlines how to use the Apple AV adapter or VGA Adapter to connect your iPhone 4, iPhone 4S, iPad, or iPod touch (4th generation) to an external TV, projector, or display. http://support.apple.com/kb/HT4108
    This explains how to set up AirPlay Mirroring, and how to troubleshoot AirPlay Mirroring issues that may occur between your iPhone, iPad and Apple TV (2nd generation).  http://support.apple.com/kb/TS4085

  • HT204053 I have an apple ID that I want to use it for icloud, but when I Set it, i got below message

    I have an apple ID that I want to use it for icloud, but when I Set it, i got below message
    I could requires an apple id that Is an email address ( [email protected] address )
    Please help me
    <Email Edited by Host>

    Your gmail address is still your apple id. Just when you activate your mail and notes, it asks you to create icloud e-mail, which is completely separate and allows you to have one more e-mail address. Just some extra benefit, you don't have to pay for, but useful to save your notes and send e-mail or two if Google server goes down.

  • I still have 5 Gb icloud storage but 2.1 gb on iphone I want to upgrade to 6.0 but need 2.6 gb on my phone can i use icloud to free up some space and still access the apps that I store there on my iphone

    i still have 5 Gb icloud storage but 2.1 gb on iphone I want to upgrade to 6.0 but need 2.6 gb on my phone can i use icloud to free up some space and still access the apps that I store there on my iphone.

    No.
    You need to delete content from your iphone.

  • HT1689 i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    It sounds like it still has her information on it, so it might be efficient to navigate to Settings, then General, then Reset, then Erase All Content and Settings. You can then set up the phone again, using your information. This way the phone will be yours, officially, and her data and information will be removed.

  • I have a new time capsule (replace my old time capsule).  I want to erase my old one.  My computer does not see the old one anymore, how do I connect it (the old TC is not connected to modem)

    I have a new time capsule (replace my old time capsule).  I want to erase my old one.  My computer does not see the old one anymore, how do I connect it (the old TC is not connected to modem).  I want to erase it and then use it as either a second hard drive (sired/sirelesly?) or as a hard drive/bridge.  So,
    1.  why doesn't my cmputer see the old TC
    2  once i have solved that, how do I erase the old one
    3.  Can I use the old one as a supplemental hard drive
         a.  wired?
         b. wirelessly?
    4.  Can I use the old one as a range extender?
    I know .. a lot of questions but I would appreciate any help.
    Thanks

    sgetraer wrote:
    I have a new time capsule (replace my old time capsule).  I want to erase my old one.  My computer does not see the old one anymore, how do I connect it (the old TC is not connected to modem).  I want to erase it and then use it as either a second hard drive (sired/sirelesly?) or as a hard drive/bridge.  So,
    1.  why doesn't my cmputer see the old TC
    2  once i have solved that, how do I erase the old one
    3.  Can I use the old one as a supplemental hard drive
         a.  wired?
         b. wirelessly?
    4.  Can I use the old one as a range extender?
    I know .. a lot of questions but I would appreciate any help.
    Thanks
    1. Because it is either the same IP as the new one or hidden by being plugged in as a second router.
    To access it, isolate one computer from the existing network and plug it directly by ethernet to a lan port of the TC. Use the erase function in the TC to remove all the content of the hard disk.
    Then go to the internet tab, connection sharing and select off bridged. You can then reconnect the TC to the network.. and the computer as well. The TC will act as bridged device.. getting IP from the main router and should then appear correctly in Airport utility.
    2. I covered in 1. But you just go in airport utility manual setup. disk, and you will see the erase function. You can also set it to bridge and leave the erase until you put it back in the network.. but be careful you erase the right one.
    3. You can use the old TC via wired or wireless.. although I would always stick to wired connection if possible. Speed on wireless is 10x worse than wired.
    Also note the reliability goes down dramatically after 2 years.. a series 1 3 years old or more is ebay fodder unless you want to repair it. Do not trust vital data to it.. when it dies you will have issues recovering it.
    4. Yes, all apple routers will function as wireless extenders. when you do that the ethernet ports turn off so it becomes a purely wireless device.. strange apple decision on what you want to use your TC for.

Maybe you are looking for