Thank you very much !
I think a logical sequence for everything to work would be:
1. Dragging .psd files on Droplet
2. It opens the files and activates a script.
Script order should be:
1. Save a jpg (Quality 7) to the same file location where currently opened .psd is.
2. Image - mode - CMYK colors (Converting colors from rgb to cmyk)
3. Save a tiff (Without layers, Pixel order: Interleaved, Byte order: Macintosh) to the same file location where currently opened .psd is
4. Close the doc
arr = [jpg = new JPEGSaveOptions, tif = new TiffSaveOptions]
jpg.jpegQuality = 7, tif.byteOrder = ByteOrder.MACOS
tif.layers = !(tif.interleaveChannels = true)
for(i = 0; i < arr.length; i++) {
if (i) aD.changeMode(ChangeMode.CMYK);
(aD = activeDocument).saveAs(File(String(aD
.fullName).slice(0, -3) + (i ? 'tif' : 'jpg')), arr)
}
aD.close(SaveOptions.DONOTSAVECHANGES)
Save it to 'Presets / Sctipts' of your Photoshop folder. Then relaunch Ps and create new Action set, then new Action, and from 'dropdown / flyout' menu you click icon in right corner of Actions panel and select 'Insert Menu Item...'. Finally from 'File / Automate' choose 'Create Droplet', and only one you have to do is to choose Droplet path to be saved there. Now each time you drag a .psd file on droplet it will do that you asked. Now you can mark my answer as correct solution 