- or
No existing idea results
- ~ No ideas found ~
13475 results found
-
Possibility to save PDF
If I open a PDF through the File Explorer (File library) and still have the file chosen in File Explorer (Highlighted in Explorer) it is not possible to save the file after commenting or editing. (another user may have the file open ...)
Please make it possible to save a PDF even if it is highlighted in File Explorer, since this a normal way of working with PDFs.3 votes -
scan dialog
Request: Improve dialog for scanning settings
Pain Point: When scanning documents, I sometimes need to select single-sided scanning and other times 2-sided scanning. It is cumbersome to have to click on the "gear icon" for document type, e.g., color and then also have to click on a very small option for 1 or 2-sided scanning.
Desired result: Build in sets of radio buttons to quickly establish document type, color mode, e.g., color, gray or black and white, and 1 sided or 2 sided scanning.
2 votes -
Streamlining "Edit PDF" menu crop page range features in Adobe Acrobat
Hello Adobe,
I do a lot of cropping of pdf file pages in the Edit PDF menu and some steps I have to repeat over and over because often the text in each page is off-center, sometimes randomly. I would like to suggest some small improvements to streamline those steps.
In the Edit PDF tool "Crop Pages" setting, you select an area and double click it which opens the "Set Page Boxes" dialogue box. Under "Page Range" you determine which particular pages this cropping will affect.
IT WOULD BE GREAT if the number indicating the last page, after the "To" box, was clickable, so that when I want the page range to go to the last page, I can just click on that number and it will appear in the "To" box, rather than I have to manually enter the last page number each time.
ALSO IT WOULD BE GREAT if the "Apply to" field was not a drop down menu, but all three choices "Even and odd pages", "Odd pages only" and "Even pages only" were readily clickable as buttons, thus saving one step of having to fold out the drop down menu.I do these steps with most PDF's I get, so the small changes I propose, will help the workflow a lot.
Thank you
Benjamin
Hello Adobe,
I do a lot of cropping of pdf file pages in the Edit PDF menu and some steps I have to repeat over and over because often the text in each page is off-center, sometimes randomly. I would like to suggest some small improvements to streamline those steps.
In the Edit PDF tool "Crop Pages" setting, you select an area and double click it which opens the "Set Page Boxes" dialogue box. Under "Page Range" you determine which particular pages this cropping will affect.
IT WOULD BE GREAT if the number indicating the last page, after the "To"…2 votes -
Scrolling prevents login
Scolling on a pdf when opening it prevents login.
Steps to reproduce:
If you open a pdf and click on the scrollbar and move it up and down login will not be done while you keep moving the bar, same think for the mouse wheel, if you keep moving the mouse wheel the login will not take place thus delaying access to features.2 votes -
unnecessary dialog on recognize text in multiple files
When doing a process to Recognize text in multiple files, an unnecessary dialog box is shown - see screenshot
This has only been added recently
1 vote -
Serbia
Please, include Serbia as a country/region in the set up of a Digital ID and signature, there is only Yugoslavia!!!!!
1 vote -
Split Pages - Page Numbers typed show letters instead - Bug
When I go to [All Tools -> Organize Pages -> Split, it displays a pop-up to enter how to split it. I generally need to use the "Number of Pages" option with it being every "1" page. When I type the # 1 with the key on top of my keyboard, all is well. However, when I type the # 1 with my number pad, the letter "a" displays instead of a 1. The same applies for 2, 3, 4, etc.. It will display b, c, d, respectively. It's not a deal breaker, but it doesn't seem to work as intended.
When I go to [All Tools -> Organize Pages -> Split, it displays a pop-up to enter how to split it. I generally need to use the "Number of Pages" option with it being every "1" page. When I type the # 1 with the key on top of my keyboard, all is well. However, when I type the # 1 with my number pad, the letter "a" displays instead of a 1. The same applies for 2, 3, 4, etc.. It will display b, c, d, respectively. It's not a deal breaker, but it doesn't seem to work as…
2 votes -
Language selection selection list too small (vertically) in new UI
The new user interface changes the way that language for OCR can be selected, and the vertical list is now too small to easily scroll through to find languages. It should be at least twice the current height.
1 vote -
Not enough room for the title of workflows in Acrobat Sign
On the “Create a New Report” page, when the “Filter by Workflow” option is selected, the list view of the workflows does not show the full workflow name.
This makes it hard to select the correct workflow since some of our workflows have the word DEV at the very end so I know which ones are out test forms versus our live forms.
It would also be helpful if these workflows were listed in ABC order.On the “Custom Workflows” page, I have a similar issue with the Workflow Title not showing enough characters.
When you click on the workflow to open it, the title is shorten even more.On the “Create a New Report” page, when the “Filter by Workflow” option is selected, the list view of the workflows does not show the full workflow name.
This makes it hard to select the correct workflow since some of our workflows have the word DEV at the very end so I know which ones are out test forms versus our live forms.
It would also be helpful if these workflows were listed in ABC order.On the “Custom Workflows” page, I have a similar issue with the Workflow Title not showing enough characters.
When you click on the workflow…1 vote -
Bug when searching words with search.query() from JavaScript
I found a fatal language-dependent bug in advanced search.
Using "Advanced Find" to find words in a PDF, actions that could be done manually did not work in Javascript.
Write a sample script below.
Create a file in UTF-8 .js file format and place the file in "C:\Program Files\Adobe\Acrobat DC\Acrobat\Javascripts".
Then restart Acrobat and you should see a new menu at the top within the File menu.
This script can be run from there.
When the script runs, the text in the open PDF is examined to see if it contains the searched characters.
However, we have confirmed that Unicode characters other than English such as Japanese and Chinese cannot be searched normally under the following conditions.
If you set Acrobat's menu language to Japanese, basic English and Japanese characters will get search support, but Chinese characters will not be recognized and will be garbled.
If Acrobat menu language is set to English, all non-English characters are garbled.It seems to rely on menu language settings, but these are not manifested when doing a manual search.
So the internal behavior of running the script is not adjusted, causing problems.My environment uses both Win10 and Win11.
Acrobat Pro is the latest version.Originally, the text to be searched is entered in the text box, but if the text is garbled, the target character is replaced with a period.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-= JavaScript =-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//add new menu button
app.addSubMenu(
{
cName: "Test Script",
cParent: "Edit", nPos: 0
}
);//add sub menu
app.addMenuItem(
{
cName: "Test Search",
cParent: "Test Script",
nPos:0,
cEnable:!1,
cExec: "TestSearchFunc()"
}
);TestSearchFunc = app.trustedFunction(
function (){//search options search.wordMatching = "MatchAnyWord"; search.matchWholeWord = false; search.matchCase = false; search.proximityRange = false; search.stem = false; search.bookmarks = false; search.markup = false; search.attachments = false; var str = "Search Text. JP Text > 日本語 China Text > 国际级"; search.query(str, "ActiveDoc"); }
);
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
I can't predict whether there is any merit in restricting searchable characters by language. If I had to say it, would it be racism or a protest against the government? lol
I found a fatal language-dependent bug in advanced search.
Using "Advanced Find" to find words in a PDF, actions that could be done manually did not work in Javascript.
Write a sample script below.
Create a file in UTF-8 .js file format and place the file in "C:\Program Files\Adobe\Acrobat DC\Acrobat\Javascripts".
Then restart Acrobat and you should see a new menu at the top within the File menu.
This script can be run from there.
When the script runs, the text in the open PDF is examined to see if it contains the searched characters.
However, we have confirmed that Unicode…1 vote -
How to Fix QuickBooks Unrecoverable Error?
QuickBooks is a versatile bookkeeping and accounting software that helps small and mid-sized business owners do multi-tasking in a seamless manner. With the help of this robust software, business owners can perform most of the complex tasks, such as tracking expenses, managing cash flow, creating invoices, preparing for taxes, etc., with ease. Over the years, several features have been introduced in the software which will assist you in performing your accounting tasks easily without having to face any difficulty.
Read more: https://bit.ly/3W2nNkC
1 vote -
Enable Reader to be customised
I mark up, comment, to 50 student scripts in a day. For every file I load, I have to click 3 buttons.
How can I set up Reader so every time I open a file, all those buttons are already clicked?2 votes -
Adobe Sign - Control of PDF attachment to email on completed signed document
I have documents with sensitive information that need signature. I do not want the signed document to be sent to the receiver once it is signed because I do not want their sensitive information sitting in their email for potential hackers. Why does this take a support call to have you disable the feature from the backend? This should be a preference for the users in their account settings.
Secondly, I still want a copy of the signed document with the audit report as the last page. Yet, once this feature is disabled, I can no longer receive a copy. Not by email or to download online. I only want the receiver to not receive the PDF. Me as the sender still wants the PDF emailed to me. Your backend is both or none.
As an email, I could drag and drop the completed signed document with the audit report in less than 1 second. Now I have to go online to retrieve the signed document AND retrieve the audit report. This is a HUGE workaround just to be sure my files are safe and secure. Please make some changes here.
- Make the email PDF preferences available to users. 2. Make the sender and receiver email PDF separate choices. 3. Make a PDF available online to download that includes the signed copy with the audit report as the last page - same as what you would receive as a PDF in email.
I have documents with sensitive information that need signature. I do not want the signed document to be sent to the receiver once it is signed because I do not want their sensitive information sitting in their email for potential hackers. Why does this take a support call to have you disable the feature from the backend? This should be a preference for the users in their account settings.
Secondly, I still want a copy of the signed document with the audit report as the last page. Yet, once this feature is disabled, I can no longer receive a copy.…
3 votes -
1. Printing and saving from Chrome stinks 2. Having to login is irritating.
Printing and saving from Chrome does not work.
Acrobat reader's usability deteriorates continuously over time.2 votes -
Add script interpreter
Add an script Interface (python/powershell/tcl/perl) to process pages in sophisticated or automated ways. Tasks like preparing booklets for book assembling cannot be done automatically
1 vote -
Edit Image -> Edit Using
Edit Image -> Edit Using -> Open With...
The external image editing software I had was installed to a different drive than the C drive. Even though I pointed Adobe to where the EXE was, Adobe just gave an error that it was unable to open the image in the external application. I uninstalled my image editing app, re-installed to the C drive, pointed Adobe to the new path and the image editing app launched and opened the image.Adobe should not require the external app to be installed to the C drive in order to function.
2 votes -
Get with the program and make a dark mode.
We live in the future now. the 90's were more than 20 years ago. I am uninstalling your product & using someone else's because you couldn't be bothered to provide basic accessibility. Nobody needs to ruin there eyesight for Adobe.
3 votes -
Blinking Forms
Form endlessly blinks, the text does not show properly as you are typing, very slow if you try to suffer through and use it anyway (color wheel appears after a few clicks). This is only an issue on my new MacBook Pro (M1 with Big Sur). My 2015 iMac with Catalina does not have the same issue.
63 votesHi, This issue has been escalated. Currently engineering team is working on the fix. Please expect the fix soon.
-
Need to create an option in Adobe Acrobat Pro to allow for vertical split window of a single document
The current Adobe Acrobat Pro only allows a quick menu selection of >Windows > Split. This will give the user the ability to view a single document in two windows HORIZONTALLY (i.e. above and below). Because most pages are oriented in a Portrait orientation, it is more efficient to view documents VERTICALLY (i.e. side by side). It would be very easy for Adobe to add the programming option to be able to split this window vertically and very quickly by adding another menu option under "Windows > Split" to select the ability to split vertically or horizontally. Everyone's work to review different pages of the same document would be exponentially faster and more efficient.
The current Adobe Acrobat Pro only allows a quick menu selection of >Windows > Split. This will give the user the ability to view a single document in two windows HORIZONTALLY (i.e. above and below). Because most pages are oriented in a Portrait orientation, it is more efficient to view documents VERTICALLY (i.e. side by side). It would be very easy for Adobe to add the programming option to be able to split this window vertically and very quickly by adding another menu option under "Windows > Split" to select the ability to split vertically or horizontally. Everyone's work to…
1 vote -
Format settings for text not saved
I would enter the four values under the heading FORMAT for text in the book. Also, I was using Adobe Caslon Pro font. I would save the document at the end of my session. When I opened the document the next day, some of the sections of text had different values. This forced me to check each of the sections of text I had edited. Some had retained the correct values, but many had changed and had to be re-entered. Also, some of the sections of text had changed from Adobe Caslon Pro to Minion Pro or New Times Roman. This caused my project to extend far beyond the time expected. I had to pay for an extra month of subscription in order to finish the book.
I would enter the four values under the heading FORMAT for text in the book. Also, I was using Adobe Caslon Pro font. I would save the document at the end of my session. When I opened the document the next day, some of the sections of text had different values. This forced me to check each of the sections of text I had edited. Some had retained the correct values, but many had changed and had to be re-entered. Also, some of the sections of text had changed from Adobe Caslon Pro to Minion Pro or New Times Roman.…
1 vote
- Don't see your idea?