Hi,
first you must be sure that you have selected the proper .ppd file under the Dormat menu -> Document window -> basic attributes and in the list box "Designed for" you should see the Xerox Phaser 7300DN".
This being said I consulted the .ppd information and you will encounter the following problem:
*JobPatchFile 1: "
% Default Definitions
userdict /xerox$pagedevice <<
/MediaClass null
/MediaPosition null
/TraySwitch true
/ImagingBBox null
/ProcessColorModel /DeviceCMYK
>> put
userdict /xerox$set_job_type true put
userdict /xerox$jobname (unnamed) put
userdict /xerox$jobpassword (1234) put
userdict /xerox$jog 3 put
userdict /xerox$jobTypeDone false put
userdict /xerox$pageSizeDone false put
"
*End
If you are a bit familiar with Postscript you will understand that they are redefining command to execute the paper handling calls. PlanetPress will not pick up this information when it will read the PPD as of what it expects the following command in the .ppd to be valid:
*InputSlot MPT/MPT: "
xerox$pagedevice /MediaPosition 0 put
xerox$pagedevice /TraySwitch false put
"
*End
Of course since the previous definition of the xerox$pagedevice as not been executed it will generate a Postscript error. The workaround is to take the Patch Postscript code and include it in the paper handling command in the .ppd file as done here:
*InputSlot MPT/MPT: "
% Default Definitions
userdict /xerox$pagedevice <<
/MediaClass null
/MediaPosition null
/TraySwitch true
/ImagingBBox null
/ProcessColorModel /DeviceCMYK
>> put
userdict /xerox$set_job_type true put
userdict /xerox$jobname (unnamed) put
userdict /xerox$jobpassword (1234) put
userdict /xerox$jog 3 put
userdict /xerox$jobTypeDone false put
userdict /xerox$pageSizeDone false put
xerox$pagedevice /MediaPosition 0 put
xerox$pagedevice /TraySwitch false put
"
*End
This should get it to pull from the proper bin, this would also be needed for all paper handling calls.
To find the .ppd file search your OS for the following file: xrx7300.ppd
There is no guarantee that this workaround will work as of what I do not own a 7300DN but have been challenged by a 5500DN and found the similar commands.
If you need assistance please press the "Report an issue via the web" button at the top left of this page.
Regards
.