Copy link to clipboard
Copied
Hi,
I used "text locked" for one certain document for my client but since then my adove does not let me type text.
So far I tried following steps..
- Unselected "lock" and marked "Make Propteries defalt" on the original document
- Deleted the original document
Anyone please help me to solve this iuuse since I need to add some text on pdf files for my work....
Thank you
Copy link to clipboard
Copied
Hi there
Hope you are doing well and sorry to hear that.
Regards
Amal
Copy link to clipboard
Copied
Hi Amal,
Thank you for your response.
Please see my answers as below
(1) I took the steps; right click --> properties --> maeked "Locked" for the sentence I wanted to uneditable.
(2) There is no error message or anything but when I work on different pdf files and try to add text, it just does not let me type anything and shows up the lock-sign on the right side.
(3) No I did not sign on my pdf file.
Please let me know if you need more info from me.
Thank you
Copy link to clipboard
Copied
Click the comment, then press Ctrl+J and paste the following code into the Console window that opens:
this.selectedAnnots[0].setProps({lock: false, readOnly: false});
Then select it with the mouse or keyboard and press Ctrl+Enter. That will unlock the selected comment. Then right-click it and set its properties as the new defaults.
If you want to unlock all the comments in the file at once use this code:
this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
for (var i in annots) {
var annot = annots[i];
annot.setProps({lock: false, readOnly: false});
}
}
Copy link to clipboard
Copied
Hi I apologize for my late response.
It does not allow me to use the feature. Is there any other way to fix this problem?
Thank you
Copy link to clipboard
Copied
I AM HAVING THE SAME ISSUE, CAN NOT FIND A SOLUTION. DID YOU HAPPEN TO FIND ONE?