RTTSoftware Support Forum

PDF-ShellTools => Ideas/Suggestions => Topic started by: nightslayer23 on May 18, 2021, 02:30:55 AM

Title: Stamps: Filename (without file extension)
Post by: nightslayer23 on May 18, 2021, 02:30:55 AM
What would be the code to add the filename as an option in your stamping tool but exclude the ".pdf"
Title: Re: Stamps: Filename (without file extension)
Post by: RTT on May 19, 2021, 02:09:38 AM
Add a text stamp and set it dynamic. Click the configure button and from the script type objects options add a new script and name it FilenameNoExt.
Set the script code as:
Code: [Select]
function FilenameNoExt() {
    var Filename = BatchFile.filename;
    return Filename.substring(Filename.lastIndexOf('\\') + 1, Filename.lastIndexOf('.'))
}
You can now type [<FilenameNoExt>] as the stamp text to stamp the PDF filename without the file extension.
Title: Re: Stamps: Filename (without file extension)
Post by: nightslayer23 on June 23, 2021, 07:10:59 AM
WOO! LEGENDARY
Title: Re: Stamps: Filename (without file extension)
Post by: nightslayer23 on October 07, 2022, 07:53:21 AM
How can we add more font choices to the list?
Title: Re: Stamps: Filename (without file extension)
Post by: RTT on October 08, 2022, 01:42:36 AM
That's not possible with the current version. Only the standard PDF fonts can be used.