Master Photoshop with the help of our global community.
Recently active
Finally i found out how to set tool options, so here is a script that switches tools Sample Mode.And finally we can assign a shortcut to that.For some tools it toggles "Sample All Layers" on/off,for others it switches Sample Mode between Current / Current & Below / All Layers / etc.In the start of the script there is a variable called 'includeAllOptions' that controls whether to cycle all options (set to true) or only Current / Current & Below (set to false).The script will appear in the top of the File / Scripts menu.It was kinda hard to figure some stuff out, so i decided not to encrypt it's contents, so that anyone could investigate it.Happy switching ☺ And if you have any comments, questions or suggestions, i'll be happy to hear them.The script:/* <javascriptresource> <name>Switch Sample Mode</name> <enableinfo>true</enableinfo> <category>Hirlin Scripts</category> </javascriptresource> // Oleksii Hirlin 2021 */ var includeAllO
How to set Mixer Brush to use "Load Solid Colors Only" by default? I hate having to open up that flyout menu to change it every single time I have to sample a color with a mixer brush.
I wonder some times if Adobe are sitting on different computers than the rest of the planet. Have this update been tested? Do you try the new features on high res images 5000+ pixels?For me I'm experiences lags like never before. In particular:-Free transform has a sluggish delay, particularly if the object is a smart object. -Moving a layer is slow, probably because of the new auto highlight layer feature. -transforming a layer with a rotate or anything, takes time, even showing a progress bar for the simplest transform procedures. Something must have been added to this update that makes everything a lot slower. I'm sitting on a 7980x Threadripper with 5ghz 32 core CPU, 128 gb of fast ram and yet its moving in syrup.
Bonjour depuis quelques temps je n'arrive plus à déplacer mes calques en cliquant dessus. Il est bien séléctionné mais impossible de le déplacer avec la souris, il faut que j'utilise les flèches, ou passer par édition, transformation manuelle... Et la fonction zoom avec le trackpad ne marche plus.Je ne vois pas quel réglage j'ai activé par erreur (ce n'est pas un problème de séléction de calque automatique)Je n'ai pas ce problème sur des nouveaux fichiers.Merci
Spontaneously my file save as type is switching form PSD to PSB. How to make it default PSD?
I've had a Photoshop/Illustrator sub for several years. According to the generative credits FAQ, as seen in the attached image, I should be getting 500 credits/month. But when I check my account, it looks like I'm only getting 250 credits/month, as seen in the attached image. What's going on with this ? One of them has to be wrong, yes ??thanks for any help
The Curve Adjustment properties dialog can be scaled somewhat, but it is still tiny on larger screens running a higher resolution. In Gimp, PhotoLine, and other image editors the curves graph can be scaled up to the actual screen size, if needed.Please make the curves graph more responsive in regards to dialog scaling. The graph is so small, making it harder than it needs to be to work with, and very difficult for precise adjustments.
Can anyone explain to me why Adobe Photoshop Express was suddenly installed on my machine? I turned the computer on one day to be met with the message it installed and this was without my prompt or permission. Is there some kind of reason for this? Does standard Photoshop need this installed? I'm slightly annoyed because I have reasons not to install more programs at the moment. Any help appreciated.
Helllo, I need help! whenever i merge down my pattern in blendings style > hardmix it loses the orginal effect that I like.Ive tried everything, Is there a way around this?Sam
Something that would resemble hires google map style or dron generated ariel picture ? It's alredy extremly hard to do actually since Photoshop always tends to rotate camera in more perspective like style and do kind of blurry images . So I wonder can i generate it by smaller parts . like udim parts but terrain details like roads and rivers be continuing properly from one part to another so together would constitute a bigger image covering maybe 2x2 km at least with each part like 300m maybe?Ideally following some macro mask example like splat map?
From LR, I selected several images and selected the noted command.Focus shifts from LR to PS and then just sits there. No further activity.No dialog boxes either, for either LR or PS.SO: PS gets some sort of wakeup notification.==============Never mind. It seems a version upgrade was not smoothed out, so machine specific preferences (whatever they are) tripped up PS. Killing PS and restarting it got it working, along with the annoucements about all the new wonderful stuff. Suggestion to Adobe: if the formatting of a supporting file changes, then the follow on versions either need to translate to the new format OR AT A MINIMUM INFORM USERS TO QUIT AND RESTART. So this is an upgrade compatibility bug. Thank you.
I came across this script that changes the Brush blend mode:// Select the paint brush tool var idslct = stringIDToTypeID( "select" ); var desc226 = new ActionDescriptor(); var idnull = stringIDToTypeID( "null" ); var ref170 = new ActionReference(); var idPbTl = stringIDToTypeID( "paintbrushTool" ); ref170.putClass( idPbTl ); desc226.putReference( idnull, ref170 ); executeAction( idslct, desc226, DialogModes.NO ); // blend mode var desc = new ActionDescriptor(); var idset = stringIDToTypeID( "set" ); //alert(desc.getEnumerationValue(stringIDToTypeID("mode"))); desc.putEnumerated(stringIDToTypeID("mode"), stringIDToTypeID("blendModel"), stringIDToTypeID("clearEnum")); desc226.putObject( stringIDToTypeID( "to" ), stringIDToTypeID( "null" ), desc); executeAction( idset, desc226, DialogModes.NO ); It works fine, but it has one flaw: it resets the brush settings. For example, if my brush has "Scattering" turned on by default, and I turn it off, the script checks it back on. Is the
I have a photoshop file with about 20 layers. I am trying to grab three of them that need to stay together and move them. They all have alpha channels, so when I select the layers, then try to grab & move using my mouse, I end up selecting the background layer and causing it to move. I'm unable to move the three layers I want to move together using my mouse. I tried putting them in a Group folder but that didn't help; when I try to grab & move with my mouse, it ends up selecting and moving the background layer. I can move by keyboard (Shift-V), but the image is 9960 x 5599, so moving the three layers that way is too slow.
I have an ExtendScript script, which creates a dialog/window, where users can insert some arguments, etc. ...// This is the method that creates the window and displays it window.buttons.run.onClick = function () {window.close(1);};window.buttons.cancel.onClick = function () {window.close(2);};window.defaultElement = window.buttons.run;window.cancelElement = window.buttons.cancel;var result = window.show();return result;}// Then in the main functionvar result = createWindow();if (result !== 1) {return;}// Do some heavy workOccasionally, when I click to run the script, the photoshop hangs up for a while (as usual), but the window does not fully close. More specifically, I don’t see the window elements, like buttons, texts, etc., anymore, I see only the window with a blank/white background and the title. See the screenshot below. This blank dialog remains open all the time until I force close photoshop. The script execution continues and even finishes, but the window remain
Hey everyone, long ago I made this script with some help but right now I totally forget all about scripting and I need a little update. What it does is just combining several layers into a smart object, and rename it to the bottom layer. Now, if possible I want to copy the layer's color as well. Can someone help me achieve this? This is the script function main() {var s2t = stringIDToTypeID;(tr = new ActionReference).putProperty(s2t('property'), p = s2t('targetLayersIDs'));tr.putEnumerated(s2t('document'), s2t('ordinal'), s2t('targetEnum'));(lr = new ActionReference).putProperty(s2t('property'), n = s2t('name'));lr.putIdentifier(s2t('layer'), executeActionGet(tr).getList(p).getReference(0).getIdentifier(s2t('layerID')));var nm = executeActionGet(lr).getString(n)executeAction(s2t('newPlacedLayer'), undefined, DialogModes.NO);(r = new ActionReference()).putEnumerated(s2t("layer"), s2t("ordinal"), s2t("targetEnum"));(d = new ActionDescriptor()).putReference(s2t("null"), r);
Since last week my Design team began having issues with links they send using the Share For Review function in Photoshop. Everyone who has selected these links get a Error 404 message. We have tried clearing browser cookie cache and history with no success. I've seen other posts in Adobe Community about Illustrator users experiencing the same problem the past several days with no fix.Thank you
I frequently need to show/hide layers based on the Layer Filter. Today this workflow cannot be automated:Actions do not record the Layer Filter state (Color/Kind/Name).Scripting (DOM/Action Manager) does not provide a reliable way to read a layer’s label color or to set/read the Layer Filter programmatically.Tried stringIDToTypeID('color'), charIDToTypeID('Clr '), and variants like layerSheetColor / sheetColor; many builds return nothing, so a script can’t detect that a layer is “Green”.This would drastically speed large design/retouch pipelines (hundreds of layers). Typical need:Thank you!
I'm a heavy user of Photoshop (2023) and Lightroom Classic (12.5), running current versions of both, and also have Photoshop Beta 2024 installed. Today (September 8, 2023), the PS 2024 Beta performed an automatic update. After this, the feature to open multiple RAW files as layers in PS (open as layers in Photoshop) from Lightroom Classic is no longer working (into PS 2023). Fortunately, I still have the PS 2022 version on my Windows 10 PC and when I open that version of PS first, Lightroom can once again open multiple files as layers in Photoshop. I've been using the "open as layers" function for years. I suspect that something occurred with the 2024 Photoshop Beta that affected this feature in PS 2023. Any thoughts, solutions, or workarounds would be extremely welcome. Thank you.
The Layers menu no longer keeps Merge Down, Merge Visible, and Flatten Image in a fixed location. These options now shift based on context (active tool, layer type, visibility), breaking muscle memory and slowing down professional workflows. This behavior used to be consistent—Merge Visible was always at the bottom. Now it’s unpredictable and disruptive.Request: Please restore fixed menu positioning or add a preference to lock menu order. This is not a feature request—it’s a regression in usability.
Buenas tardes ! ojalá puedan ayudarme,no puedo hacer que la linea de tiempo en mi photoshop se active,o sea ,la selecciono desde la ventana y se me abre debajo como debe ser ,pero esta inactiva,alguien podrá decirme como lo soluciono por favor ?
I cannot open more than one image in Photoshop. If I open a second image it automatically is placed on top of the first image. How do I stop this happening?
Bonjour a tousDepuis que j'utilise windows 11 Pro, certaine des miniatures photoshop apparaissent et d'autres non,malgré tous les réglages possibles dans l'affichage des dossiers, rien n'y fait je ne peux pas afficher le contenu des miniatures, ce qui est très gênant, il faut ouvrir au hasard quand on cherche une photo. A titre indicatif, j'utise les deux versions de photoshop, classic et bêta. Quelqu'un aura-t-il une solution. Merci
Hi, since today I've been getting this error in Photoshop on many of the fonts I downloaded. The font texture has disappeared.It also freezes for a few seconds when I switch between fonts.I'm attaching a screenshot. On the left, the characters display correctly in Premiere Pro. On the right, they display correctly in Photoshop.
Currently, the swatch panel will not reduce to only show the small strip of recent colors. I prefer to remove the swatch libraries because they add no value to my work, but that leaves a large intrusive blank space. I would like to see see the ability of the swatch panel to be collapsed to only show the small strip of recently used colors.
Hi,I‘m wondering if there is a way to only show the recent swatches in Photoshop CC, and not the huge area of preloaded swatches. I just want the panel to be slim and show just the recent colours. I have deleted all the swatches from any of the swatch presets, hoping once they were all gone the swatch menu wouldn’t need to be as large and have the big empty space where the preloaded swatches (or self made swatches) would appear. It takes a big section of a panel on the side bar when it’d be much more convenient for me if the panel could be slim, allowing more room for the other panels I’d like to show. Is this possible to achieve?Thanks.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.