Elise_Claire
Explorer
Elise_Claire
Explorer
Activity
‎Jun 12, 2024
03:13 PM
1 Upvote
For anyone else who comes across this, sorry I made a typo in the Mac url - it should have "16_0" not "6_0" near the end, but can't figure out how to edit my other post. It should be like this: https://download.adobe.com/pub/adobe/photoshop/cameraraw/mac/16.x/CameraRaw_16_0.dmg
... View more
‎Jun 12, 2024
03:13 PM
For anyone else who comes across this, sorry I made a typo in the Mac url - it should have "16_0" not "6_0" near the end, but I can't figure out how to edit my other post. It should be like this: https://download.adobe.com/pub/adobe/photoshop/cameraraw/mac/16.x/CameraRaw_16_0.dmg
... View more
‎Jun 12, 2024
11:14 AM
I didn't realize you were on both threads, oops! I posted on the other too, hopefully it'll help those folks too!
... View more
‎Jun 12, 2024
11:12 AM
1 Upvote
Thanks for your reply! After more digging through the forums, I just found out this may be a bug with Camera RAW rather than Bridge. I had tried rolling back several versions of Bridge and was still getting the XMP files when editing JPG metadata, but once I reverted to earlier version of Camera RAW it finally stopped. I was able to download and install Camera Raw 16.0 by editing the download URL on the 14.5 links here. After restarting my computer I went back into Bridge (14.1.0) and was able to apply/edit metadata on JPGs that were creating the XMP sidecar files before, and no XMP files were created, so it looks like the issue is resolved for now, as long as I don't update Camera RAW for the time being. For Mac I used https://download.adobe.com/pub/adobe/photoshop/cameraraw/mac/16.x/CameraRaw_6_0.dmg If it works the same for Windows, it should hopefully be https://download.adobe.com/pub/adobe/photoshop/cameraraw/win/16x/AdobeCameraRaw_x64_16_0.exe
... View more
‎Jun 12, 2024
11:05 AM
Good call on it being Camera RAW instead of Bridge - I was rolling back Bridge over and over with no effect. I was able to download and install Camera Raw 16.0 (went back a couple versions to be sure) by modifying the download URLs on the 14.5 links here. After restarting my computer I went back into Bridge (14.1.0) and was able to apply/edit metadata on JPGs that were creating the XMP sidecar files before, and no XMP files were created. For Mac I used https://download.adobe.com/pub/adobe/photoshop/cameraraw/mac/16.x/CameraRaw_6_0.dmg If it works the same for Windows, it should hopefully be https://download.adobe.com/pub/adobe/photoshop/cameraraw/win/16x/AdobeCameraRaw_x64_16_0.exe Hope that helps!
... View more
‎Jun 12, 2024
10:26 AM
I'm running into the same issue, but it's not limited to JPGs where I used Generative Expand or Fill. I can't figure out a common pattern to the files affected, but need to be able to apply metadata to these JPGs. Hopefully there's a fix or workaround soon
... View more
‎Mar 14, 2024
01:09 PM
Our team uses many different Photoshop Actions and Scripts in our workflows. It would be extremely useful to be able to create a Shared Cloud Library and upload the .jsx and .atn files to be easily accessible for different users, from within Photoshop. If users could import/install them from the Library interface too - even better! Thank you for your consideration!
... View more
‎Aug 14, 2023
11:48 AM
1 Upvote
Hi @Stephen Marsh, Apologies for the delayed response - thank you so much for your time and assistance!! The function solution works perfectly. This script is going to be an absolute game changer for my day-to-day workflow. Also, thank you for the w & h simplification, and the advice & code to set the ruler units - this will undoubtedly help in my future scripting adventures!!
... View more
‎Aug 08, 2023
09:52 AM
Hello! I'm new to scripting. I've modified some code I found online to get a script to do what I need, but I'm having trouble figuring out how to prevent an error in the script if I don't complete the process. The goal of the script is to save the current file as a JPG with the document width and height appended to the end of the file name when the Save As dialog opens. The script works if I complete the Save (click the Save button). However, if I click Cancel (or hit Escape) on the dialog instead of saving, Photoshop gives this error: Error 1242: Illegal argument - argument 1 - Required value is missing Line: 18 -> var saved = doc.saveAs( filePath, saveOptions, true ); The code is below - I sincerely appreciate any guidance or suggestions! Thank you for your time! // Script to Save File as JPG, appending file name with document Width x Height
// Revised from Brian Dillingham script at https://graphicdesign.stackexchange.com/questions/37262/photoshop-scripting-get-image-dimensions-to-clipboard
if (app.documents.length > 0) {
var doc = app.activeDocument;
var docBaseName = doc.name.match(/(.*)\.[^\.]+$/)[1]; //xbytor post to remove extension from file name
var saveOptions = new JPEGSaveOptions( );
saveOptions.embedColorProfile = true;
saveOptions.formatOptions = FormatOptions.OPTIMIZEDBASELINE;
saveOptions.matte = MatteType.NONE;
saveOptions.quality = 8; // image quality (0,12)
var w = doc.width.toString().replace(' px', '');
var h = doc.height.toString().replace(' px', '');
var file = new File(docBaseName + "_" + w + 'x' + h + '.jpg');
var filePath = file.saveDlg("Select Folder");
var saved = doc.saveAs( filePath, saveOptions, true );
}
... View more
‎Jul 07, 2023
11:14 AM
1 Upvote
Thank you for taking the time to check the file! After more testing on different machines, we found this "GPU compositing" checkbox under Preferences > Performance > Advanced Settings. The box was checked for those of us experiencing the glitch. Un-checking the box solved the issue for us! Not sure yet how or if that will impact performance in any noticeable way, but we're glad to have the lines gone!
... View more