『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the power of Acrobat SDK through our community.
新着順
Acrobat has the worst Customer Service and they know that. I'm just surprised that they haven't. Why can't adobe improve their customer service? All answer are welcomed. [Comments made on two other threads in two other forums all on the same day combined with this thread for clarity by moderator.]
Hi,I use Acrobat DC on a Windows 10 machine. Can someone tell me if there is a default preference file similar to InDesign and where is this file located? I wish to setup my machine so that it functions similiar to an office mate? Thanks in advance for your response.-Greg
Fill and Sign is not working when I open a PDF link in Internet Explorer. Is there a reason for this? It was working fine just last week.
I am working on a form that calculates a bunch of different fields based on a few inputs (for a table top game, pathfider 2e if anyone is interested) I have 6 fields that generate a number (STR, DEX, CON, INT, WIS, CHA). I want to make a drop down in a different section of the form that has those are options, and will pull the number from the original field as the export value. So for instance, if you select STR from the downdown menu, I want that options Export Value to be the vlue from the field "STRMod". I tried usinng the field name i want to pull as the entry for the export value. I also tried:this.getField("STRMod").value I also tried:event.value = this.getField("STRMod").value No avail Any ideas? is this possible?
Hi all! Would really appreciate some help figuring out the proper code to help me at work. The idea is to be able to automatically search for phrases in a PDF document containing dollar signs (i.e "$24.7 million...."), or percents ("45% of sales") and then add in a red rectangle around that phrase. Can anyone give me a little guidance on how to do this? I am very new to the world of writing code so I would really appreciate the help with this. Thanks so much in advance!
I have tried creating a stamp with the following javascript: event.value = util.printd("h:MM tt, dd mmm yyyy", new Date);event.value = (new Date()).toString();AFDate_FormatEx("H:MM , dd/mm/yyyy"); but it not updating the date and time automatically. I have searched and tried several different versions of the javascript and none of the seam to update the date and time. Any help would be appriciated.
How do I replace Time Machine?
Problem: to open PDF files encrypted as a whole using 3rd party methods, such encrypted files have custom file extension (like foo.pdf.newext). Solutions tried:wrote a new Acrobat plug_in (based on Acrobat SDK's sample DMSIntegration), implemented custom ASFileSys to encrypt/decrypt underlying file on disk. To make Acrobat use my ASFileSys I replaced default file open dialog (AVAppOpenDialog()) with my own by replacing its HFT entry and provided my own ASFileSys instead of ASGetDefaultFileSys() as out param of replaced call. It works for files opened via file open dialog. But it does not work for files opened directly from Explorer or Comman prompt as no file open dialog is involved. Any help here on how to replace ASFileSys files opened from Explorer?wrote a new Acrobat plug_in (based on Acrobat SDK's sample DMSIntegration), implemented custom ASFileSys to encrypt/decrypt underlying file on disk. To make Acrobat use my ASFileSys I registred for File open notifications (AVDoc
I am using rectangle from Drawing tool bar. I have added that to my current tool set. I can change the outline color and fill in color to White. When I select Make Properties default, the setting doesn't stick. When I close Acrobat and Open it again, the settings are revert to default. I have other users are who are experiencing the same issue. We are using Acrobat Pro XI and Acrobat Standard X. It used to work. Not sure which Adobe update is killing this feature. Any ideas what could be causing this issue?
This has been driving me nuts for a few hours and I've just realised what I think the problem is, but I don't know who to rectify it. In all fields, I have the following custom validation script so I don't get a form full of zerosif(event.value == 0 | event.value == '') event.value = ''; Problem is, in another field I have the following which says I want a specific field to show zeros, which it's not doing, I'm guessing because of the custom validation script. if (this.getField("vat rate.10").value == "Exempt") {event.value = 0;}else {event.value = this.getField("vat rate.10").value/ 100.0;} If I remove the custom validation script, I obviously get a load to zeros appearing. Help please!
I'm trying to open a PDF Portfolio via Ipad but I only get a cover sheet saying... 'For the best experience, open this PDF portfolio in Acrobat X or Adobe Reader X, or later.' There are no documents just this message, I have adobe reader installed so I don't understand what the issue is?Thanks,Sam
I want to sort the data into form fields. The fields are arranged in a simple table with 10 rows and 3 columns with the headings "Number", "Name" and "Reward". I have the fields "pNum.0" ... "pNum.9", "name.0" ... "name.9" and "rew.0" ... "rew.9".After filling in the fields I want to click on the "sort" button and sort the filled rows alphabetically according to the "Name" column. Names are also accented, eg "Šimon", "Čeněk" ...
Hi! If we want to handle simple click , we can do Handle mouse clicks in the annotation by using the AVAnnotHandlerDoClickProc callback method.But if we want to handle double-click , what callback method should I use ?
Is there a way to add a custom color to the color picker for setting an annotation/highlight color using javascript? Also, is there a way to set the default color to this added color?Thanks!
I have compiled 200 magazines in pdf formats into a folder and conducted an advanced search to find articles covering a certain phrase. Adobe Acrobat have yielded the result (in this case 142 documents with 360 instances). I am wondering if it is possible to handle these results in an automatic way. Since I will do many more phrase searches I would really like to find a way to do it that is automatic. Or do I manually have to open each result>click on the organise pages button>click extract>extract pages as seperate files>Extract?Thanks. I am using Adobe Acrobat Pro DC
Hi I would like my function to detect the source of the event (onFocus vs onBlur) as in the sample script below.Is it possible ?I just spent more than an hour in the Acrobat JS documentation, I did not find anything and I have itchy eyes ... myFunction() {if (event is onFocus) {// blablabla;}else if (event is onBlur) {// blebleble;}} Thank you
Hi Adobe Reader,I do have Issues with downloading and uploading back annotated pdf files from onedrive. sync is not happening manually or automatically. it takes long time open the pdf file of even 70mb size. Im using the app on Ipad 6th generation. let me know if it can be fixable or not?Thank you.Regards,Dr.Swaminathan.
I've searched online for a solution to this and I find vague references to using Javascript but I can't find anything definitive.I've got a form which has an image based key. The idea is for the user to choose an image from the drop down menu so that image is displayed in the dropdown field once selected.Does anyone have an idea of how to do this and prefereably a tutorial? I have very basic JavaScript skills so have not been able to work this out myself.
I'm missing something again as this isn't working either 😞The first part - if "vat rate.10" says Exempt then "vat value.10" will show 0 - works great, but I can't get the next bit to work. If "vat rate.10" contains a value (any percentage), then "vat value.10" should show "aVATRate.10 x "net value.10" if (this.getField("vat rate.10").value == "Exempt") {event.value = 0;}else {"aVATRate.10"*"net value.10";}
need help with importing existing pdf form data into a new pdf form. found most of what i need at https://forums.adobe.com/thread/2466770 but i don know enough to the code for getting the doc object and copying fields. can someone share an example of what the doc object and copying field data should be?
Hello, I have a field with a custom keystroke: if( event.willCommit ) { if(event.value == "") //if nothing is chosen in box1 then box2 will be cleared this.getField("Text412").clearItems(); else SetFieldValues(event.value); } I would also like this same field to be formatted with two places after the decimal. I am assuming I would need to add code to the Custome format Format script to accomplish that but I don't know how or what scritp to write. Since I don't know how to write javascript I just search and try to adapt what I find. I found this talking about a custome format script:Archived Forum Answer (2 places after decimal)So I thought I just needed to add this lineNumber(event.value).toFixed(2);to the custom format script but it doesn't work. Is it because I need to add more to the script? Or is my approach completely wrong anyway? Any guidance would be appreciated! Thanks! Ariel
It is as the title.I'm looking for a way to right justify characters typed in a drop-down list. The drop-down list properties do not have a place to change the alignment like the text box properties.If I use it, all characters will be left aligned. I tried to enter the following into the formatting box, but it didn't change.I'm not sure how to write at here. style.textAlign = 'right' I am Japanese and I am not good at English.I'm looking for a huge page of "js_api_reference.pdf" with more than 700 pages, but I don't know where to look. Please tell me the information I should get.Thank you !
I have several digital signature fields in my Adobe Acrobat form. The form is used as an intake form and is signed by several indviduals on an ipad. When the signature fields are filled out we get several errors and warnings about their authenticity / cryptographic credibility yatta yatta. These security features are over kill for the client. Basicaly how can we disable them and/or have acrobat treat them more like "drawing fields"? Best!
Hi,I am developing an application using PHP. My application have some pdf file which user can download after registration. But, these pdf files will have 2 months of validation i.e. PDF file would be expired after 2 months from the date of registration, How can I set dynamic expiry date in PDF javascript? Do you provide any plugin or something like that? Please help ASAP.ThanksSanchari
I am considering buying adobe acrobat. The reason is to create JavaScripts that I want to include in my PDF'sWhat version do I need for this.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.