Return-Path: Received: from mail-bk0-f41.google.com ([209.85.214.41] verified) by media-motion.tv (CommuniGate Pro SMTP 4.2.10) with ESMTP-TLS id 4629201 for AE-List@media-motion.tv; Fri, 17 Feb 2012 11:44:31 +0100 Received: by bkty12 with SMTP id y12so3084499bkt.28 for ; Fri, 17 Feb 2012 02:50:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:disposition-notification-to:date:from:user-agent :mime-version:to:subject:references:in-reply-to:x-tagtoolbar-keys :content-type; bh=4C1gOR5KbyULNWBsk1UlavUz7LOnfwAiMUkEvowA8yo=; b=F3UK6My2bZDALxvvvhDz/r00gzGKezEDtTQwnoyLzuIoWkTytYQaVYrIozbV7k0ayE 65dRG5vLFaAHJFCDh+P1HwpzdRJefgBAyiwnluNjIXskUjlRHrWYLJSgy5/x73CjEt0H T+Fw3ueRkP3T98Nm/Vikhse9eBBGcmYMMOWvw= Received: by 10.204.148.79 with SMTP id o15mr4068801bkv.33.1329475851143; Fri, 17 Feb 2012 02:50:51 -0800 (PST) Return-Path: Received: from [192.168.1.2] (cust-233-240.on4.ontelecoms.gr. [92.118.233.240]) by mx.google.com with ESMTPS id jc4sm22090915bkc.7.2012.02.17.02.50.48 (version=SSLv3 cipher=OTHER); Fri, 17 Feb 2012 02:50:49 -0800 (PST) Message-ID: <4F3E310A.9030107@gmail.com> Disposition-Notification-To: Evan Fotis Date: Fri, 17 Feb 2012 12:50:50 +0200 From: Evan Fotis User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.17) Gecko/20080914 Lightning/0.9 Thunderbird/2.0.0.17 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: After Effects Mail List Subject: Re: [AE] Isolating Objects from a PSD File References: In-Reply-To: X-TagToolbar-Keys: D20120217125050494 Content-Type: multipart/alternative; boundary="------------080405020702070709010105" This is a multi-part message in MIME format. --------------080405020702070709010105 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit FWIW I use a script that deletes all channels and paths at once: > #target photoshop > app.bringToFront(); > var theImage = app.activeDocument; > theImage.pathItems.removeAll(); > theImage.channels.removeAll(); /On 17-Feb-12 02:11, Jonathan Penzner wrote:/ > /By the way, wouldn't it be nice if, in Photoshop, you could > select all the paths or alpha channels at one time and drag them > to the trash? I often receive files with dozens of paths and > deleting them one at a time is a pain./ --------------080405020702070709010105 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit FWIW I use a script that deletes all channels and paths at once:

#target photoshop
app.bringToFront();
var theImage = app.activeDocument;
theImage.pathItems.removeAll();
theImage.channels.removeAll();

On 17-Feb-12 02:11, Jonathan Penzner wrote:
By the way, wouldn't it be nice if, in Photoshop, you could select all the paths or alpha channels at one time and drag them to the trash? I often receive files with dozens of paths and deleting them one at a time is a pain.
--------------080405020702070709010105--