Questions
Récent
I im making simple plugin with buttons which can run photoshop actions, (removeBgBtn) works correct but two another button wont run, there is no error in logs. I have folder scripts and inside I have two jsx scripts. They works correct when I use classic action panel. document.addEventListener("DOMContentLoaded", () => { const removeBgBtn = document.getElementById("remove-bg-btn"); const smartBtn = document.getElementById("smartBtn"); const classicBtn = document.getElementById("classicBtn"); if (removeBgBtn) { removeBgBtn.addEventListener("click", async () => { console.log("Button clicked! Starting background removal process..."); try { await remove_background(); alert("Background removed successfully!");&nbs
I have a problem with photoshop V22.1.1... Whenever I start photomerge photoshop freezes and I can't do anything. I have to kill it from the task manager... Can anyone help? Thanks
hi everyone, i am trying to apply duotone effect in photoshop with one black solid color and other self created spot color , but the issue is that i am unable to use it from the color libarary, how we can use duotone with self created spot , thanks in advance.
J’ai un problème d’ouverture d’image sur Photoshop.Voici l’image en question :🔗 Lien FacebookIl s’agit d’une photo issue de Facebook. J’ai remarqué que ce problème survient avec plusieurs images provenant de cette plateforme.Le problème :Lorsque j’ouvre cette image dans Photoshop, des lignes bizarres apparaissent et les couleurs deviennent vertes de manière étrange…👉 Pourtant, si j’ouvre la même image avec Paint ou un autre logiciel, elle s’affiche correctement, sans aucun problème de couleur !J’ai joint des captures d’écran pour illustrer le souci.Je trouve ça assez incroyable que Paint gère mieux l’ouverture des fichiers que Photoshop… �vez-vous une solution à ce problème ? Visiblement, je ne suis pas le seul concerné. J’ai contacté d’autres graphistes, et la seule solution efficace que j’ai trouvée est de réenregistrer l’image via Paint sous un nouveau nom avant de l’ouvrir dans Photoshop.Merci d’avance pour votre aide !
Hello everyone. I bought your product. Faced with the problem of using generative filling. When trying to use generative filling, it gives an error "Check your Internet connection and try again." Photoshop is set to a clean registry, all remnants of old versions have been cleaned. The host is clean, I tried the same VPN (I'm from Ukraine) and still nothing works. Adobe Photoshop: 26.4.1 20250225.r.194 4c5f14b x64 . Windows 11 Pro 26100.3624. Windows 1000.26100.66.0 Does not work on 2 computers, home and work.
I'm using Windows OS installed on a Mac. Currently, the issue of not being able to open or save Photoshop and XD files is persisting, and I can't get any work done. 😭 The file was created in Photoshop and saved in the cloud. But when I try to reopen the file from the cloud, it won't open. Why is Adobe acting up like this lately...? I need a quick response.I'm Korean, so please understand that I'm using a translator. ------------------------------------------------------------------------------------------------------------ Photoshop Error informationCode: -1Text: because of a program errorMessage: Could not complete your request because of a program error.Stack:Adobe Photoshop 25.11.0 20240716.r.706 b326a7d - x860 address: 00007FF793288382 base: 00007FF78FF70000 module name: 'Photoshop.exe' symbol info: '??4PaletteInfo@AIDE@@QEAAAEAU01@AEBU01@@Z:-1 in n.a.'1 address: 00007FF793235B4D base: 00007FF78FF70000 module name: 'Photoshop.exe' symbol info
Photoshop alignment and distribution are not working when using pixel layers to distribute.But it's working when using Path and Shape. How do I fix it? Is this a bug or just misuse?
Hello, my Adobe Photoshop 2025 suddenly stopped working and whenever I try to launch it, this "warning" pops up. What's the solution for this, please? Thank you.
Photoshop constantly just forgets my settings. It is really stupid and it's been doing this for years. It doesn't even have a button to load settings so I have to go hunting for the folder to paste them into every time. So it forgets my settings every update or just sometimes randomly for fun.There's no button to easily load my saved settings.They introduced a cloud but it doesn't even save my settings to it.The cloud also doesn't sync my settings between my home and work computers. What is the point of this cloud? What the heck are you doing Adobe?
For about a week now, whenever I use Photoshop on my iMac it causes the entire computer to crash and restart. It only happens when I'm using PS. Sometimes it'll only be a minute or two before it crashes, sometimes 20 minutes, sometimes a few hours into using it, so it's wildly inconsistent and very frustrating. I have a iMAc that's been updated to the latest version of Monterrey and Photoshop CC which is also updated to the latest version. Things I have tried so far- making sure my operating system and the program are both up-to-date- virus sweep- uninstalling and re-installing PS HELP!!! Any ideas?Thanks
It's simple and I do use this often. Problem: So when I lock a layer, and then I want to copy a layer below this locked layer (using Alt+ Mouse Drag for quick copy) it copies the locked layer, instead of a layer that I want.I think photoshop should bypass the locked layers, when copying things directly on the canvas.Thanks.
Hi, I'd really appreciate some help with this, as at the moment it seems like using photoshop is causing my macs other storage to balloon and go from about 230 gb of free space to next to nothing in about 20 mins! Not sure if there might be some update or setting that can help or if anyone else has had this issue. Might be that using other Adobe programs also affects it as well. I use Illustrator and Indesign but Photoshop seems to affect it the worse. Apples help was to suggest the usual deleting of cahes and unwanted files and resets, but regular factory resets are a pain and time consuming and drastic. I'd really like to know if there's anyting that might be causing this. Any help would be massively appreciated. Thanks.
So... I've been having this problem for a while: usually to unselect an object i just click around in the screen, but now I can only unselect it when i click the layers tab. Mabye I pressed some random weird combination of keys? Idk I also left a video of the problem If anyone may know how to fix it, thanks.
In the last few weeks I've noticed that when I open Photoshop some of the UI is gone.It's not always the same items and the problem comes and goes.It occurs most when I open a blank Photoshop and least when I open a psd file that launches Photoshop.But it does occur in both scenarions. Items that have not been there when I opened Photoshop. The buttons on the Toolbar (Eraser, pencil etc)The Home viewThe contents of File New tabs e.g. A4 Paper. Regardsless of usinbg the new or legacy interface. What is causing this?
Hello dear community, Unfortunately I'm stuck at the moment and need your help. I have a script in which I have a layer and save the layer index of this layer and whether this is possibly in a group:var originalLayer = app.activeDocument.activeLayer; function findLayerIndex(layer, parentGroup, parentName) { for (var i = 0; i < parentGroup.length; i++) { if (parentGroup[i] === layer) { return { index: i, group: parentName }; } if (parentGroup[i].typename === "LayerSet") { var result = findLayerIndex(layer, parentGroup[i].layers, parentGroup[i].name); if (result) return result; } } return null; } // Get Doc & Layer var doc = app.activeDocument; var layers = doc.layers; var originalLayer = doc.activeLayer; // Active layer var result = findLayerIndex(originalLayer, layers, "Root"); if (result) { var layerIndex = result.index; var parentGroup = result.group; // alert("Layer-Index: "
buenas, llevo meses buscando la opción de DUPLICAR CAPAS VISIBLES en photoshop sin utilizar el atajo de teclado y no he encontrado nada. ¿Es posible hacerlo?, gracias
Hi, I am using photoshop for iPad for several weeks so far however, I am into PS desktop for many years. The problem on my PS iPad version is, move tool does not move things smoothly. Once I try to drag a layer around, it moves 5-10 pixels on each drag. I cant do precise edits. I want to move my layers one pixel sometimes but I cant. Anyone has the same issue? Or is it just my iPad? Or maybe there is a setting that needs to be switched on?
Is there a simple way to knock out white (or any other color) in Photoshop CS5?It's hard for me to imagine that in this day and age, doesn't have an easy method of doing what this plug-in allowed us to do over a decade ago.Surely, by now, I can stop installing this plug-in (originally created for PS on Win95).
I can get around PS as needed and am googling videos, but I am a little behind the 8 ball on this one. I am going to be lazy and ask. I have 25.3.1 on a mac M3. Please refer to a pic my freind sent me. I am going to transfer my image to a laser and cut it on wood. I am not sure where she found this image, but it is very busy and needs to be cleaned up. I would like to drop the state flag into each individual state. I would like to be able to move the flag around, resize it and even edit it. Do you tell PS to make a "clipping mask" for each state.Then can you drop in an image and and work it from there?Can I use the crop function and other effects on that flag while inside a state? I am sure it is simple, I just have to figure it out. If you give me an answer, please don't just say make a "clipping mask". Please give me direction on how to do this and duplicate it. If I miss a step, I will frustrate trying to get it to work. Thanks
Hello everyone,I am having a problem when running an action to enhance the color of an object.I usually subtract all the contaminated colors (yellow of light, blue, etc). However, when I increase the color with the action, the problem occurs that the color is contaminated with blue and pink.My friend and I did the same thing and got 2 different cases.I temporarily fixed it by white balancing (auto) before subtracting the color but I still don't understand how it works. So I am writing this article to consult everyone's opinions.Thank you for all the upcoming comments.
I've been dealing with this problem for nearly a year. I use Adobe Applications on 2 computers, one at home one at the office. Both Windows 10 PCs I built.One of PCs (Hostname: LD-HOME) does not release activation when rebooted. Every time after reboot I start Photoshp (or any other Adobe App) I get error "You've Reached Your Device Activation Limit"You can see in the screenshot below that it shows 3 devices, 2 of which are the same "LD-HOME" (This Device is LD-HOME).I spoke to 3 different support agents and all they can tell me is to deactivate computer via https://account.adobe.com/activated-devicesThis obviously works... until next reboot.I've already checked "Credential Manager" service and it's running.
Hello, hoping for some help and pointers if I'm doing something wrong here! First time trying to stitch an image together from a series of images. This is a series of 12 scans across a painting to create one larger, highly detailed image. I've tried to use both Photomerge and the Load Files into Stack script, in both options I load the images under browse and once they're listed in the Files box, click OK but then the box just closes and nothing happens.I work directly off of OneDrive so wondered initially if this was an issue with it loading from a cloud drive, I've then saved the images into a folder on my Desktop and loaded from there but get the same result. When loading the images it takes quite a while to do that but each image is between 1-1.6MB so these aren't huge image files. Am I missing something or is this just a broken feature in my version? Is anyone else getting this issue in the latest version of Photoshop?I'm on a Mac running Sequoia 15.3.2, Photoshop version 26.
Why isn't there a magnetic pen tool? Surely it would be easier to have now that selecting is getting better?
Hola, buenas tardes, tengo un pequeño problema con generador de imágenes, no me deja pegar texto de la app notas en el campo dedicado para generar imagen, solo puedo escribirlas directamente en él.
Hello, I'm having challenges with Illustrator vectors not showing up in Photoshop. If I copy from Illustrator and paste into Photoshop it acts like it is there - it's a new layer smart object, it just does not show. If I double click the smart object it opens in Illustrator so it's kind of there... just won't show. same thing happens if I open an illustrator eps file. I'm on Photoshop 21.2.1 and Illustrator 24.2.1. Please tell me someone knows what the heck is going on.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.