-
1. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
gener7 Sep 6, 2014 5:35 PM (in response to blabla12345)Since there is no option, I simply rename the extension to .cube in the finder. I use 10.9
If that works, you could use a batch script to change the extensions if you export a group of LUTs.
-
2. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
blabla12345 Sep 7, 2014 7:23 AM (in response to gener7)It's got to be a better option.
Who in there right mind will use CAPITAL letters for an extension?
-
3. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
gener7 Sep 7, 2014 10:22 AM (in response to blabla12345)Well, my thought is to offer something that works so you can get on with your projects.
I do not work for Adobe, I just volunteer time.
The best way to get them to look at it is to file a report.
-
4. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
blabla12345 Sep 8, 2014 5:39 AM (in response to gener7)I prefer no answer that a really basic and obvious answer. Thanks anyway
-
5. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
c.pfaffenbichler Sep 8, 2014 6:26 AM (in response to blabla12345)I prefer no answer that a really basic and obvious answer.
Has it not been pointed out that in case a person is dissatisfied with some piece of advice on these Fore they can request the money back they paid the person who provided it for said advice?
The JavaScript code ScriptingListener.plugin records for the Export operation seems only to raise the dialog, so it provides no immediate solution.
But maybe you could use AppleScript to automate the process from that point on (and nest one in the other).
AppleScript seems not to be popular for Photoshop automation generally, but you could try asking over in the PhotoshopScripting Forum nonetheless.
-
6. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
Chris Cox Sep 9, 2014 2:02 PM (in response to c.pfaffenbichler)Weird, most applications don't care about the case of the file extension. (Who uses capital letters for extensions? Uh, Windows.)
But the Export LUT functionality is driven by a JavaScript.
You could change the script to change the filename after save if you wished, or batch process files, or hard wire the parameters to certain settings and never show the UI, or… pretty much whatever you want.
-
7. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
Trevor Dennis Sep 9, 2014 2:19 PM (in response to c.pfaffenbichler)c.pfaffenbichler wrote:
Has it not been pointed out that in case a person is dissatisfied with some piece of advice on these Fore they can request the money back they paid the person who provided it for said advice?
-
8. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
c.pfaffenbichler Sep 10, 2014 1:15 AM (in response to Chris Cox)Could you please point out where that Script resides and what’s its name?
-
9. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
Chris Cox Sep 10, 2014 11:28 PM (in response to c.pfaffenbichler).../Photoshop CC 2014/Presets/Scripts/ExportColorLookupTables.jsx
-
10. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
c.pfaffenbichler Sep 10, 2014 11:36 PM (in response to Chris Cox)Thanks.
Well, that’s embarrassing – maybe I looked in the CC Folder by mistake, because that name is pretty obvious …
-
11. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
c.pfaffenbichler Sep 11, 2014 12:15 AM (in response to blabla12345)blabla12345, seems it’s line 159 you want to edit.
-
12. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
gener7 Sep 11, 2014 11:22 AM (in response to c.pfaffenbichler)Maybe I am not not doing this correctly, but changing from uppercase to lowercase does not output the extensions that way, plus I would also want a line to change .ICC to .icc
I'll post this to the Scripting forum, but I'd like to find out from you first.
// these are not localized, since they refer to file format extensions
const sSave3DL = "3dl";
const sSaveCUBE = "cube";
const sSaveCSP = "csp";
-
13. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
Chris Cox Sep 11, 2014 2:12 PM (in response to gener7)Those lines only change what is displayed in the dialog, not the actual filenames.
The file extensions are written by the export plugin. (which incidentally has a comment that two studios wanted all caps extensions, but I failed to write down which ones in the comments)
To change the filenames, you'd want to add something at the end of doExportLUTs() that uses the supplied path and substitutes the desired extensions, then renames the file.
-
14. Re: Is there a way to change the LUt extension form .CUBE to .cube. on export. TX
c.pfaffenbichler Sep 11, 2014 11:55 PM (in response to gener7)Sorry, gener7, I was hasty with my statement.



