Need help with Digital Certificates when used with Adobe Acrobat

Hi,
I need some urgent help for one of my project. Any help or
guidence would be very much appreciated...
I am using Digital Certificates with Adobe Reader 6.0 and
above and currently if I want to install the process it requires
around 2 steps. Below are the steps.
Once the install now button is clicked.
Step 1. Click on set contract set.
Step2. Click on first un check box, Adobe 7.0 or Adobe 6.0
Step3. Click OK,
Now the Question or issue is, I want to make the above
mentioned steps 1 to step2 automated, once a user downloads this
Digital certificate over the Web. Else if I can pre-select the 2
steps for the ease of the user.
Any help to get this automated would be much
appreciated......Do let me know if anybody has any further
questions...
Pls help...and thanks for helping in advance..much
appreciated...
Cheers
Ashish

Hi Ashish,
Since the title of your post refers to Adobe Acrobat, and the
mention of RoboHelp is conspicuously absent, I suspect you are in
the wrong forum. You probably need the Acrobat forum instead.
Regards,
Anne

Similar Messages

  • Need help choosing a display to use with 12" ibook

    I apologize in advance if this topic has been covered earlier. I'm contemplating purchasing a monitor to use with my ibook and something that could be used later with a new Mac Mini or Power Mac. I can't bank roll a Mac monitor... they're beautiful but trés expensive. So I'm looking for some other brand. The question I have is what type of monitor should I buy. I know I want a LCD (17" pref), I’d like to spend less than $400, and VGA would be nice so I don't have to purchase an additional adaptor. Is there anything else I should be aware of? What about monitors with a DCI connection? Are they difficult to connect/need expensive adaptor? Any advice or recommendations you can provide would be greatly appreciated. Thanks.
    Laura

    Keep in mind that the iBook does not support extended desktop mode. This means that you can only use an external monitor for mirroring your main display. Since the resolution of the iBook is very low (1024 x 768), virtually any display will support it.
    If you want to use an external monitor with another system later, consider getting a large CRT display, rather than an LCD. While LCDs have their attractions, such as power consumption, weight, and size, these are not the main characteristics of a good display. For another five or ten years, you'll be better off with a good CRT display. (This is my personal opinion, naturally. I was drooling over the 30" Apple Display myself, but generally, I'm not entirely satisfied with the current state of LCD technologies.)
    P.S. There's a trick to enable extended desktop mode for iMacs and iBooks: http://www.rutemoeller.com/mp/ibook/ibook_e.html You may want to try that, too. Beware! It's highly addictive!

  • Having trouble with if else when used with event.value... please help

    Please can someone shed any light on where i'm going wrong.
    I have a pdf form that uses a drop down menu for the SubBrand and a series of checkboxes for the Location.
    the following code is placed as a custom calculation script in an address text field and what im after is dynamically setting the address based on the subbrand and location.
    However whats happening is the address only changes based on the location and not the subbrand.
    Does anyone please have any advice on this.
    Thanks
    if 
    ((this.getField("SubBrand").value == "Passion" || "Passion for Men") && (this.getField("Location").value == "WW")) {
    event.value = "Not Applicable";
    else if ((this.getField("SubBrand").value == "Passion" || "Passion for Men") && (this.getField("Location").value == "US")) {
    event.value = "US02";
    else if ((this.getField("SubBrand").value == "Passion" || "Passion for Men") && (this.getField("Location").value == "WH")) {
    event.value = "WH02";
    else if ((this.getField("SubBrand").value == "Adventure" || "Liquid" || "Silver") && (this.getField("Location").value == "WW")) {
    event.value = "WW01";
    else if ((this.getField("SubBrand").value == "Adventure" || "Liquid" || "Silver") && (this.getField("Location").value == "US")) {
    event.value = "US01";
    else if ((this.getField("SubBrand").value == "Adventure" || "Liquid" || "Silver") && (this.getField("Location").value == "WH")) {
    event.value = "WH01";
    else
    event.value = "";

    Thanks for the tip GIlad I've amended my code but am still experiencing the issue, im at a loss as to what is preventing the address field from changing when the subbrand changes.
    Can you suggest anything else that may be preventing this from happening?
    Updated Code:
    var subBrand = this.getField("SubBrand").value
    var location = this.getField("Location").value
    if      ((subBrand == "Passion" || "Passion for Men") && (location == "WW")) {
            event.value = "Not Applicable";
    else if ((subBrand == "Passion" || "Passion for Men") && (location == "US")) {
            event.value = "US02";
    else if ((subBrand == "Passion" || "Passion for Men") && (location == "WH")) {
            event.value = "WH02";
    else if ((subBrand == "Adventure" || "Liquid" || "Silver") && (location == "WW")) {
            event.value = "WW01";
    else if ((subBrand == "Adventure" || "Liquid" || "Silver") && (location == "US")) {
            event.value = "US01";
    else if ((subBrand == "Adventure" || "Liquid" || "Silver") && (location == "WH")) {
            event.value = "WH01";
    else    event.value = "";

  • Need help on Flex plug in using with QTP

    Hi, I am using Flex plug in 4.5 for QTP 11.0 to automate testing for a flex application developed using  Flex builder 3.5. Application contains some charts and I need to get values from the lineseries inside chart using QTP. Does anyone knows whether Adobe Flex plug in supports my requirement?

    Thanx for the information but I'm still not clear.
    I read here on this link :
    http://labs.adobe.com/wiki/index.php/Flex_Module_for_Apache_and_IIS
    and it said that my Flex Data Services won't run on Apache or IIS.
    Is this mean if I insist to use Flex Data Services I must move my
    server from Apache to ColdFusion and change all those PHP script to
    CF script? My friend tell me its no need to integrate them just use
    only ColdFusion because I will use Flex Data Services.

  • Issue with LPAD/RPAD when using with Japanese data

    Hi,
    I am trying to apply LPAD/RPAD on Japanese data, but its giving different results than expected.
    LPAD/RPAD is returning less data than length passed.
    Database: Oracle 10g
    Could some one help me on this.
    SQL Query: select length('アップリカ'),lpad('アップリカ',5,' '), length(lpad('アップリカ',5,' ')) from dual;
    Output:
    LENGTH('アップリカ') --> *5*
    LPAD('アップリカ',5,'') --> アッ
    LENGTH(LPAD('アップリカ',5,'')) --> *3*
    Thanks in advance !!
    Edited by: 871132 on Jul 7, 2011 8:18 PM
    Edited by: 871132 on Jul 7, 2011 8:20 PM
    Edited by: 871132 on Jul 7, 2011 8:21 PM

    I have made a little research and it seems that your problem is connected with way RPAD function works.
    Actually it counts 'display units' instead of 'real' characters count. And in japanesse one 'real' character may be formed from few display units.
    Oracle gives some info about it in its official documentation:
    http://download.oracle.com/docs/cd/B19306_01/olap.102/b14346/dml_x_reserved010.htm
    Some more info is given here:
    http://www.rhinocerus.net/forum/databases-oracle-tools/426832-oracle-bug-rpad-japanese-kanji-character-oracle-10gr2-utf8database.html
    And also sugestion is given:
    +"If you really want the number of characters then you can use+
    +something like:+
    +RPAD ( str , n - LENGTHC(str),'c')+
    +Use LENGTHB, if the requested width is in bytes, LENGTHC, if in+
    +characters+
    +Or+
    +SUBSTR( str || RPAD( 'c', n, 'c' ), 1, n )+
    +Use SUBSTRB, if the requested width is in bytes, SUBSTR, if in+
    +characters+
    +In above the+
    +* str is the string to be padded.+
    +*'c' is the fill character (usually blank) -- we a assume single-+
    +byte char+
    +* n is the requested width in bytes or characters+
    +"+
    Edited by: chudapet on 8.7.2011 1:52

  • Need help in formating a form dealing with negative currency

    Need Help!!!
    Creating forms in Adobe acrobat Pro I could format a number cell to calculate additions/subtractions of currency. If the result was negative I could get the cell to show the negative result in red text and show parentheses around them. How can I do that in LiveCycle?
    If i have to use formcalc - what would i type in?

    In LiveCycle can be done using the Numeric Field object and some formcalc script.
    Use the "Numeric Field" from the Object Library. For the Field patterns (Select the placed numeric field, On object Window Object -> Field) use "num.currency{}" to show the currency(Ex: $) and "parentheses" if its negative. Write some script to show red text/border in red .
    On exit event of the Numeric Field here is the script:
    if($.rawValue <0) then $.font.fill.color.value = "255,0,0" endif  // This will make entire text in red color if the value is negative.
    if($.rawValue <0) then $.validate.nullTest = "error" endif      //This will make border of the field in red color if the value is negative.
    Hope this helps.

  • How do you stop needing to verify email password when using yahoo.att with Mac Mail

    How do you stop needing to verify email password when using yahoo.att with Mac Mail?

    Nevermind, I fixed it (I think).  I went into Settings | Accounts & Sync and found Yahoo at the bottom of the list (alphabetically).  I selected it and it had an optiion to delete the account, which I did.

  • Problem Signing Email with Digital Certificate from Smart Card, Outlook 2013

    Hi there, I'm the IT guy for a small company.  I've configured several people in the company to use their smart cards for email signing through Outlook 2013, but a a few computers are giving me this error:
    "Microsoft Outlook cannot sign or encrypt this message because there are no certificates which can be used to send from the e-mail address '<e-mail address>'. Either get a new digital ID to use with this account, or use the Accounts button to
    send the message using an account that you have certificates for."
    I've been in the Trust Center, I see the signing and encrypting certificates. (SHA-1 and 3DES).  Yet when I try to sign, Outlook always fails on the error.
    For my computer, I was able to fix this by adding a "SupressNameChecks" DWORD set to 1 in the Registry under HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\15.0\Outlook.  However, this fix is not working for the other people in the company.
    Any other ideas?  Really pulling my hair out on this one, I've tried everything I could find on the net it seems.

    Hi,
    Please checked “E-mail name” under the section ‘Include this information in alternate subject name” on the Subject Name tab of the certificate template.
    We can export the entrust managed services root CA cert from a working machine and import into the trusted root store of a non-working machine. For detailed steps about it, please refer to:
    How To Import and Export Certificates So That You Can Use S/MIME in Outlook Web Access on Multiple Computers
    http://support.microsoft.com/kb/823503/en-us
    Hope it helps.
    Regards,
    Winnie Liang
    TechNet Community Support

  • How to access 802.1x authentication wired nework with digital certificate?

    How can I access 802.1x authentication wired network with digital certificate?
    I can access the network in windows with the following configutaion:
    BUT in my lion, I had import the digital certifacte. While I connected to the network, I was prompted:
    Enter the name and password for this 802.1X network
    I could not get the opportunity to select my digital certificate? But my colleague can.
    iPhone Configuration Utility seemed to provide wireless 802.1X authentication configuration file . And in my work background, most people use the windows. And there isnot a lion server to provide a configuration file.

    Dear Rune,
    Thank you for reaching Small Business Support Community.
    If you have already followed the 802.1X Supplicant configuration described in page 112, chapter 6, on the admin guide;
    http://www.cisco.com/en/US/docs/wireless/access_point/csbap/wap121/administration/guide/WAP121_321_AG_en.pdf
    All I can suggest you is to make sure you are running on the latest firmware release version 1.0.4.2;
    http://software.cisco.com/download/release.html?mdfid=284152656&flowid=32563&softwareid=282463166&release=1.0.4.2&relind=AVAILABLE&rellifecycle=&reltype=latest
    And then contact the Small Business Support Center to have a TAC engineer figure this out;
    https://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html
    Please do not hesitate to reach me back if there is anything I may assist you with in the meantime.
    Kind regards,
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

  • Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c

    Need help Connecting Crystal Reports 8.5 with GBS Agency Expert 6.7.6c.  I need assistance on connecting these together so I can run a report.  I am not an IT person so if someone could dumb it down it would be great.
    Thanks,
    NBGHealth

    Hello,
    I assume GBS Agency Expert 6.7.6c is some sort of database or data source? If you have an ODBC driver then create or use a System DSN to the database. Then you can create a report using that DSN.
    Otherwise I suggest you contact the makers of GBS Agency Expert 6.7.6c and ask them how to connect to the database.
    Let them know CR is ANSII 92 ODBC 3 compliant.
    Thank you
    Don

  • Camera is hanging when using with flash

    Hi Lenovo Team,
    In lenovo vibe x2, camera is hanging when using with flash.Getting "Lenovo snapit isnt responding" error and screen hanged for sometime.after that when tried to open camera "Cannt cannot to camera " error is coming till when restart the phone.
    Even tried Factory reset and software update.
    Please provide the solution for the above issue.
    Thanks,

    Hi vijayprabhu,
    I just tested the X2 however am not having the issue. I set flash to always on then took a picture using SnapIt however its fine.
    Please check if you have the latest firmware S125.
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • HT4623 Anyone have trouble with iPhone 5c when using Siri?

    Anyone having with iPhone 5c when using Siri?

    I have a problem when I am using the SIRI and have # contacto, for example mark with siri #995012607.

  • I just purchased the hunger games on blu-ray with digital copy. when I try to download the HD digital copy it gets to about 80% compete then stops with a download error (-50). What is that how do I fix?

    I just purchased the hunger games on blu-ray with digital copy. when I try to download the HD digital copy it gets to about 80% compete then stops with a download error (-50). What is that how do I fix?

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • ExecuteNonQuery doesnt return number of rows affected when used with PL/SQL

    ExecuteNonQuery doesn't return number of rows affected when used with PL/SQL but returns -1. The documentation says ExecuteNonQuery method of OracleCommand returns the number of raws affected but when used with PL/SQL, it returns -1 even the update statement successfully executes and affects multiple records with no exeptions thrown.
    However, if ExecuteNonQuery is used with update sql statement in the asp.net code it returns number of rows affected correctly. Does anybody know why ExecuteNonQuery behaves like this?
    I am using ODP.NET that comes with Oracle Client 11g. The version is 2.111.6.20 of ODP.NET, Oracle database server is 10g.
    Marat

    You can get the rowcount in the stored procedure via SQL%ROWCOUNT and then pass it out as a parameter.
    For example:
    SQL> create or replace procedure updatesal(v_deptno in number, v_rowsaff out number) as
      2  begin
      3  update emp set sal = sal * 5 where deptno = v_deptno;
      4  v_rowsaff := SQL%ROWCOUNT;
      5  end;
      6  /
    Procedure created.Cheers

Maybe you are looking for

  • How do I increase the number of emails in my inbox it is only showing 5.  I have a 5c.

    How do I increase the number of emails in my inbox. It only shows 5. 

  • Copying music from mini ipod to computer

    I want to copy the music I have on my ipod nano to a different computer with a fresh copy of itunes 10.1.1.4. I tried the directions I found on the support page; Edit, Preference, check - Copy files to iTunes Media folder when adding library. The iTu

  • Pixi Plus-Can't Delete PDF or Doc View Items

    I have a long list of items on my PDF list that I can't delete.  I also have a few items on my Doc View which won't delete.  I've tried going the USB route, but nothing shows up for the PDF and I can't find a place for the Doc View.  I've also tried

  • Highlighting nodes in a JTree

    Hi, I'd like to know how I can produce the efect of highlighting nodes in a JTree when the mouse moves over the JTree. Thanks

  • CSS tranisition effects

    Hello there, I want to design my Responsive Parallax Website.. Like this one http://themify.me/demo/themes/parallax/#animated-bars But i want to design my own. I found a tutorial here : https://ihatetomatoes.net/make-parallax-website-respo I want to