Hi Luc,
You would need to use a script. A small script right before the PlanetPress Image output, to extract the OIIQ from the file's name. Here's an example:
dim s
s = Watch.GetJobFilename
s = mid(s, InStr(s, "_")+1, 1000)
s = mid(s, 1, InStr(s, "_")-1)
Watch.SetJobInfo 9, s
Note that before this script, you will need to make sure the current job file has the original name, so you might need to do a Rename to %o. The script will extract the part between two _ characters, and will put it into job info 9. Feel free to use another job info if you want. You can then use this job info to call a dynamic .ptk name.
Hope that helps!
Regards,
Raphaël Lalonde Lefebvre