Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Delete path in droplet

New Here ,
Oct 18, 2018 Oct 18, 2018

I am making PNG images with transparent background.

I have EPS images with paths that need the backgrounds deleted. When I do a droplet that deletes the background, I get "can't delete". If I change the droplet to copy/paste the path selection an hide the background, I get "can't hide". All this works manually but not within droplets. Any thoughts as to why???

593
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Oct 18, 2018 Oct 18, 2018

What version of photoshop and operating system are you using?

Can you post a screenshot of the action that is used for the droplet?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 22, 2018 Oct 22, 2018

2018

Here is the droplet and the error message

Screen Shot 2018-10-22 at 9.04.09 AM.png

Screen Shot 2018-10-22 at 9.04.46 AM.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 22, 2018 Oct 22, 2018

I think instead of cutting and pasting pixels you could inverse the path selection, deselect the path

and then cut the pixels to get rid of the background.

path.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 23, 2018 Oct 23, 2018

same error

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 23, 2018 Oct 23, 2018

Sorry I dont think i did "Deselct current path" the same as you since mine says "Selection; None" when I do it. Where are you deselecting the path?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 23, 2018 Oct 23, 2018
LATEST

I deselected the path by going to the paths panel and clicking the empty space below the path thumbnail.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Oct 23, 2018 Oct 23, 2018

You can do this with a simple script.

Scripts are very easy to use with Photoshop and with your Adobe suite you should be able to download software via Creative Cloud called ExtendScript Tool kit.

You will need to use ExtendScript Toolkit to create a file with either of the below lines:

To remove all paths =

#target Photoshop

app.activeDocument.pathItems.removeAll();

To remove certain paths=

#target Photoshop

app.activeDocument.pathItems.getByName("path name here in quotation").remove();

Save the script on your desktop and put it into your action by going File > Scripts > Browse - then load the script you created.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines