PDF-XChange 4.0.0 Build 0148 File Tile Oddity

This Forum is for the use of End Users requiring help and assistance for Tracker Software's PDF-XChange Printer Drivers only - Please do not post requests for older versions of PDF-XChange or the PDF-Tools/OFFice2PDF applications here

Moderators: TrackerSupp-Daniel, Tracker Support, Vasyl-Tracker Dev Team, Chris - Tracker Supp, Sean - Tracker, Tracker Supp-Stefan

Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

When "printing" Lotus programs with PDF-XChange, the file name are preceeded by "Word Pro - " on Word Pro files and "1-2-3 - " on Lotus 1-2-3 files.

I have verified in the Printer Save preferences, the Save as dialog is %[DocName]

Lotus 1-2-3 and Lotus Word Pro sample and PDF files are attached - Oddity.zip
You do not have the required permissions to view the files attached to this post.
Don
Vancouver, USA
User avatar
Ivan - Tracker Software
Site Admin
Posts: 3550
Joined: Thu Jul 08, 2004 10:36 pm
Location: Vancouver Island - Canada

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Ivan - Tracker Software »

Simple solution for now: into the folder pdfSaver which is located into installation folder of PDF-XChange, there is file titrules.js.

Open it using simple text editor (notepad.exe for example) and replace docname = like_DefaultApp(jobname); with docname = like_WINWORD(jobname); into the following text:

Code: Select all

// ------------	
	default:				// Any other application
		if (jobName == "")
			jobName = event.appName;
		docName = like_DefaultApp(jobName);
	}
P.S. Please make backup of original .js file before modification it.
Tracker Software (Project Director)

When attaching files to any message - please ensure they are archived and posted as a .ZIP, .RAR or .7z format - or they will not be posted - thanks.
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

That fixed it. Many thanks.
Don
Vancouver, USA
User avatar
Ivan - Tracker Software
Site Admin
Posts: 3550
Joined: Thu Jul 08, 2004 10:36 pm
Location: Vancouver Island - Canada

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Ivan - Tracker Software »

can you say me executable names for Lotus 1-2-3, and for Word Pro -- I will add their handling into titrules.js file.
Tracker Software (Project Director)

When attaching files to any message - please ensure they are archived and posted as a .ZIP, .RAR or .7z format - or they will not be posted - thanks.
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

Forgive my ignorance but what would be the executable name? The file extensions? .123 and .lwp <-- That is the letter l not a one.
Don
Vancouver, USA
User avatar
John - Tracker Supp
Site Admin
Posts: 5219
Joined: Tue Jun 29, 2004 10:34 am
Location: United Kingdom

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by John - Tracker Supp »

Hi Don,

no - this would be the 'exe' name for starting these applications

for example it might be Lotus123.exe

thanks
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

I should have figured that out :oops:

For Lotus 1-2-3 the executable is 123w.exe (Lotus for Windows)

For Lotus Word Pro the executable is wordpro.exe
Don
Vancouver, USA
User avatar
John - Tracker Supp
Site Admin
Posts: 5219
Joined: Tue Jun 29, 2004 10:34 am
Location: United Kingdom

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by John - Tracker Supp »

Thanks Don,

this will added in the next release.
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

Update on the Lotus 1-2-3 and Word Pro file titles when saving a pdf file.

Original problem was PDF-XChange was giving the application name prior to the new pdf name, i.e., test.123 and test.lwp would be saved as 1-2-3 - test.pdf and lwp - test.pdf.

Current version of PDF-XChange now correctly saves the Word Pro files but continues to prefix the Lotus 1-2-3 files with 1-2-3 - .

I've done a fix to the PDF-XChange, pdSaver/titrules.js file.


From the titrules.js file

case "ACAD.EXE":
case "ACADLT.EXE":
docName = like_ACad(jobName);
break;
case "123W.exe": <==================================Changed to EXE (uppercase)
case "WORDPRO.EXE":
docName = like_WINWORD(jobName);
break;
// ------------
default: // Any other application
if (jobName == "")
jobName = event.appName;
docName = like_DefaultApp(jobName);
}
return eliminateBadChars(docName);
}

//+++++++++++++++++++++++++++++++++++++++++++++++++
Don
Vancouver, USA
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

Regarding my post on the exe change to uppercase:

This is in PDF-XChange 4 PRO v.4.0149
Don
Vancouver, USA
User avatar
John - Tracker Supp
Site Admin
Posts: 5219
Joined: Tue Jun 29, 2004 10:34 am
Location: United Kingdom

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by John - Tracker Supp »

Thanks Don,

will amend and ensure the next update is corrected.
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com
Don Schmidt
User
Posts: 108
Joined: Thu Sep 23, 2004 1:12 pm
Location: Vancouver, WA USA

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by Don Schmidt »

:)
Don
Vancouver, USA
User avatar
John - Tracker Supp
Site Admin
Posts: 5219
Joined: Tue Jun 29, 2004 10:34 am
Location: United Kingdom

Re: PDF-XChange 4.0.0 Build 0148 File Tile Oddity

Post by John - Tracker Supp »

:)
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com