Unlock the power of Acrobat SDK through our community.
Als letztes aktiv
I input the scaling ratio in measuring and it shows correct but when I measure it does not change it
We'd like to put instructions there.
I can use CTRL+ E to change the font size and colour and left/right justification in text box, but how can I change the position of the text to sit Top Middle or Bottom within the box?
I signed a contract, then scanned to the computer and Packaged as PDF format. In this case, how to setup the PDF document for the tightsecurity allows the other to preview and print only and not allow to copy and edit its content? Moreover, the PDF document is not allowing to be converted toother formats, like a Word Doc. PPT Doc and so on.The contract is sent to me by e-mail as the JPEG format, I need to sign it on the printed paper and then reply to them by email again.
I've got a radio button and a text field. If somebody clicks "Red" on the radio button, I'd like the text field to be greyed out and disabled. If they click "Blue" on the radio button, then the text field should look normal and be enabled for writing.How do I access the code for the radio button (mouseup event?) to make this happen?
Hi, how do you stop automatic rounding in a calculation result? The results field needs to display the actual unrounded number with two decimal points (it is a currency), and I have a simple multiplication calculation script:var v1 = this.getField("Construction").value;event.value = v1 * .001;if ((event.value == 0) && (getField("Construction").valueAsString === "")) event.value = "";When the format category is set as Number with two decimal places, the result is automatically rounded. When the format category is set as None, the result is unrounded but there are more than two decimal places. What should be done to display the actual unrounded number with a maximum of two decimal places?
Can I find and highlight certain text automatically? I have a document 4k+ pages and need to highlight a recurring word. Actually it is two words, but need them different colors.Or would WORD make more sense?
Good Morning! I've always used Adobe Pro IX to password protect my digital files. I've gone through ALL of the steps that I usually do...but when I open the protected files in Preview on a Mac, I can copy everything! I've password protected in PowerPoint first and then over on Adobe. I've also tried it without doing it first in PowerPoint. I'm allowed to copy everything this way! However, if I simply password protect it in PowerPoint (without Adobe) it does ask me for a password in Preview! But, using this method alone, I can’t put a watermark on my pages or add any links! Does anyone have any suggestions? I’m on a deadline! Thanks!
Guten Tag Acrobat-User,ich habe folgendes Problem: Beim konvertieren von Word 2010 in Acrobat X werden die Seitenzahlen (in der Kopfzeile) falsch konvertiert: Seite 2 von 2, Seite 3 von 3 usw. Beim Drucken in pdf werden die Seitenzahlen korrekt dargestellt. Schlimmer noch: ich habe einige Worddokumente bei denen die Konvertierung richtig ist, obwohl die Einstellung sowohl in Acrobat als auch die Feldeinstellung in Word in allen Worddokumenten identisch sind. Ich habe keine Idee woran das liegen könnte und vielleicht hat jeman hier eine idee. Ich freue mich schon drauf. Viele Grüße
I have a PDF job. The test case contains 12345 MP in its /Contents stream.The PDF spec says that MP operator requires a name operand. But Adobeprinters and Acrobat seem to ignore the error. Does anybody know why?
I have created an interactive pdf form entirely within Indesign CC and it works fine. The only problem I am having is that once the pdf form fields have been completed I want to be able to submit to one email address via a button as a ‘read only’ pdf file but all the tests I have done, the pdf is still in an editable format.Am I missing something here, what am I doing wrong?
We are replacing an older computer. How do we transfer our Adobe Acrobat Pro, that we installed on the old computer, onto our new computer?
Hello All,I have a substantial amount of PDF files (around 50,000) that link to other PDF files. Now, that used to work fine before NPAPI is disabled on most browser, and portable devices do not allow this kind of links. I am looking to batch change those relative links (../folder/subfolder/file.pdf) to a full URL (http://www.mysite.com/pdfdocs/law/../folder/subfolder/file.pdf). [I am just appending the full URL to the actual relative Path).Is there a way to automatically achieve this (Batch process)?I tried using regular expressions on files to change thexxx 0 obj<</F(../folder/subfolder/file.pdf)/Type/Filespec>>endobjtoxxx 0 obj <</URI(http://www.mysite.com/pdfdocs/law/../folder/subfolder/file.pdf)/S/URI>>endobjbut it turned out not to be that simple. there's so many different ways a file is referenced inside an object(not alway /F inside an single object), also the clickable area wouldn't directly reference the file, but it references another object that refe
Why is it that very large Acrobat Adobe files generated through Intuit's ProSeries software and attached to emails are easily transmitted but those Acrobat Adobe files of much smaller size created through Adobe Reader XI, Version 11.0.17 do not even transmit?
I am trying to download the free trial of Adobe Acrobat DC. It says it is downloading, but nothing is happening.
Hi!We use intensively MS Word 2013 documents for product offers. By adding a hyperlink in out company logo at the header of the .docx document, we encourage prospective clients to visit our website. We also add an email hyperlink to the company email address in the header. The email address is an image like the logo. For our clients, it would be easier, while reading our product offer, to click at the logo and access our website. Or click at the email hyperlink and send us quickly a product enquiry.The header with logo and email must be an image in order to keep consistency of the company's image in all documents.However, when the .docx document is converted into .PDF using Acrobat XI Pro, it will not keep the .docx header hyperlinks. There is of course the option I found by googling, to add a transparent shape with hyperlink in the .docx, so it will superpose over the header. However, this seems quite a bit of cave age thing to do, when we have here dozens of pdf product offers and so
Can anybody help me pls...iv installed Adobe Acrobat X standard - windowsThen lv downloaded the Acrobat Reader DC from Adobe (the free downloaded version) Im now trying to install the Adobe Acrobat 7.0 Standard - on windows 7 HP, but l keep getting below errorwhat am l doing wrong
Hey,Do you know option to do a zonal OCR in pro DC?Thanks!
We have some very large documents in secure PDF. Right now we have full security but would like to allow for pages to be extracted without losing their security. Is this possible? When I set up the security to allow Inserting, deleting, and rotating pages the extracted pages lose their security. When they try to print to a PDF and only choose certain pages they get a log file with the security message that it can't be done instead of a PDF.Thanks,Dave
I am writing a function that extracts some pages from a document so it can be used as proof. I have used a switch case that if it is true will output some pages. In the third case I want to extract the first two pages of the document, the 23rd and 24th and the two last pages. This is what I cant solve. Can I just use the this.extractPages method or do I have to use the insertPages method also. If I need the insertPages method how do I use it. The code is inside a trusted function. switch (true){ case this.numPages == 1: this.extractPages(0,0, newPath); app.alert("A one paged proof has been created",3) break; case ( (this.numPages > 1) && (this.numPages < 9) 😞 this.extractPages(0,1, newPath); app.alert("A two paged proof has been created",3) break;(PROBLEM IS HERE) case ( (this.numPages > 9) && (this.numPages < 49) 😞 this.extractPages(0,1, newPath); ap
I have created a document in Photoshop and exported it as a PDF. The font used in the document is installed in Acrobat, I have also added every character that I would be using into the document. I have saved it out as a PDF for a client who wishes to edit certain areas of text within Acrobat.When they open the document the text is garbled, sometimes they only see 'dots' or random blotches over the page. Other people who have opened the file have done so with no trouble at all apart from when they edit the document in Acrobat, it then appears pixelated and very poor quality. What is going wrong here? Everyone involved have the fonts loaded onto their machines and everyone has the same version (latest version) of Acrobat. Is there something I am doing wrong in saving the PDF out in Photoshop? I can't see what I could be doing differently at the moment.If anyone can possibly help or offer advice I'd be very grateful!! Thanks
Hi.I have created a fillable form containing javascript which was written for me. Its a calculation of 2 other columns. When i open the form in windows, it works fine. When i open in Acrobat Reader on an IPad, some of the calculations don't work. The Adobe help section says:"The form may not function properly when viewed in Acrobat Reader unless additional usage rights are added to the PDF".My questions - how to add these rights?Apologies if this is an easy one, but i cannot find any answers and the chat session was unhelpful and directed me here.
I have been trying to make custom stamps for quite some time and it the program keeps asking me for things I have no idea what it is talking about. I know I am a newbie but please help it would help my practice immensely. Thanks.
Core Sync starting unexpected sync? I am using Adobe Acrobat XI Pro under Win 10 x64. I have found folders indicating they are synced, but I didn't set them up. What could cause this?I'm not sure if this question is getting posted.
Hi,I have a 64-page PDF from my customer with more than 740 comments in it. There are almost 190 comments on a certain single page, but Acrobat won't show more than maybe 80 of those comments in the right comments window area. Even if I click on of the comments within the main window, there is just the balloon help popping up but the comment itself in the right window won't display.Is there a limit of comments per page?Has anyone encountered this behavior and knows a work-around?Thanks for your kind help,RalfP.S. Restarting Acrobat and rebooting my iMac did't help.Mac OS 10.11.6, Acrobat Pro DC (Build 15.17.20053.194476)
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.