// Copyright 2002-2005. Adobe Systems, Incorporated. All rights reserved. // Make the Red and Blue channels the active channels, // enable double clicking from the Macintosh Finder or the Windows Explorer #target photoshop // in case we double clicked the file app.bringToFront(); // debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning) // $.level = 0; // debugger; // launch debugger on next line if (!app.documents.length > 0) { // open sample file if no document is opened. var fileName = app.path.toString() + "/Samples/Dune.tif"; var docRef = open( File(fileName) ); } docRef = app.activeDocument; theChannels = new Array(docRef.channels["Red"], docRef.channels["Blue"]); docRef.activeChannels = theChannels;