"Hide" a preSign event for Reader version 8

Hi all,
I'm using the preSign event for my form, and for some different reasons those forms will be open with Adobe Reader 8 or 9.
As the preSign is not compatible with the version 8, is it possible to "deactivate" the presign event if the user has the version 8 of the Reader?
It's really a particular case, because the form must be compatible with version 8 and 9 of Reader, except for my preSign treatment: this one can be ignored if the version used is the 8.
Thanks in advance,

Hi,
If you wrap your script in the preSign event in an if statement, which first checks the application version.
if (app.viewerVersion >= 9)
     //your script here
If the user has Reader 8 then the script will not run.
If you are going to have an alternative approach in a different event for users with Reader 8, then a similar approach would work in that different event:
if (app.viewerVersion < 9)
     //your alternative script here
Hope that helps,
Niall

Similar Messages

  • Need a link for reader version 9.4

    Hi i need to download an older version of reader 9.4, where will i get it ? Have been through the adobe site, but had no luck in finding it.

    If you tell us your operating system and language, we can give you a direct download link.
    Otherwise you need to navigate the Adobe FTP site to find your download from ftp://ftp.adobe.com/pub/adobe/reader/

  • SCUP detection for APSB14-01 failed for Adobe Reader version 10.1.2

    The detection rule ran and found that the patch was not required for reader version 10.1.2.
    Anyone know how the detection rule works and what is it looking for?

    Further investigation shows that the update is for "Acrobat and Reader".  The users have Acrobat 9.4.2 and Reader 10.0.1 and the update has a link to 10.0.2 readme, so it was assumed only Reader 10 was being modified.  Acrobat 9.4.2 is what is actually being updated, but the patch doesn't reference 9.x.  Confusing to everyone.
    Thanks for confirming no 10.0.2 update for Reader (whew)!
    Russell

  • How hide ribbon bar for read only users from custom master page.

    Hi,
    I want to hide the ribbon bar for read only users, on my custom master page I put inside of a SharePoint:SPSecurityTrimmedControl this div: <div id="ms-designer-ribbon">, but when I  save the changes the master page does not work
    anymore.
    <!--MS:<SharePoint:SPSecurityTrimmedControl runat="server" AuthenticationRestrictions="AddAndCustomizePages">-->
    <div id="ms-designer-ribbon">
    <!--SID:02 {Ribbon}-->
    <!--PS: Start of READ-ONLY PREVIEW (do not modify) --><div class="DefaultContentBlock" style="background:rgb(0, 114, 198); color:white; width:100%; padding:8px; height:64px; ">The SharePoint ribbon will be here when your file is either previewed on or applied to your site.</div><!--PE: End of READ-ONLY PREVIEW -->
    </div>
    <!--ME:</SharePoint:SPSecurityTrimmedControl>-->
    I'll appreciate any suggestions in order to solve this.
    Regards.

    did you close browse and open a fresh session?
    also authericationrestrictions for add & customize people so its more than read...
    check this one
    http://msdn.microsoft.com/en-us/library/jj822366.aspx
    another blog for same stuff:http://spgurunet00.web707.discountasp.net/post/2012/12/13/Hiding-SharePoint-2013-Ribbon-from-Anonymous-Users.aspx
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Silent install for adobe reader version 110003

    silent install for adobe reader version 110003

    Hi,
    I don't know your more details about how you pretend to deploy your Adobe Reader but I did this to my current deployment and many people on the company are happy with this:
    1- I extracted the contents from the Adobe Reader installer.
    2- I modified the MSI using Customization Wizard to hide some menus (Maybe you can skip this step if you don't need to customize it)
    3- On SCCM 2012 I created a Script deployment with a CMD file which contains the following command for silent install. (You don't need to have an SCCM infrastructure to deploy it but it will help)
    start /wait msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    or
    msiexec /i "%~dp0AcroRead.msi" /q TRANSFORMS="%~dp0AcroRead.mst" PATCH="%~dp0AdbeRdrUpd11001_MUI.msp;%~dp0AdbeRdrSecUpd11002.msp"
    - On my case I used %~dp0 because I'm installing from a server caching files on client machines but if you pretend to test and install it locally avoid using: %~dp0 and put your absolut path. Like C:\Temp or your MSI and source files location.
    - Start /wait - Will execute your MSI installer file and then once is finished will proceed with the next command if any.
    - Transforms- will force the MSI to apply the custom settings I did on Customization Wizard)
    - PATCH- command will proceed to install the patches you may have at the moment 11.0.1, 11.0.2, etc...
    Hope this will help you !
    Derspinne

  • Opening event for Excel or Word using Web versions of Excel and Word

    Is there an event or other messaging that can be caught and handled when a Word, or Excel file is selected and open using the web version of Word or Excel? At that event I want to access the OOXML file for the selected Word or Excel file and get data from
    it.
    Thanks
    Jim

    Hi Jim,
    As far as I know, Opening event for Excel or Word is not exist in the Javascript API for Office.
    Unfortunately, I could not find such a document.
    >> At that event I want to access the OOXML file for the selected Word or Excel file and get data from it.
    For a workaround, I will recommend you add a function to get the data from the file in the Office.initialize event.​
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Enter event not triggering for read-only checkbox

    I have some objects in a form that get "locked" when the user signs the form.  I'm not using the digital signatures.  Instead, when the user types their name into the signature text field, a script runs on the change event that makes all of the fields in the form read only.  It also unlocks the fields if the signature is deleted.
    I was worried that we would get a lot of phone calls with users that didn't understand that the form had locked ("Why doesn't this form work?!"), so I added some code to the enter event for all of the fields that would pop up a messagebox to explain to people trying to edit a signed form that the form was locked and that they would need to delete the signature to edit the form.
    This plan works perfect for my text fields and decimal fields.  It does NOT work at all for my checkboxes.  For some reason, the enter event is never triggered for read-only checkboxes.  I don't see any other events that would obviously work for me though.  Any ideas?
    Thanks

    Thanks, those are reasonable suggestions.
    In the first suggestion, I'm unclear about one aspect of how I would accomplish this.  I assume I would allow people to modify fields in the form, but that when they did, a msgbox would pop up that would inform them that, if they continued with this modification to a signed form, the signature would be removed.  I'm all good to that point.  But if they answered that they do not want to continue modifying that field and removing the signature, how can I code it to set the value back to what it was before the change?  Is there some method that will give me access to the value of the field BEFORE the attempted modification?  I went looking for something like $.previousvalue, but found nothing.
    I'd suggest that I could use a two-stage solution, in which I store the previous value on the enter event, and save it just in case they do not want to change the field when prompted by the msgbox, but since the enter event does not exist for checkboxes (my original problem), that seems like it won't work.
    As far as radio button suggestion, I like radio buttons very much except for one fatal flaw: they aren't (as far as I can tell) clearable.  That is a shame.  Clearly some people (like me) want both exclusivity AND clearability.  And we'd like the controls to have an enter event.  But I know I'm demanding   Anyway, as it is, I just end up having to use checkboxes and create a boatload of silly code to make them exclusive.
    Emily

  • Adobe Reader Version 10.0.2 for Windows?

    Some users are getting prompted to update Reader 10.0.1 to 10.0.2 on our Windows PCs.  But i can find no reference to a Windows version of this patch, only Macintosh.  In fact, the release notes http://kb2.adobe.com/cps/837/cpsid_83708/attachments/Acrobat_Reader_ReleaseNote_10.0.2.pdf specifically state that there is no patch for Windows:  "A Reader patch for Windows is not being released because Reader X with Protected Mode enabled is not subject to the associated vulnerability".  Also, there is no 10.0.2 download for Windows on the Adobe website.
    What's going on???
    TIA,
    Russell

    Further investigation shows that the update is for "Acrobat and Reader".  The users have Acrobat 9.4.2 and Reader 10.0.1 and the update has a link to 10.0.2 readme, so it was assumed only Reader 10 was being modified.  Acrobat 9.4.2 is what is actually being updated, but the patch doesn't reference 9.x.  Confusing to everyone.
    Thanks for confirming no 10.0.2 update for Reader (whew)!
    Russell

  • Adobe Reader version 9 or higher for HP Photmart 7520 all in one

    How can I tell if I have an Adobe Reader (version 9 or higher) on my 7520 HP all in one printer?

    Hi,
    It can print files from many versions. You can print from the latest Adobe reader. Is there any error ? What is it ? To find out out the Adoba reader version on your machine, please click Help and then About ....
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, re

    I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, reinstalled still have same issue.

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • Reader version 9 not opening some files: error "insufficient data for an image"

    Adobe reader version 9 is having difficulties opening PDF's, mainly with PDF's that contain charts or jpg's.
    When using Google Chrome browser, I get the message "insufficient data for an image."
    I am using windows XP.  When I open these same PDF's using Internet Explorer, they display fine, but some of them don't print, and cause the printing spooler to malfunction, i.e., the print spooler begins turning itself off repeatedly, and then I can't print anything from any program. This print spooler problem is really difficult to solve. But I think all of this is originating from some inability of the current version of Adobe to handle some PDF's, which is a recent phenomenon. I've never had problems like this before with previous versions.

    I've had the same problem then it got "magically" fixed by itself. A big thanks to Adobe for their updates

  • Reader version 17.0.0.169 (for ActiveX) for Windows 8

    Reader version 17.0.0.169 (for ActiveX) is latest but Microsoft doesn't have it available for Windows 8 and YOUR site won't allow me to download it myself. Please make it available. Version 17.0.0.134 is a vulnerable version. I don't want to have to wait on Microsoft to fix vulnerabilities in IE on Windows 8.

    There is no such thing as "Reader version 17.0.0.169"; from the version number I can only assume that you mean Flash Player.
    Microsoft offers the Flash Player update (ActiveX for Windows 8.x) via Windows Update; see https://technet.microsoft.com/library/security/2755801
    The update is also available on the Adobe website, but you should really update through "normal means" (Windows Update).
    [topic moved to Flash Player forum]

  • Which Reader version for Mac Powerbook G4 10.5.8 PowerPC?

    I received update notice for adobe reader  version 9.4.6. With Adobe's help I finally was able to download flash player 10.1.102.64 for my Mac Powerbook G4 version 10.5.8, Power PC processor (1GB mem). Is the 9.6.4 version compatible with my computer or will I have the same downloading problems I had trying to update to the latest version of Flash Player? Currently PDF documents won't open from email attachments or many websites, such as for online movie ticket purchases. I have to save them to my computer first, then open. Hoping a newer version of Reader will fix that problem. Which version should I have and how do I download?

    There's none. You need to either install it from the computer's original disks or buy an iLife 09 or earlier DVD.
    (90171)

  • How do I terminate Conversion upgrade for Reader.  I now have full version Adobe Acobat XI Pro.

    How do I terminate Conversion upgrade for Reader.  I now have full version Adobe Acobat XI Pro.

    Hi wrtoicke,
    I just checked your account, and it looks as though you've already canceled your account.
    I think you're going to be very happy with your full version of Acrobat!
    Best,
    Sara

  • Problem regarding Adobe PDF Reader Version for ADS services on EP 7.0 SP13

    Dear All,
    We are facing an issue regarding the Adobe reader version to be used for ADS services on our portal which is working on EP 7.0 and SP13.
    Please do let us know what is the proper Adobe reader version to be used for ADS services for our portal.
    Thanks and Regards,
    Soumyadeep Ghosh
    Edited by: Soumyadeep Ghosh on Jul 22, 2009 8:54 AM

    Hi Soumya ,
    1. Check ur adobe componet name in
    http://leapepdv.lancogroup.net:50000/monitoring/ComponentInfo
    your EP vrsion is EP 7.0 Sp13 . So adobe component vesrion also the same.
    Check weather it is the same or not.
    TO check Adobe document service
    http://************:50000/wsnavigator/enterwsdl.html
    click on the Adobe document service and test
    give ads user id password.
    2. Have u done ADS Config ?
    Regards,
    Surekha.

Maybe you are looking for

  • My iPhone is dead and when I try to find it with Find My iPhone, it says it is offline. How can I track and find my lost phone?

    I lost my iPhone and cannot find a way to track it. My phone is dead and I used Find My iPhone later than 24 hours after I lost it so it will not tell me if it is located in my house or not. Is there any way to track my iPhone or make it okay a noise

  • Problem Generating A PO Output In PDF

    Hi All, In transaction Me22n or Me23n, when we enter a PO and click on The u201CPRINT PREVIEWu201D Button, we are prompted with a Sub Screen For Selection Of O/P Type. After selecting the Output Type (In my case it is YNEU), I click on Print Preview,

  • SOAP Messaging Using Crystal Reports Web Services To Return Report in PDF or Excel Format

    All, I am trying to use SOAP messaging to fetch a Crystal Report through a Managed repository and getting back either a PDF or Excel file. For some reason, any reference to web services on this site I cannot access. Like thread, "Using Web Services o

  • Made to Order Scenario

    Hi All, Q1)What customisation settings are needed for a made to order scenario. Q2) What do you mean by the terms Requirement Class and Req Type  please do not  give me notes from  SAP help menu. Do explain in Simple language and with good examples s

  • Please help with Tomcat error

    I am doing my first JSP page that will link up to an example application cmpRoster that comes with the J2EE tutorials. The application is deployed, and i think my JSP code is right, but I get an error like below. this is the first time i have heard o