bebarth
Community Expert
bebarth
Community Expert
Activity
‎Feb 27, 2024
10:17 AM
Hi,
Here is a first working file I did rather quickly, but I am locked with few problems for a couple of days.
It seems that works pretty fine when modifications are done from the end of the text except when we add a new character just after the last one following the "fieldFull" flag.
Example in my attached file:
If I delete the "d" character
then I re-add it, the field becomes blank
while if you delete the "d" then the "l"
you can continue typing correctly
An other problem is when we add some charaters a the middle of the text field. At the next "fieldFull" flag the cursor comes back at the end of the text, so it's not possible to directly continue the typing...
If you have an idea!!!
Let me know if you think these are problems that can be solved...
I hope you will understand my logic!
Ps: You can take your time 😉 I will not able to take care of that for few days;
@+
... View more
‎Feb 24, 2024
03:09 PM
Here is a file with my mage and your mask.
@+
... View more
‎Feb 24, 2024
12:44 PM
Could you please share your png file?
@+
... View more
‎Feb 24, 2024
02:11 AM
... and residence2==residence1 in your example???
That's working find for me!
@+
... View more
‎Feb 24, 2024
01:44 AM
Hi,
Try this condition instead of yours:
if (event.source && event.source.name=="4" && residence2==residence1 && this.getField("4").value!="") event.value=this.getField("4").value;
@+
... View more
‎Feb 23, 2024
03:43 PM
I did a solution resizing the field from a button, but it only works with Acrobat Pro as you must add it temporary add a new page, so you must add an application script:
if (app.formsVersion>=8) {
ajoutPage=app.trustedFunction(function(cettePage,largeur,hauteur) {
app.beginPriv();
this.newPage(cettePage,largeur,hauteur);
app.endPriv();
});
suppressionPage=app.trustedFunction(function(cettePage) {
app.beginPriv();
this.deletePages(cettePage);
app.endPriv();
});
}
See the attached file (in French) and if it interests you, tomorrow I will translate the script in English...
For the fieldFull method, I will look for...
@+
... View more
‎Feb 23, 2024
03:23 PM
Great! That works fine, thanks.
I had a first thought about how to resize the field when you delete some texts, but so far I haven't found...
I will continue to look for.
@+
... View more
‎Feb 23, 2024
11:58 AM
5 Upvotes
Hi,
I am looking for resizing automatically the height of a field according to the number of lines with the fieldFull method.
Here is the script I tryed:
if (event.fieldFull) {
//app.alert("The text field is full.\rWe are going to increase its height to be able to continue typing.");
var nomChamp=event.target.name;
this.resetForm([nomChamp]); // Reset field to lose focus
var aRect=event.target.rect;
aRect[3]=aRect[3]-event.target.textSize*1.16;
event.target.rect=aRect;
event.change=event.changeEx;
this.getField(nomChamp).setFocus();
}
That works approximatly because I lose the focus of the field and I need to type on this field to continue typing... Is there a way to avoid that?
P.S.: The 1.16 line spacing ratio is used for the Helvetica font.
... View more
‎Feb 23, 2024
11:40 AM
Hi,
Attached is an example i did recently, but you have to indicate the number of lines you want...
Is it something like that you want?
@+
... View more
‎Feb 23, 2024
04:43 AM
Hi,
...or you can hide the date field and show a text field with the "Present" word just before printing, then come back with the visible date field.
I guess that must be done only if the printing date is the same as the date field!
@+
... View more
‎Feb 21, 2024
10:25 AM
Hi,
I did an answer for a similar problem on this post:
https://community.adobe.com/t5/acrobat-discussions/dropdown-list-exporting-a-simplified-link/td-p/13488479
Please have a look, that could help you.
@+
... View more
‎Feb 20, 2024
10:36 AM
??? I guess it's the same time as your computer!
@+
... View more
‎Feb 20, 2024
05:05 AM
bonjour, Il y a plusieurs posts qui traitent de ces listes sur ce forum français :
https://www.abracadabrapdf.net/forums/forum/pdf-general/
Il existe plusieurs façons de traiter le sujet en fonction de ce que tu veux faire exactement et à partir de quoi tu extrais ces données...
Exemple ci-joint.
@+
... View more
‎Feb 19, 2024
11:30 PM
Hi,
That means when you create a stamp with Acrobat, it is located in the Acrobat "Stamps" folder. And if you want to add a stamp you must to place the .pdf file of that stamp into that folder... To find the path of that folder, you can run that script from the console window:
app.getPath("user", "stamps");
and if you want to try my stamp, place it into that folder.
@+
... View more
‎Feb 15, 2024
10:25 AM
Hi,
Do you want to automatically generate a contact sheet?
@+
... View more
‎Feb 10, 2024
05:10 AM
Attached is an example of what you could do.
There are white invisible fields on screen but visible when printed to hide the borders of the labels.
The other masks are visible when the check boxes are unticked.
The check boxes are visible on screen but invisible on printing.
@+
... View more
‎Feb 10, 2024
01:50 AM
Hi,
That is possible, but the way will depend on your pdf file.
If the labes you want to print are located into fields you can use "display.noPrint" for their display propertie, if they are parts of the pdf sheet you will have to create masks...
@+
... View more
‎Dec 21, 2023
10:52 AM
Hi,
Did you try the script?
@+
... View more
‎Dec 21, 2023
07:46 AM
1 Upvote
Sorry, but I don't think "the pdf become unstable"... but I can't tell you what's happening! Try to share a file then I'll let you know if it works fine for me.
@+
... View more
‎Dec 21, 2023
03:59 AM
2 Upvotes
Hi, Try using the loose equality (==) instead of the strict equality (===)!
// Custom Format Script
var MyGreen = ["RGB", 210/255, 255/255, 207/255];
var MyYellow = ["RGB", 255/255, 254/255, 176/255];
var MyOrange = ["RGB", 255/255, 206/255, 153/255];
var MyRed = ["RGB", 255/255, 178/255, 178/255];
var fieldValue = event.value;
if (fieldValue == "1") {
event.target.fillColor = MyGreen; // Light green
} else if (fieldValue == "2") {
event.target.fillColor = MyYellow; // Yellow
} else if (fieldValue == "3") {
event.target.fillColor = MyOrange; // because shade of orange
} else if (fieldValue == "4") {
event.target.fillColor = MyRed; // Red
} else {
// Reset the background color to default if not 1, 2, 3, or 4
event.target.fillColor = color.transparent;
}
Let me know!
@+
... View more
‎Dec 18, 2023
11:30 PM
Hi,
Here is my proposal.
Let the drawing where you want to apply the stamp.
You run this script from an action wizard:
var mm2pt=72/25.4;
var delta=15*mm2pt;
// Stamp
var width=173*mm2pt;
var height=81*mm2pt;
var f=this.addField("theStamp","button",0,[delta,delta+height,delta+width,delta]);
f.strokeColor=color.red;
f.buttonPosition=position.iconOnly;
f.buttonImportIcon("BHP Approval Stamp_2023.pdf");
// Signatures
var signatureNames=["reviewed","engineered","checked","drawn"];
var signatureWidth=82*mm2pt;
var signatureHeight=10*mm2pt;
var signature0=[86.4*mm2pt,14.2*mm2pt];
for (var i=0; i<4; i++) {
var f=this.addField(signatureNames[i],"signature",0,[signature0[0]+delta,signature0[1]+signatureHeight*i+delta,signature0[0]+signatureWidth+delta,signature0[1]+signatureHeight*(i-1)+delta]);
}
...
the stamp appears at the bottom-left corner of the drawing.
You can then select all fields and move them at the place you want.
All signature fields are usable.
In my example, the stamp file is located in the same folder as the drawing file, but in the script you can indicate any other path.
Let me know.
@+
... View more
‎Dec 18, 2023
08:14 AM
...let me know if you are interested by this solution !
@+
... View more
‎Dec 18, 2023
02:10 AM
Hi, You can't do that from a stamp!
Fields included in a stamp are flattened when that stamp is applied.
This should be possible to do that with an action wizard...
@+
... View more
‎Dec 05, 2023
09:42 AM
Hi,
Here is a "simple" script that should suit your request.
var searchedText="expressions";
var linkPage=37; // Absolute
for (var p=0; p<this.numPages; p++) {
var nbWords=this.getPageNumWords(p);
for (var i=0; i<nbWords-1; i++) {
if (this.getPageNthWord(p,i,true)==searchedText) {
var q=this.getPageNthWordQuads(p,i);
var m=(new Matrix2D).fromRotated(this,p);
var mInv=m.invert();
var r=mInv.transform(q);
var r=r.toString();
var r=r.split(",");
var f=this.addField(searchedText+"Bt","button",p,[Number(r[0]),Number(r[1]),Number(r[6]),Number(r[7])]);
f.fillColor=color.transparent;
f.userName="Link on page "+linkPage;
f.setAction("MouseUp", "this.pageNum="+(linkPage-1)+";");
}
}
}
But the processing time for word recognition depends on the number of pages and the number of words per page and can be very long. I remember some years ago do approximately the same script and that took more than 12 hours for a 1500-page document. So, it is therefore important to display the progress of the process in order to check where it is and if Acrobat doesn't crash. For the example I did:
Here is the script:
console.show();
console.clear();
d0=new Date();
debut=util.printd("dd-mm HH:MM",d0);
laDate=util.printd("dd-mm-yy",d0);
var searchedText="expressions";
var linkPage=37; // Absolute
var nbFound=0;
var wordsInBook=0;
for (var p=0; p<this.numPages; p++) {
var nb=0;
var nbWords=this.getPageNumWords(p);
for (var i=0; i<nbWords-1; i++) {
wordsInBook++;
console.clear();
console.println("Process Starting: "+debut);
console.println("––––––––––––––");
console.println(nb+" word(s) found on page #"+(p+1)+", "+nbFound+" word(s) in total.");
if (this.getPageNthWord(p,i,true)==searchedText) {
var q=this.getPageNthWordQuads(p,i);
var m=(new Matrix2D).fromRotated(this,p);
var mInv=m.invert();
var r=mInv.transform(q);
var r=r.toString();
var r=r.split(",");
var f=this.addField(searchedText+"Bt","button",p,[Number(r[0]),Number(r[1]),Number(r[6]),Number(r[7])]);
f.fillColor=color.transparent;
f.userName="Link on page "+linkPage;
f.setAction("MouseUp", "this.pageNum="+(linkPage-1)+";");
nbFound++;
nb++;
}
}
}
df=new Date();
fin=util.printd("dd-mm HH:MM",df);
temps=(df.valueOf()-d0.valueOf())/1000/60;
var lesMinutes=parseInt(temps);
var lesSecondes=(temps-lesMinutes)*60;
var lesSecondes=parseInt(lesSecondes*10)/10;
var leTemps="";
if (lesMinutes>0) {
if (lesMinutes==1) {
var leTemps="1 minute";
} else {
var leTemps=lesMinutes+" minutes";
}
}
if (lesSecondes>0) {
if (lesSecondes<2) {
var leTemps=leTemps+" "+lesSecondes+" second"
} else {
var leTemps=leTemps+" "+lesSecondes+" seconds"
}
}
var leTemps=leTemps.replace(/^\s+|\s+$/gm,"");
console.clear();
console.println("Process Starting: "+debut);
console.println("Process Ending: "+fin);
console.println("––––––––––––––");
console.println("Process Duration: "+leTemps);
console.println(nbFound+" word(s) found on the "+this.numPages+" pages with a total of "+wordsInBook+" words.");
Of course, this script can be improved according to your real needs.
Let me know.
@+
... View more
‎Dec 04, 2023
10:53 PM
Definitely a memory problem with Acrobat.... I can't tell you!
@+
... View more
‎Dec 04, 2023
01:48 PM
Did you try to quit Acrobat after each 6000-page file?
... View more
‎Dec 04, 2023
12:11 PM
if you try to quit Acrobat after each 6000-page file!
What is the size of your entire file?
... View more
‎Dec 04, 2023
11:43 AM
I don't have a huge file as yours...
Do a test with a 24-page file for example then if that works without crashing with a 300-page file!
Does that work?
Is the process displayed in the console window ?
@+
... View more
‎Dec 04, 2023
06:12 AM
As try67 says, you have to think carefully about what you want at the end before launching into this programming! ... and good luck if you're new to JavaScript, but it's possible. One of my firs progam was something like that. At the time, it took me several days of programming...
Most of the time we use links to carry out this type of ation, but if we want to indicate the reference in a tooltip, couldn't we use buttons with a transparent background? Is the link always a year (e.g. 2016)? What is the size of the document? Would there be a lot of different links to reference?
Do you want to execute several link at the same time...
@+
... View more
‎Dec 02, 2023
05:34 AM
Hi,
This simple script can be executed with an action wizard or from the console window:
for (var i=this.numPages-6; i>=0; i-=6) {
this.deletePages({nStart: i+2, nEnd: i+5});
}
this.saveAs(this.path.replace(/.pdf$/i," \(2 pages kept every 6 pages\).pdf"));
The script save the new file with a new name in the same folder as the original one.
But with the number of pages, I suggest to display the progess of the process with this one:
console.show();
console.clear();
d0=new Date();
debut=util.printd("dd-mm HH:MM",d0);
laDate=util.printd("dd-mm-yy",d0);
var nb=0;
for (var i=this.numPages-6; i>=0; i-=6) {
console.clear();
console.println("Process Starting: "+debut);
console.println("––––––––––––––");
console.println("Removing group #"+(nb+1)+" from page #"+(i+1));
this.deletePages({nStart: i+2, nEnd: i+5});
nb++;
}
this.saveAs(this.path.replace(/.pdf$/i," \(2 pages kept every 6 pages\).pdf"));
df=new Date();
fin=util.printd("dd-mm HH:MM",df);
temps=(df.valueOf()-d0.valueOf())/1000/60;
var lesMinutes=parseInt(temps);
var lesSecondes=(temps-lesMinutes)*60;
var lesSecondes=parseInt(lesSecondes*10)/10;
var leTemps="";
if (lesMinutes>0) {
if (lesMinutes==1) {
var leTemps="1 minute";
} else {
var leTemps=lesMinutes+" minutes";
}
}
if (lesSecondes>0) {
if (lesSecondes<2) {
var leTemps=leTemps+" "+lesSecondes+" second"
} else {
var leTemps=leTemps+" "+lesSecondes+" seconds"
}
}
var leTemps=leTemps.replace(/^\s+|\s+$/gm,"");
console.clear();
console.println("Process Starting: "+debut);
console.println("Process Ending: "+fin);
console.println("––––––––––––––");
console.println("Process Duration: "+leTemps);
console.println(nb+" groups removed.");
console.println("Final file with "+this.numPages+" pages.");
@+
... View more