Can I use Adobe acrobat SDK for commercial products of our company.

Hi Adobe guys,
One of our new project need to  print a pdf file (Application form) from local computer. So I'm looking for some API to print PDF files and I heard about acrobat SDK provide by Adobe. So my question is can I use this SDK for our companey commercial product development?

Sure.
Of course, the user will need to have either Acrobat or Reader installed – depending on which APIs you choose to use.

Similar Messages

  • Can I use adobe illustrator fonts for commercial purposes?

    Hi,
    I have purchased adobe illustrator CS4. Does this mean I can use any of the fonts installed in the program for commercial purposes?
    I am currently doing a t-shirt design and want to use the font Verdana in the design. I plan to reprint and sell this t-shirt indefinitely.
    Is this legal?
    Kay.

    you can use the fonts you can even send the fonts to the printer you can certainly use them on the web, when you send the font it is usually only for the convenience of not having the Print House load the fonts, but since most font hoses have illustrator it is not a problem they have the fonts as well.
    They only keep the fonts with your job if you send it. For instance if you send them a project with a font that is part of their font library hen they will ask you to send them even if another client has  or is using that font. if they get 10 or so instance were the same font shows up and they think it is a trend they buy the font as a convenience for their customers.You can not distribute the fonts to other user not even free fonts.
    But sending it part of the job is fine, printers have no interest starting up with the large foundry houses and they understand the copyright laws and would put themselves in a bad light if they broke this ethic so it is not going to happen for $30.00 for a font.
    You are fine you bought Illustrator and so you have a license for them.
    One difference between the fonts you get from Illustrator and and the ones you purchase is that the ones you purchase are allowed to be installed on five machines usually and the fonts that are included with Illustrator can only be installed with the copy of Illustrator, technically that means two machines.
    But the way it works since you can install the same Illustrator on as many machines as you want but can only activate it on two an use on one of those two at any one time it is possible that you would be in violation of your license since the fonts do not need Adobe activation to be available for other applications.
    So it you're doing that then you're a felon buddy!

  • I've been using Adobe Acrobat 7 for many years. I updated my full version of Acrobat 5 to get to 7. My hard drive crashed and I've been trying to reinstall Acrobat and it will not install. Adobe will not help because 7 is no longer supported. Does anyone

    I've been using Adobe Acrobat 7 for many years. I updated my full version of Acrobat 5 to get to 7. My hard drive crashed and I've been trying to reinstall Acrobat and it will not install. Adobe will not help because 7 is no longer supported. Does anyone know where I can go for help?

    You won't be able to install your original Acrobat 7 at all, or use your original serial number. The server which used to allow this was switched off.
    But assuming you have a compatible system, like Mac OS 5 or Windows XP, licensed users of Acrobat 7 can download a replacement and get a replacement serial number.
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • Load PDF From Memory using Adobe Acrobat SDK

    Load PDF From Memory using Adobe Acrobat SDK

    //The below variables are global;
    DWORD FileSize;//size of main PDF file
    char * lpBuffer;//PDF buffer,please save binary PDF data into this buffer
    DWORD dwDataSize;//size of main PDF file
    DWORD dwDataIndex;//is a pointer for lpBuffer position.ex. lpBuffer[dwDataIndex]
    //write the following code in the initialzation of your application
    ASFileSys myFileSys;
    memset (&MyFileSys, 0, sizeof(ASFileSysRec));
    MyFileSys.size = sizeof(ASFileSysRec);
    MyFileSys.open = ASCallbackCreateProto (ASFileSysOpenProc, MyASFileSysOpenProc);
    MyFileSys.close = ASCallbackCreateProto (ASFileSysCloseProc, MyASFileSysCloseProc);
    MyFileSys.flush = ASCallbackCreateProto (ASFileSysFlushProc, MyASFileSysFlushProc);
    MyFileSys.setpos = ASCallbackCreateProto (ASFileSysSetPosProc, MyASFileSysSetPosProc);
    MyFileSys.getpos = ASCallbackCreateProto (ASFileSysGetPosProc, MyASFileSysGetPosProc);
    MyFileSys.seteof = ASCallbackCreateProto (ASFileSysSetEofProc, MyASFileSysSetEofProc);
    MyFileSys.geteof = ASCallbackCreateProto (ASFileSysGetEofProc, MyASFileSysGetEofProc);
    MyFileSys.read = ASCallbackCreateProto (ASFileSysReadProc, MyASFileSysReadProc);
    MyFileSys.write = ASCallbackCreateProto (ASFileSysWriteProc, MyASFileSysWriteProc);
    MyFileSys.remove = ASCallbackCreateProto (ASFileSysRemoveProc, MyASFileSysRemoveProc);
    MyFileSys.rename = ASCallbackCreateProto (ASFileSysRenameProc, MyASFileSysRenameProc);
    MyFileSys.isSameFile = ASCallbackCreateProto (ASFileSysIsSameFileProc, MyASFileSysIsSameFileProc);
    MyFileSys.getName = ASCallbackCreateProto (ASFileSysGetNameProc, MyASFileSysGetNameProc);
    MyFileSys.getNameAsASText = ASCallbackCreateProto (ASFileSysGetNameAsASTextProc, MyASFileSysGetNameAsASTextProc);
    MyFileSys.getTempPathName = ASCallbackCreateProto (ASFileSysGetTempPathNameProc, MyASFileSysGetTempPathNameProc);
    MyFileSys.copyPathName = ASCallbackCreateProto (ASFileSysCopyPathNameProc, MyASFileSysCopyPathNameProc);
    MyFileSys.diPathFromPath = ASCallbackCreateProto (ASFileSysDiPathFromPathProc, MyASFileSysDiPathFromPathProc);
    MyFileSys.pathFromDIPath = ASCallbackCreateProto (ASFileSysPathFromDIPathProc, MyASFileSysPathFromDIPathProc);
    MyFileSys.disposePathName = ASCallbackCreateProto (ASFileSysDisposePathNameProc, MyASFileSysDisposePathNameProc);
    MyFileSys.getFileSysName = ASCallbackCreateProto (ASFileSysGetFileSysNameProc, MyASFileSysGetFileSysNameProc);
    MyFileSys.getStorageFreeSpace = ASCallbackCreateProto (ASFileSysGetStorageFreeSpaceProc, MyASFileSysGetStorageFreeSpaceProc);
    MyFileSys.flushVolume = ASCallbackCreateProto (ASFileSysFlushVolumeProc, MyASFileSysFlushVolumeProc);
    MyFileSys.createPathName = ASCallbackCreateProto (ASFileSysCreatePathNameProc, MyASFileSysCreatePathNameProc);
    MyFileSys.getItemProps = ASCallbackCreateProto (ASFileSysGetItemPropsProc, MyASFileSysGetItemPropsProc);
    MyFileSys.firstFolderItem = ASCallbackCreateProto (ASFileSysFirstFolderItemProc, MyASFileSysFirstFolderItemProc);
    MyFileSys.nextFolderItem = ASCallbackCreateProto (ASFileSysNextFolderItemProc, MyASFileSysNextFolderItemProc);
    MyFileSys.destroyFolderIterator = ASCallbackCreateProto (ASFileSysDestroyFolderIteratorProc, MyASFileSysDestroyFolderIteratorProc);
    MyFileSys.urlFromPath = ASCallbackCreateProto (ASFileSysURLFromPathProc, MyASFileSysURLFromPathProc);
    MyFileSys.getParent = ASCallbackCreateProto (ASFileSysGetParentProc, MyASFileSysGetParentProc);
    MyFileSys.createFolder = ASCallbackCreateProto (ASFileSysCreateFolderProc, MyASFileSysCreateFolderProc);
    MyFileSys.removeFolder = ASCallbackCreateProto (ASFileSysRemoveFolderProc, MyASFileSysRemoveFolderProc);
    MyFileSys.displayStringFromPath = ASCallbackCreateProto (ASFileSysDisplayStringFromPathProc, MyASFileSysDisplayStringFromPathProc);
    MyFileSys.setTypeAndCreator = ASCallbackCreateProto (ASFileSysSetTypeAndCreatorProc, MyASFileSysSetTypeAndCreatorProc);
    MyFileSys.getTypeAndCreator = ASCallbackCreateProto (ASFileSysGetTypeAndCreatorProc, MyASFileSysGetTypeAndCreatorProc);
    //These need to be implemented for 7.0 Windows
    MyFileSys.acquirePlatformPath = ASCallbackCreateProto (ASFileSysAcquirePlatformPathProc, MyASFileSysAcquirePlatformPathProc);
    MyFileSys.releasePlatformPath = ASCallbackCreateProto (ASFileSysReleasePlatformPathProc, MyASFileSysReleasePlatformPathProc);
    //MYFileSys Callbacks Functions definations
    static ACCB1 ASInt32 ACCB2 MyASFileSysOpenProc (ASPathName pathName, ASUns16 mode, MDFile *fP)
    dwDataIndex = 0;
    dwDataSize  = FileSize;//size of main PDF file
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysCloseProc (MDFile f)
    dwDataIndex = 0;//set PDF buffer pointer to zero
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysFlushProc (MDFile f)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysSetPosProc (MDFile f, ASUns32 pos)
    dwDataIndex = (DWORD)pos;
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetPosProc (MDFile f, ASUns32 *pos)
    *pos = (ASFilePos)dwDataIndex;
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysSetEofProc (MDFile f, ASUns32 pos)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetEofProc (MDFile f, ASUns32 *pos)
    *pos = (ASFilePos)dwDataSize;
    return 0;
    static ACCB1 ASSize_t ACCB2 MyASFileSysReadProc (void *ptr, ASSize_t size, ASSize_t count, MDFile f, ASInt32 *pError)
    *pError = 0;
    if ( ptr == NULL )
      return 0;
    DWORD dwRemaining = dwDataSize - dwDataIndex;
    DWORD dwReadSize = min( dwRemaining, (DWORD)( size * count ) );
    CopyMemory(ptr, &lpBuffer[ dwDataIndex ], dwReadSize );
    dwDataIndex += dwReadSize;
    return (ASSize_t)dwReadSize;
    static ACCB1 ASSize_t ACCB2 MyASFileSysWriteProc (void *ptr, ASSize_t size, ASSize_t count, MDFile f, ASInt32 *pError)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRemoveProc (ASPathName pathName)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRenameProc (ASMDFile* f, ASPathName oldPath, ASPathName newPath)
    return 0;
    static ACCB1 ASBool ACCB2 MyASFileSysIsSameFileProc (ASMDFile f, ASPathName pathName, ASPathName newPathName)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetNameProc (ASPathName pathName, char *name, ASInt32 maxLength)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetNameAsASTextProc (ASPathName pathName, ASText name)
    return 0;
    static ACCB1 ASPathName ACCB2 MyASFileSysGetTempPathNameProc (ASPathName pathName)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 ASPathName ACCB2 MyASFileSysCopyPathNameProc (ASPathName pathName)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 char * ACCB2 MyASFileSysDiPathFromPathProc (ASPathName path, ASPathName relativeToThisPath)
        return NULL;
    static ACCB1 ASPathName ACCB2 MyASFileSysPathFromDIPathProc (const char * diPath, ASPathName relativeToThisPath)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 void ACCB2 MyASFileSysDisposePathNameProc (ASPathName pathName)
    static ACCB1 ASAtom ACCB2 MyASFileSysGetFileSysNameProc (void)
    return NULL;
    static ACCB1 ASUns32 ACCB2 MyASFileSysGetStorageFreeSpaceProc (ASPathName pathName)
    return INT_MAX;
    static ACCB1 ASInt32 ACCB2 MyASFileSysFlushVolumeProc (ASPathName pathName)
    return 0;
    static ACCB1 ASPathName ACCB2 MyASFileSysCreatePathNameProc (ASAtom pathSpecType, const void *pathSpec, const void *mustBeZero)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetItemPropsProc (ASPathName pathName, ASFileSysItemProps props)
    return 0;
    static ACCB1 ASFolderIterator ACCB2 MyASFileSysFirstFolderItemProc (ASPathName folderPath, ASFileSysItemProps props, ASPathName *itemPath)
    return NULL;
    static ACCB1 ASBool ACCB2 MyASFileSysNextFolderItemProc (ASFolderIterator folderIter, ASFileSysItemProps props, ASPathName *itemPath)
    return 0;
    static ACCB1 void ACCB2 MyASFileSysDestroyFolderIteratorProc (ASFolderIterator folderIter)
    static ACCB1 char * ACCB2 MyASFileSysURLFromPathProc (ASPathName path)
    return NULL;
    static ACCB1 ASPathName ACCB2 MyASFileSysGetParentProc (ASPathName path)
    return NULL;
    static ACCB1 ASInt32 ACCB2 MyASFileSysCreateFolderProc (ASPathName path)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRemoveFolderProc (ASPathName path)
    return 0;
    static ACCB1 char * ACCB2 MyASFileSysDisplayStringFromPathProc (ASPathName path)
        return NULL;
    static ACCB1 void ACCB2 MyASFileSysSetTypeAndCreatorProc (ASPathName path, unsigned long type, unsigned long creator)
    static ACCB1 void ACCB2 MyASFileSysGetTypeAndCreatorProc (ASPathName path, unsigned long *type, unsigned long *creator)
    static ACCB1 ASInt32 ACCB2 MyASFileSysAcquirePlatformPathProc(ASPathName path, ASAtom platformPathType, ASPlatformPath *platformPath)
    return 0;
    static ACCB1 void ACCB2 MyASFileSysReleasePlatformPathProc(ASPlatformPath platformPath)
    //write the following code in your open PDF file procedure
    FileSize = //size of your PDF File;
    lpBuffer = (char *)malloc(FileSize);
    PDDoc pdDoc = PDDocOpen( (ASPathName)PDF_MEMORY_FILESYS, &MyFileSys, NULL, true );
    ASFile asFile = PDDocGetFile(pdDoc);
    ASText title = ASTextFromScriptText ("PDF File Name",kASRomanScript);
    AVDoc targetDoc = AVDocOpenFromASFileWithParams (asFile, title, NULL);
    //Thanks

  • Can i use free VMWare ESXi for commercial use.?

    Hi,
    I know that this question have come up before but I can't find any
    definitive answers. Can i use free VMWare ESXi for commercial use. We
    would like to host
    several customers on a machine running  VMWare ESXi. I want a clear answer so we can do it without any further discussion.
    Thank you all in advance,
    LNN

    If you plan on renting out a VM, then you need to look at the hosting programs - http://www.vmware.com/solutions/hosting/index.html.   The base EULA for ESX and ESXi do not allow for the rental of VMs but I believe it may be possible to get an exemption to that.
    http://communities.vmware.com/message/1016993#1016993
    VMware grants you a nonexclusive, non-transferable license, without rights to sublicense, to  install or have installed a single instance of the Software and each Licensed Additional Module on a single Server, unless permitted to have multiple instances on a single Server or to have multiple instances on multiple Servers by the payment of applicable license fees (whether such fees are based on a per Processor, a per Virtual Machine, a per user or any other VMware approved licensing model); (ii) use the Software and each Licensed Additional Module solely for information processing and computing purposes, including the hosting of computer application-based services from a Virtual Machine and provision of such services via an internal or external network, provided such services may not consist of services to a third party that provide primarily computing or processing power (such as utility computing or grid computing) or any computer application-based service that is traded, rented, leased or sold on a Virtual Machine basis; and (iii) use and reproduce the VMware Virtual Infrastructure Client Software or VMware WebAccess (in object code form only) for the purposes of installation and operation on an unlimited number of your own internal computers or terminals solely for the purpose of accessing the Server on which the Software is installed.

  • Can I use Adobe Acrobat X Standard on Windows 8

    Can I use Adobe Acrobat X Standard on Windows 8?

    Hi hnreich,
    Yes you can use Acrobat 10 Std on Windows 8.
    You can download the same from: http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Regards,
    Rave

  • Can't using adobe flash player for live broadcasting

    when i tried to open my usb camera on netbook using adobe flash player, it's always stopped and said my cam is using on another application. But i'm not using or open another application at all.

    My 3GS phone can't download adobe flash player for online messenger use
    Nobody's can - it doesn't exist.
    Check the AppStore for an app for whichever instant messaging service you use.

  • Can I use the music "Run down bounty" in adobe elements 11 for commercial production (short film)?

    Hi,
    in the sound bar are some songs eg. run down bounty. Can I use them for commercial - short film?
    thx

    Are those part of the SmartSound Sonic Fire Library?
    If so, you will want to go to the SmartSound Web site: http://www.smartsound.com/ as they have all of the licensing info for their music. You should be fine, but I would check, just to be sure.
    Good luck,
    Hunt

  • Create pdf using Adobe acrobat sdk

    Hello,
    I'm new to this concept of using adobe sdk to convert a html into pdf.I would like to know few details regarding this..
    I went thorugh the documentation but I did not get any help about the vector image support in the pdf and I aslo want to know abot the dpi support in the pdf.
    I also want to know wether I can create a pdf form a Html page.
    thanks for the help.

    >I want this to be on the server.
    Ok, we can start there - or stop. The Acrobat SDK is for automating
    Acrobat. Acrobat must not be installed on a server. So you cannot use
    Acrobat.
    Adobe have a PDF Library, which can be licensed for server use. But it
    does not have any easy HTML to PDF converter.
    You might look into LiveCycle PDF Generator, a different application
    with a Java API and more, for server use.
    >The dpi what I was talking about was..in the pdf i want a logo to appear that would around 200-300 dpi.That logo is a vector image.
    This seems a contradiction. PDF files can store text, vector images
    and bitmaps/images. If you store a vector image, it remains vector and
    there is no dpi to worry about.
    HOWEVER if you can only convert HTML
    1. HTML does not support any vector formats
    2. HTML often forces images to 72 dpi.
    HTML is not suitable for print quality.
    Aandi Inston

  • Can i use FMS developer version for commercial purpose

    HI,
    Can I use flash media server4 developer version for commercial, if some one have knowledge about scope of the developer version then, please help me.
    Thanks
    Ram

    If you refer to EULA of FMS you will see below text corresponding to Developer License:
    .1.              Software  License.  Subject to the terms and conditions of this Agreement, Adobe grants to  Licensee a perpetual (except as set forth in Section 15) non-exclusive  license to install the Software on one (1) Computer  or Virtual Server and use  the Software delivered hereunder according to the terms and conditions of  this Agreement and the Documentation.  Unless indicated otherwise by the License  Key (as defined below) provided to Licensee, Licensee shall be deemed to have  licensed the Development Server. If Licensee has  licensed a Trial Version, in which case Section 2.2 applies, or if Licensee has  licensed Not For Resale Software, in which case Section 2.3 applies.
    2.1.1.         Development  Server License.  This Section 2.1.1 applies only if Licensee  has obtained a valid Development Server license to the Software.  In addition to  the other terms contained herein, (a) Licensee’s license to the Development  Server Software is limited to a maximum number of (i) ten (10) Concurrent Connections when using with the Real Time Media  Protocol (RTMP), and (ii) fifty (50) Concurrent Connections when using the Real  Time Media Flow Protocol (RTMFP); and (b) Licensee shall not use the Development  Server for load balancing.  No maintenance and support is available for the  Development Server.   
    So as per EULA you can use Developer Edition for commercial purpose with restriction that it cannot be used for load balancing or creating cluster of Developer Edition Network.
    You can refer to this old article when this part of EULA was introduced: http://www.flashcomguru.com/index.cfm/2006/10/9/fmsdevedition

  • Can I use Adobe Acrobat X Pro to batch convert v1.6 PDF files to v1.3?

    Recently I have posted up a project so the contractor can read the text in the PDF and create hyperlinks from these text. These PDFs are in format of engineering drawings.
    He informed me that he was going to use PHP to read the PDF text as javascript cannot.
    He then asked me to convert the version of our current PDF files from v1.6 to a lower version: v1.3, because php cannot work with higher PDF versions.
    So I found this PDF version converter: [link removed by forum host] but it only converts one by one. I have like a few hundreds of them, so I really need something to do batch convert.
    Could anyone help me out here? We (the small business I am working at) do not have Adobe Acrobat X Pro but will buy it if it can do the job.
    Otherwise could anyone advise me of any other software that can do this?
    Thanks heaps.

    Yes, Acrobat XI Pro can do this very easily. You can create an Action that runs the PDF Optimizer tool, which can convert the file content so it's compatible with any earlier version of PDF (as well as other things). Actions can then be run against a folder of files.

  • How can I use Adobe Acrobat X Standard to print multiple documents on Lexis Nexis File & Serve?

    I am unable to print multiple documents on the Lexis Nexis File & Serve legal website that used their Batch Document Processor software. The technicians there told me that Adobe Acrobat X Standard has an incompatibility with their Batch Document Processor software. I never had a problem with Adobe Acrobat 6.0 or Adobe Acrobat 9.0 and the Batch Document Processor program at the Lexis Nexis File & Serve website. I am now running Windows 7 Professional SP1. Before, we were running Windows XP Professional SP3 with the IE 8.0 browser. We now are running the IE 9.0 browser.

    The answer is in the question...
    Only the Pro version of Acrobat is capable of batch processing files (which
    I assume the Lexis Nexis tool uses). Until now you had Acrobat Pro, and now
    you have Acrobat Standard, and therefore you can't use it anymore. You need
    to upgrade to Acrobat Pro.

  • How can i use adobe drive/cs4 for storing images and interact this with adobe cq5.4 DAM...

    Hi,
    Can anybody suggest me i want use adobe drive to store images and i want to access the images for my cq5.4 instance..
    I want to integrate drive to the cq5.4 dam for ignoring the dam burden on cq5 instane repository..
    Is it possible to use this drive? or is there any other way i can achieve my task?
    Thanks,
    Sony C.

    Adobe Drive software doesn't store images; it enables integration of a DAM system with Creative Suite and now Creative Cloud desktop apps.
    Adobe Drive 3 is the first version of the software to support integration with Adobe's DAM. This version was designed to work with CS5 and CS5.5 apps.
    We do not have a version of Drive that supports integration with CQ 5.4 DAM and CS4 apps.

  • Labview6.1 hangs on windows 98 when using adobe acrobat control for activex to open pdf file

    I downloaded the attached vi from this forum and it works perfectly in windows XP with the same version of labview(6.1) and adobe acrobat reader (6.0). However, it hangs immediately when i am just trying to open the vi on windows 98....
    I have also experimented with the MS browser activex control(activex container + object), it works on both windows XP and 98 for opening html files and on XP, it can open a link that leads to an PDF file display properly in the container window but it fails again in 98.
    Please help ...... thanks
    Attachments:
    Display PDF.vi ‏72 KB

    mengyi wrote:
    ... What version of acrobat would you suggest?
    The VI you posted worked without a problem on my Win98 machine with AcrobatReader v5.0.5.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Windows 7 professional--Can I install Adobe Acrobat 8 for XP

    I have a new T410 with windows 7.  My copy of Adobe Acrobat 8 only works, Adobe says, wiht XP and Vista.  Can Adobe 8 be installed on Windows 7?

    As far as i know only version 9 or newer support Windows 7 so if you ask Adobe they will probably just tell you to upgrade Acrobat to version 9. I would recommend to upgrade Acrobat to version 9.x that support Windows 7. If you don't want to upgrade and prefer to try Acrobat 8 with Windows 7 which is not supported i guess it's on your own risk. I tried to google and found that several people claim it's working fine while some others had some problems. I didn't really read all the details though.
    If you got a license for Acrobat 8 i assume that all 8.x updates are free? In that case you could give it a try and update to the latest 8.x which i believe is 8.2.3. If it's working that's fine and if not i guess there will be no support from Adobe and then you have to do some searching for a solution. It should be easy to find others that tried the same thing so probably a lot of suggestions in case of problems.
    Like i said it's on your own risk so hard to recommend that you try in case something should go wrong, but i'm guessing that worst case would be that it's not working and Acrobat can be uninstalled without any corruption to your system.
    -gan

Maybe you are looking for