Re: Script for deleting Hidden Layers which are not used in any Layer Comp?
Thanks for creating this, it is very useful!
View ArticleHelp! Fix my javascript to save a bmp with suffix in the same folder as the...
Here's my current javascript: #target photoshop // sets document preferences to inchesapp.preferences.rulerUnits = Units.INCHES // these are our values for the END RESULT width and height (in...
View ArticleRe: Help! Fix my javascript to save a bmp with suffix in the same folder as...
Hi c_barnes,Try this to get the saveName with path for your saveFile: var doc = app.activeDocument; var saveFile = File(File(doc.path)+"/"+doc.name.replace (/\.bmp$/,'_1.bmp')); alert(saveFile); Is...
View ArticleRe: Background Saving
Save in Background does not work when saving via script...?? right? is there a setting you can have to make it save in background? When you have your preferences set ON to Edit > Preferences >...
View ArticleBackground saving via script? CS6/CC?
Any suggestions out there for getting script to save a file, in the background? When you have your preferences set ON to Edit > Preferences > File handling > Save In Background, and you save...
View ArticleScript to change what part of the image is shown
Hello, is it possible to script "scrolling" to a specific part on any image?For example, that the bottom right corner of the image is at the center of the view. I am fairly new to Photoshop scripting,...
View ArticleRe: Background saving via script? CS6/CC?
Hello,I might be wrong but this very behavior - the overriding of the Save in Background option - happens when the Save command is played from an Action too, so it is possibly as designed.For some...
View ArticleRe: Script to change what part of the image is shown
Documents have a property called "center" that can be assessed via Action Manager code, I don’t know how to feed it back, though. Also I don’t think the Window’s dimensions are available, so it might...
View ArticleRe: Script to change what part of the image is shown
This is only peripherally connected to your issuePhotoshop: Save/Reopen projects/collections of files and save window positionsso maybe you should start a proper feature request over Photoshop Family...
View ArticleExportOptionsSaveForWeb - sRGB
Hi,is there a way (other than converting the document to sRGB before exporting) to set true the sRGB conversion flag in the ExportOptionsSaveForWeb object? Thanks, Davide...
View ArticleRe: ExportOptionsSaveForWeb - sRGB
We talk about a silly 244 lines of AM code By the way, it looks like many charIDs do not have a meaningful translation to stringIDs, so we could just guess what "EICC", "SHTM", "QChS" and the like...
View ArticleRe: Help! Fix my javascript to save a bmp with suffix in the same folder as...
Hi pixxel, ExtendScript still won't run my code: // saves K seperation to bitmap formsaveBMP = new BMPSaveOptions(); saveBMP.alphaChannels = false; saveBMP.depth = BMPDepthType.ONE;...
View ArticleRe: Background saving via script? CS6/CC?
Thanks for the reply Davide, Yes, I've noticed when I run the save process via ANY other way, (regular action run, DOM ExtendScripted, Action Manger scripted, AS3 CS6) - it always has the progress...
View ArticleRe: Help! Fix my javascript to save a bmp with suffix in the same folder as...
I figured it out, here's for anyone else who is struggling with a similar problem: var CurrentDLPFile=app.activeDocument // saves active doc as photoshop fileif (f!=null)...
View ArticleRe: Script to change what part of the image is shown
Thank you! That is quite a lot of code How do you know what the strings you have to pass to the ActionReference have to be? Also, I think ActionReference is not available in CS4? This might be a good...
View ArticleRe: Script to change what part of the image is shown
I will take a look at the things you provided and hopefully be able to get this working. Is it OK if I wait until then to mark some answer as correct?My answers do not solve your issue and I cannot...
View ArticleRe: Script to open 2 versions of the same file one JPEG and one TIFF - the...
G'day Paul, I want to thank you again for the script you helped me with some time back. This has been so useful. Thanks!
View ArticleRe: Need help from a developper for a simple script ;)
Hey shadeoner, i'm no developer, but i needed to create something like timelapse slices, because i wanted to put the timelapse i created into one picture (example below). At first i had no idea how,...
View ArticleSyntax to save as PCX
What is the scripting syntax (ideally, VBscript) to save a photoshop file as PCX? I could not find a SaveAs object for it like there is for TIF or JPG.
View Article