Questions
Als letztes aktiv
Hi gang - I just created a document with e-signatures attached to it. However, when I sent out the file, Adobe changed the document title in the Outlook Email to reflect a Client that I worked with 2 years ago. The actual document sent was correct. However, the Title was changed. How do I fix the document so that the end user doesn't see an prior client's name in the email title?
Like the title says, I have a dropdown box that shows stacked images when the text is called. All images are hidden until visible. Here is my code:if (event.value == "Alto") { this.getField("unit_info_type").value = "Mech"; this.getField("alto").display = display.visible; this.getField("portanova").display = display.hidden; this.getField("revernova").display = display.hidden; } else if (event.value == "Portanova") { this.getField("unit_info_type").value = "Mech"; this.getField("alto").display = display.hidden; this.getField("portanova").display = display.visible; this.getField("revernova").display = display.hidden; } else if (event.value == "Revernova") { this.getField("unit_info_type").value = "Mech"; this.getField("alto").display = display.hidden; this.getField("portanova").display = display.hidden; this.getField("revernova").display = display.visible; } else { this.getField("unit_info_type").value = ""; this.getField("alto")
Dear Community,I couldn't quite find what I was looking for using the search function, so here is my question:I would like to implement a button on a PDF using Java Script, that saves the PDF locally in the current state via a mouse up trigger and, ideally, adds a time stamp to the name.My first attempts were not successful, hence my question to you pros:Is this even possible? (access rights etc.)Thanks a bunch for any help in Advance!!
Buenos dias; tengo un problema al abrir un archivo de año 2016 con Acrobat Pro lo abre pero al querer mover a la siguiente pagina se encicla el programa y tengo que finalizar la tarea, el desinstale el Acrobat y tambien el Creative Cloud reinstale todo esta actualizado y hace lo mismo, si abro otros archivos de años mas reciente no tiene problemas, este archivo si lo abro con el Acrobat Web se abre correctamente no me genera ningun problema, hice una prueba de abrirlo con Adobe Reader y lo abre bien no tengo problemas al visualizarlo, cual puede ser el problema con Acrobat Pro?. Gracias
I have a large Word365 document that contains 120 high-res JPEG images and want to create a PDF without loss of image quality. I tried to use Adobe online tools but this failed because it apparently has a max size of 150mB - my file is close to 500mB. I have read countless posts on this subject but still cannot find a way forward. My only remaining idea is to subscribe to Acrobat but I am not sure whether this will cope with such a large file - it would also make the single PDF rather expensive. Any comments or suggestions will be welcomed.
Dear All,since one day Adobe Acrobat DC cannot be used anymore and cannot be installed again.Anyone has the same problem? ciao Tom
Hi Adobe Team, I am facing an issue with the activation of my Adobe Acrobat perpetual license.The license has been working fine on my old and new devices. However, on some laptops where it was previously activated and functioning without any issues, I am now encountering a sudden deactivation problem.These laptops were working perfectly with the same license until recently. Now, they are showing as not activated, despite no changes being made to the devices or the software installation.Could you please assist in resolving this issue? Let me know if you need any additional details, such as license information or logs, to investigate further.Thank you for your support! Mohieldin Magdi
Acrobat is unusable why on earth are they trying to charge for it? I remember using this program not too long ago and I was able to accomplish my tasks but now it just full of error messages and glitches. As of 1/8/25 this program is garbage and Adobe should be ashamed of themselves for trying to charge a fee. WASTE of time and money aviod Acrobat at all costs as it is USELESS!!!!
Hello! I have been using the mobile app Adobe Scan for some time and love it, however as of recently it has stopped working. I scan on the app no problem, and can view the document on the app itself, but when I try to open it on my laptop I get this error message every time:I have tried many things without avail, I am hoping this community can offer me some suggestions.Thanks in advance.
buena tarde tengo un disco de instación de abode acrobat XI standar, donde tengo el numero de serie para su activación, lo tiene instalado en dos maquinas, que se descompusieron, al comprar maquina nuevas quise instalar el programa del abobe acrobat XI standar y me dice que el numero de serie ya esta en uso, me pueden ayudar que debo hacer por favor mi correo es [Private info removed]
When my dropdown menu selects a rank, specific text field become visible. The issue is, when a rank that has more visible text fields is selected before one with less, you can still see the text fields. if (event.value == "Rank | 1") { this.getField("pilot_info_rank_dc").value = "0"; this.getField("SMT_trait_name1.0").display = display.visible; }else if (event.value == "Rank | 2") { this.getField("pilot_info_rank_dc").value = "20"; this.getField("SMT_trait_name1.0").display = display.visible; this.getField("SMT_mod_name1.0").display = display.visible; }else if (event.value == "Rank | 3") { this.getField("pilot_info_rank_dc").value = "60"; this.getField("SMT_trait_name1.0").display = display.visible; this.getField("SMT_mod_name1.0").display = display.visible; this.getField("SMT_mod_name1.1").display = display.visible; }else if (event.value == "Rank | 4") { this.getField("pilot_info_rank_dc").value = "120"; this.getField("SMT_trait_name
Bonjour, Quand j'enregistre un fichier Excel en PDF, des zéros sont ajoutés à tous les nombres dans le PDF. J'ai déjà réinstallé l'application ACROBAT. L'erreur se produit sur tous mes Mac. Merci pour votre aide.
I'm trying to have a digital signature block validate other required text blocks when signing, and then if the required blocks aren't completed, then have the signature block cleared with a warning pop up saying " Please fill out all Required fields." while having the Digital Signature block be required and reset the block back to required if it is not signed, I just can't figure out the JavaScript for this feature.
I came across this update: https://community.adobe.com/view/t5/acrobat-discussions/adobe-acrobat-and-reader-december-2024-updates-now-available/td-p/15048103 and it looks impressive. I am curious do the new AI Assistant features like contextual prompts and intuitive categorization, require specific hardware specs or additional permissions to function fully? Also since the rollout is phased, is there any way to know when these features will be available for everyone?
Hello,I have attached a KMZ file to my PDF and I would like to have the viewer click a link in the document copy and have that file open. How do I do this?
I have a date field where I need a certain format for the date but I have a custom format script showing an instruction that will go away once the applicant types text in the field. For example, I want the applicant to see (MM/DD/YYY) on the text field. If they type in it, then that default instructional text will be replaced. I also want the date format (which is already available in the options) to be applied. Here is the custom script I have for the default instructional text:// Custom Format script for text field if (!event.value) { event.value = "text goes here"; event.target.display = display.noPrint; } else { event.target.display = display.visible; } Is it possible to have 2 or more custom scripts at the same time?
Acrobat appears to have three options for adding signatures: "Add a digital signature," which is the one in Acrobat Form and the one I have used. Then there are "Add a signature field" and "Add a signature block" under Prepare Form for E-signing. I don't understand what those two are for and what situation they'd be used in. Can anyone help explain this to me?
This is a continual problem where the Actobat is not responding, so I force quit. It WILL NOT repon. I've had to reinstall several times. The last time I found a fix that instructed me to go to Activity Monitor and quit certain functions. I can't find that post now and am not sure what is going on and how I can fix this so it will not continualy happen.
When I use Send for Shared Commenting, I use a company internal network drive for shared reviews. This was working fine until I received the last update to Acrobat in late October; now, when I select the location, I receive an error that shares "Adobe Acrobat cannot write to the file destination provided. Enter a valid file location." I verified that I have full rights to this location and tested to make sure that I can create and write to files and folders there. My company help desk also had me try another location that I have full rights to. Another writer at my company who uses this process gets the same error on locations that have worked up to now. Was this broken with the latest update? If so, how soon will it be fixed?
Hello, I have some coworkers that have their files autosaving to the desktop. They are not manually saving these files. The bad part is they won't even show up until the next day on the desktop. For example this happens when opening a PDF from an email when you don't actually need to save the file.
I work with newest version of Acrobat DC running on Mac OS Ventura. Is there finally a solution to disable this annoying start screen?
Adobe Acrobat Pro Version 2023.006.20320macOS Monterey Version 12.6.8Printing on an HP Color Laser Jet Pro MFP I have printed thousands of A7 envelopes. My Adobe Acrobat recently updated and now they will not print correctly. I have the custom size entered into the print settings in Acrobat. I am doing everything the same as I have always done it. The only difference being the newly updated Acrobat. I finally got it to align properly when I feed through tray 1, but this means I have to hand feed each envelope one-by-one. I am a graphic designer printing many wedding envelopes, so this will not work for me. Hoping there is a solution to this. Is anyone else having this issue with the new Acrobat?
My other CC apps appear to work ok but I can't open pdfs on my Windows. I've tried uninstalling and reinstalling the app but it stilll won'd work. I get the following error message.I'm running Windows 11 Update 24H2
I've recently purchased a plan for my business since I use Adobe Acrobat a lot.My current version is: Continuous release Version 2024.005.20320 64 bitMy problem is:Whenever I open a PDF it will open successfully, but soon after I will get a message..."contacting http://ocsp.digicert.com for ISCP based revocation checking, press ESC to cancel"Whether I let it continue until the process seems to have completed or whether I cancel the result is the same - everything on the Adobe Acrobat open screen freezes up. I have to go toWindows and close the window and restart from scratch.The result is I am currently paying for the full Adobe Creative / Acrobat and yet using "iLovePDF"online to work with my documents. I have tried repairing the initial install and still have the same issue, should I cancel my plan??? What's wrong with this picture???????? and more to the point what the he!! is to be done to correct this huge inconvenience and quickly!!!
Handout for April 26, 2017 User Community Meeting on Accessibility.
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.