Marquee tool - size converted to text layer?

Firstly forgive me if this has been covered, the forum search just didn't work, even when searching for a something I could see!
I'm wondering if there is a script that would do the following.
With a rectangular marquee selection
create a new layer
stroke the marquee (1 pixel width)
(then add text, positioned outside the marquee at the top right hand side - in a small font size - to list the width and height)
w: <x>
h: <x>
The purpose is to create a visual reference image for various 2D layout tasks.
Cheers,
Mal

You could give this a try:
// add layer with stroke and text with measurements of selection;
// 2011, use it at your own risk;
#target photoshop
try {
     var state = app.activeDocument.activeHistoryState;
     app.activeDocument.selection.deselect();
     if (app.activeDocument.activeHistoryState != state) {
          app.activeDocument.activeHistoryState = state
          var check = true;
     else {
          var check = false
catch (e) {var check = false};
// if document and selection;
if (check == true) {
     var originalRulerUnits = preferences.rulerUnits;
     preferences.rulerUnits = Units.PIXELS;
     var originalResolution = app.activeDocument.resolution;
     var myDocument = app.activeDocument;
     myDocument.resizeImage (undefined, undefined, 72, ResampleMethod.NONE);
// get selection measurements;
     var theBounds = myDocument.selection.bounds;
     var width = theBounds[2] - theBounds[0];
     var height = theBounds[3] - theBounds[1];
// make layer;
     var theLayer = makeFillLayer(width+"x"+height, 0, 0, 0, 0);
     theLayer.fillOpacity = 0;
     addStroke();
// create a text layer;
     var textLayer = myDocument.artLayers.add();
     textLayer.kind = LayerKind.TEXT;
     textLayer.name = width+" x "+height;
     var myTextRef = textLayer.textItem;
     myTextRef.size = 12 * originalResolution / 72;
     myTextRef.font = "Arial-BoldMT";
//Set text colour in RGB values
     var newColor = new SolidColor();
     newColor.rgb.red = 0;
     newColor.rgb.green = 0;
     newColor.rgb.blue = 0;
     myTextRef.color = newColor;
     myTextRef.justification = Justification.RIGHT;
     myTextRef.kind = TextType.POINTTEXT;     
     myTextRef.position = [theBounds[2], theBounds[1] - 10];
     myTextRef.contents = width+" x "+height;
     textLayer.blendMode = BlendMode.NORMAL;
     textLayer.opacity = 100;
// reset;
     preferences.rulerUnits = originalRulerUnits;
     myDocument.resizeImage (undefined, undefined, originalResolution, ResampleMethod.NONE);
////// the fill-layer-function //////
function makeFillLayer (name, b, c, d, e) {
var idMk = charIDToTypeID( "Mk  " );
    var desc6 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref2 = new ActionReference();
        var idcontentLayer = stringIDToTypeID( "contentLayer" );
        ref2.putClass( idcontentLayer );
    desc6.putReference( idnull, ref2 );
    var idUsng = charIDToTypeID( "Usng" );
        var desc7 = new ActionDescriptor();
        var idNm = charIDToTypeID( "Nm  " );
        desc7.putString( idNm, name );
        var idType = charIDToTypeID( "Type" );
            var desc8 = new ActionDescriptor();
            var idClr = charIDToTypeID( "Clr " );
                var desc9 = new ActionDescriptor();
                var idCyn = charIDToTypeID( "Cyn " );
                desc9.putDouble( idCyn, b );
                var idMgnt = charIDToTypeID( "Mgnt" );
                desc9.putDouble( idMgnt, c );
                var idYlw = charIDToTypeID( "Ylw " );
                desc9.putDouble( idYlw, d );
                var idBlck = charIDToTypeID( "Blck" );
                desc9.putDouble( idBlck, e );
            var idCMYC = charIDToTypeID( "CMYC" );
            desc8.putObject( idClr, idCMYC, desc9 );
        var idsolidColorLayer = stringIDToTypeID( "solidColorLayer" );
        desc7.putObject( idType, idsolidColorLayer, desc8 );
    var idcontentLayer = stringIDToTypeID( "contentLayer" );
    desc6.putObject( idUsng, idcontentLayer, desc7 );
executeAction( idMk, desc6, DialogModes.NO );
return app.activeDocument.activeLayer
////// stroke //////
function addStroke () {
// =======================================================
var idsetd = charIDToTypeID( "setd" );
    var desc5 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
        var ref2 = new ActionReference();
        var idPrpr = charIDToTypeID( "Prpr" );
        var idLefx = charIDToTypeID( "Lefx" );
        ref2.putProperty( idPrpr, idLefx );
        var idLyr = charIDToTypeID( "Lyr " );
        var idOrdn = charIDToTypeID( "Ordn" );
        var idTrgt = charIDToTypeID( "Trgt" );
        ref2.putEnumerated( idLyr, idOrdn, idTrgt );
    desc5.putReference( idnull, ref2 );
    var idT = charIDToTypeID( "T   " );
        var desc6 = new ActionDescriptor();
        var idScl = charIDToTypeID( "Scl " );
        var idPrc = charIDToTypeID( "#Prc" );
        desc6.putUnitDouble( idScl, idPrc, 416.666667 );
        var idFrFX = charIDToTypeID( "FrFX" );
            var desc7 = new ActionDescriptor();
            var idenab = charIDToTypeID( "enab" );
            desc7.putBoolean( idenab, true );
            var idStyl = charIDToTypeID( "Styl" );
            var idFStl = charIDToTypeID( "FStl" );
            var idInsF = charIDToTypeID( "InsF" );
            desc7.putEnumerated( idStyl, idFStl, idInsF );
            var idPntT = charIDToTypeID( "PntT" );
            var idFrFl = charIDToTypeID( "FrFl" );
            var idSClr = charIDToTypeID( "SClr" );
            desc7.putEnumerated( idPntT, idFrFl, idSClr );
            var idMd = charIDToTypeID( "Md  " );
            var idBlnM = charIDToTypeID( "BlnM" );
            var idNrml = charIDToTypeID( "Nrml" );
            desc7.putEnumerated( idMd, idBlnM, idNrml );
            var idOpct = charIDToTypeID( "Opct" );
            var idPrc = charIDToTypeID( "#Prc" );
            desc7.putUnitDouble( idOpct, idPrc, 100.000000 );
            var idSz = charIDToTypeID( "Sz  " );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc7.putUnitDouble( idSz, idPxl, 1.000000 );
            var idClr = charIDToTypeID( "Clr " );
                var desc8 = new ActionDescriptor();
                var idRd = charIDToTypeID( "Rd  " );
                desc8.putDouble( idRd, 0.000000 );
                var idGrn = charIDToTypeID( "Grn " );
                desc8.putDouble( idGrn, 0.000000 );
                var idBl = charIDToTypeID( "Bl  " );
                desc8.putDouble( idBl, 0.000000 );
            var idRGBC = charIDToTypeID( "RGBC" );
            desc7.putObject( idClr, idRGBC, desc8 );
        var idFrFX = charIDToTypeID( "FrFX" );
        desc6.putObject( idFrFX, idFrFX, desc7 );
    var idLefx = charIDToTypeID( "Lefx" );
    desc5.putObject( idT, idLefx, desc6 );
executeAction( idsetd, desc5, DialogModes.NO );

Similar Messages

  • Expanding Text Layer Size

    It has been a while since I have asked a question so bare with me as I have been taking a break from AE development for a while
    Below are two images that show the standard blur effect in After Effects
    Notice how the blur effect is going outside the boundries of the layer the effect is being applied to (text layer).  My starting question is how this type of functionality can be achieved in a SmartFX plugin.  I have been messing with the max_result_rect, etc in the PreRender call trying to expand the area I am working with but have not been having much luck.  So before sinking too much more time into this I figured I would pose the question in case one of the other developers on here have looked into this before
    Thank you in advance!

    I did a pretty horrible job explaining the situation ... I will say I was on too little sleep as always so let me try this one again with much more detail
    What I am trying to accomplish is to perform a blur effect.  I have the blur working well enough (i think) but where I am getting caught up on is trying to get the blur effect to extend beyond the the edge of the layer it is applied onto when that layer is smaller than the composition size.  I had noticed that the blur effect built into AE was showing the behavior above, which is appearing to extend the effect beyond the size of the text layer. 
    From looking at the sample projects it seems like the most similair one would be the "Resizer" project, however I am writing a SmartFX (32bit) plugin so I do not have access to the FrameSetup which is where they are modifying the size of the output buffer from what I can tell. 
    I have attempted to alter the output->result_rect as well as the output->max_result_rect in the PreRender call but am pretty sure what I am trying to accomplish is not the desired way as I end up getting an error when trying to move the layer around the composition having to do with exceeding the max_result_rect.
    Now, my math is doing some fun stuff under the hood like creating temporary AEWorlds and copying to/from these worlds to perform the plugins functionality before finally copying the final result back to the output world.
    My composition has the following size:
    Height: 720px
    Width: 405px
    My text layer is:
    Height: 214px
    Width: 177px
    My input world on Render is showing the following sizes:
    Height: 214px
    Width: 177px
    My output world on Render is showing the following sizes:
    Height: 214px
    Width: 177px
    As a side note, you asked about the extent ... my extent_hint is reading as the following for both the input and output world
    { left=0  top=0  right=177  bottom = 214 }
    While it is reading as the text layer size on the input_world and output_world I can retrieve the original comp size from the in_data object which does show:
    Height: 720px
    Width: 405px
    The plugin is being directly applied to the text layer and is producing the following output:
    What I would like for it to be emulating is the AE gausian blur plugin effect like (which is exceeding the red rectangle of it's layers size from what I can tell):
    This all might still be kind of vague and if it is I appologize, I will keep trying to reword things until I can get my question across ... at it's core I am not sure how to extend the output buffer of the woutput world on a SmartFX plugin I think?
    As a side note, I am working against the CS5 AE SDK
    Thank you in advance for reading through my post and with any luck we can start narrowing down the wording of the issue I am having as sometimes I am not sure of the proper way to describe things it seems

  • What's the keyboard shortcut for "Extrusion from Text Layer"? (Mac CS6)

    I keep triggering this by accident and can't figure out what combo I'm hitting, or how to disable it. I've looked in the Keyboard Shortcuts but can't find it.
    I'm on a laptop keyboard, so I use the fn key a lot to access enter when I'm finished editing text. Every once in a while (but often enough to be annoying), I attempt to enter out of text editing and suddenly everything stops, the gray rotating "processing" cursor appears, and for a few seconds I'm in a mild panic about how long it's been since I saved. Then a dialog box comes up asking if I want to switch to the 3D workspace or something. Clicking "no" doesn't stop the unwanted 3D thing from happening, and the last History item then says "Extrusion from Text Layer." I then Undo and go on with what I was doing.
    I've always got my left hand positioned over the lower left corner of the keyboard, and move quickly when using shortcuts and switching tools. I have no idea what combination I keep hitting by accident - something with fn, ctrl, opt, cmd, shift, I don't know, plus possibly return or enter. What is it, and how do I disable it?

    Trial-and-error prevails: It's fn + shift + return. (Or shift + enter on a full keyboard, I suppose? Unless that still does a soft line break like shift + return.)
    But only when I'm actively editing the text layer - not with the text layer selected and Move tool active, or even with the text layer selected and Type tool active, but only when in the process of using the Type tool to edit the text layer. I still have no idea to disable it, though.

  • While using marquee tool to cut and past section to new layer, outline stays transparent

    Hello,
    I am testing the trial version of Photoshop CS5.5 and I am experiencing a weird issue while using the marquee tool while selecting a portion of an image, cutting that section and pasting it to a new layer.
    First off I am running Windows 7 Ultimate 64 bit, 2.8Ghz Dual Core Processor, 4 Gigs Memory, 2 Gig Video card and current on updates with a fresh vanilla install of CS5.5.  Not filters or plugin installed.
    Step by step of issue is as follows,
    I take an image on layer 1 and while using the marquee tool select and area on that image.  I want to cut and Past In Place that selection on a new layer, layer 3. 
    This will allow me to insert another layer, layer 2, in between layer 1 and layer 3 and show what ever I place on layer 2 but still have a complete background if the image does not fill the entire transparent section.
    A good example is a wanted poster.  You have your picture frame with the Wanted letters and reward.  In the center you have a transparent square.  In the back you have a black background.  In between the frame and the background you place a face.  The face will not fill the entire sqaure so you will see some of the black back ground.
    Now the problem appears to be that the dotted line of the marquee selection makes so you can see your selection stays transparent or deletes the ares directly unter it when you cut and past to a new layer.  The transparent outline looks to be the same size of the dotted line when that selection is selected.  I have looked and searched for this promblem and resolution but can not see one. 
    The picture below is the result after I deselect the area.  You can see just above another section that I tried to cover up but did not get it all.  
    This is driving me nuts and I just can not figure out what is causing this behavior.  If I try and stretch the section, it skews the contents out of proportion.
    An suggestions or information would be greatly appreciated!
                                    Marquee Selection, Animated Lines                                                                Cut And Past In Place And Selection Deselected
    Thanks

    Instead of cut, one way is to duplicate the layer and add a layer mask from the selection. Alt click on the layer mask icon at the bottom of the layers panel to add a Layer Mask>Hide Selection.
    Then you can put a layer in the middle.
    The reason your seeing what's in your screenshot is the selection is anti-aliased,

  • Divide layer into 4 quarters and trouble with marquee tool.

    Help, please!!! Because I will be doing this often in the near future, I need to create an action to precisely divide a LAYER into 4 quarters, in order to easily create seamless patterns. I'm having trouble figuring out how to automate the placing of guides limited to the center points of the selected layer dimensions, as opposed to the entire image's dimensions. My second difficulty is in selecting the quarters; using the marquee tool, etc, the selection tool is NOT snapping to the guides, despite what I have the Snap To preferences set to. I need to select the pixels right up to the guide line so that I can select the "Make a new layer via cut" and then move the new layers in position to make a seamless tile. Right now, it is selecting a few pixels off. (Annoying!) So until I can figure out how to address these issues, I can't even begin to record an action. Even if I can't record a general action, due to the problem of different layers having different dimensions, I'd be happy to discover a shortcut to accurately quartering a layer and any advice as to why I'm having trouble managing the marquee tool. Maybe I'll get lucky and some kind soul will have already created and be willing to share something to solve this problem I'm currently trying out the CS6 Beta but usually work in either CS5 or PSE 9. For those of you who respond, thanks in advance!

    If you want to give a Script a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4 or /Applications/Utilities/Adobe Utilities-CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    // make 4 quadrant copiers of selected layer;
    // 2012, use at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var originalUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    var theLayer = myDocument.activeLayer;
    var theBounds = theLayer.bounds;
    var theWidth = theBounds[2] - theBounds[0];
    var theHeight = theBounds[3] - theBounds[1];
    // operation;
    var hor = 0;
    var ver = 0;
    for (var m = 0; m < 4; m++) {
    myDocument.activeLayer = theLayer;
    // calculate stuff;
    var left = theBounds[0] + (theWidth / 2 * hor);
    var right = left + (theWidth / 2);
    hor++;
    if (hor == 2) {hor = 0};
    var top = theBounds[1] + (theHeight / 2 * ver);
    var bottom = top + (theHeight / 2);
    if (String(m / 2).indexOf(".") != -1) {ver++};
    // make selection;
    var theArray = [[left, top], [right, top], [right, bottom], [left, bottom]];
    myDocument.selection.select(theArray, SelectionType.REPLACE, 0, false);
    // copy to layer;
    var id14 = charIDToTypeID( "CpTL" );
    executeAction( id14, undefined, DialogModes.NO );
    myDocument.activeLayer.name = theLayer.name + "_" + String(m);
    // reset;
    app.preferences.rulerUnits = originalUnits;

  • How to convert a image layer to a text layer any idea? a image looks like a text in layers box

    How to convert a image layer to a text layer any idea? a image looks like a text in layers box

    You can't convert an image into a text layer.  What you can do is clip an image to a text layer so that just the image layer shows up where there is text.  Create a text layer, then above it put your image layer.  Hold down the alt/opt key and click between the two layers to clip them.

  • Why is my Marquee tool selecting only a default size?

    Using CS4, when I attempt to select an area of an image, the Marquee tool automatically sizes itself and is not allowing me to draw the selection of my choice. Any idea why this is?
    With thanks,
    Paul

    That was it. Had it set to a fixed ratio.
    Thanks, CP. I wish they were all this simple

  • I recently upgraded our iMac to Yosemite OS and now have a problem with Photoshop Elements 11:  the move tool selects an image or text layer, but then I try to drag the selection somewhere else on the page and it snaps back to the original location, howev

    I recently upgraded our iMac to Yosemite OS and now have a problem with Photoshop Elements 11:  the move tool selects an image or text layer, but then I try to drag the selection somewhere else on the page and it snaps back to the original location, however the arrows will move it OK.  Also I cannot drag the selection to another photo in the photo bin as before.

    Hi,
    Please refer: http://helpx.adobe.com/photoshop-elements/kb/pse-stops-responding-yosemite.html
    Thanks,
    Anwesha

  • Start text layer (using Text Tool) from current time indicator - Adobe After Effects CC

    This is something that would improve the speed of my workflow considerably. When I click inside a composition using the Text Tool, the text layer always positions itself at the beginning of the composition.
    Is there any way to make the text layer start from the current time indicator so I don't continually have to scroll back to the start of the composition and drag the text layer forward to the desired position?
    Many thanks.

    There's a preference: Create Layers At Composition Start Time.

  • Wont let me "drag" the rectangle marquee tool or text box tool.

    Hey photoshop wizards... I need your help. I have CS4 and when I use the rectangle marquee tool or text tool... it wont let me click and drag an area that I want. It automatically selects a box from the top left corner of my image to where I clicked. It also does not let me move the box with the move tool once its made. Ive reset all the tools and this has not helped. If you know what Im talking about... please help me as it is preventing me from continuing my work. Thank you.

    You don't say what OS.
    First thing I do when things get goofy is to trash the prefs. This is covered in the FAQs if you don't know how.

  • How to Generate Barcode (3of9 Barcode or any of its variations) in a simple text layer?

    Is there a way to get the font names used in a computer (C:\windows\fonts), which can be used in Javascript line? I have the barcode font but I don't know its name for Javascript to recognize.
    see line on myTextRef.font below:
    // make a variable for the active document
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    // this is the real text layer describing it as a text item
    var myTextRef = myLayerRef.textItem;
    // Set font size in Points
    myTextRef.size = 24;
    //Can a text or numbers be converted to a Barcode?
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 255;
    newColor.rgb.green = 255;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 50, 50);
    myTextRef.justification = Justification.CENTER    
    // If Bold Font
    myTextRef.style = "BOLD";
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;

    Using javascript, app.fonts will get you a array of textFont objects. There will be a textFont object for each font Photoshop can use. Each object has several properties. For use with a text layer you want the postScriptName property.
    var fontList= [];
    var fonts = app.fonts;
    for (var i = 0; i < fonts.length; i++) {
      fontList.push(fonts[i].postScriptName);

  • How to import a text layer on multi-page document?

    Hi All,
    I have a slight problem and was wondering if there is a quicker solution?
    I'm working with acrobatproX
    I have been sent two pdf's form different sources. The first document is a 4c layer and the second is a translated text layer and
    I need to combine the two to check that the text is setup correctly and doesn't over run any images.
    I understand that I could import each text layer to a single page of the 4c but as it is a 256 page book?
    Is there a quicker solution than the one page at a time method?
    Many Thanks

    In PSE, to draw an empty circle use the elliptical marquee tool and hold down shift while you drag to constrain it to a circle. That will give you an empty selection, then go to Edit>Stroke (outline) selection. A window appears where you can choose the width and color of the stroke.
    However, I'm not understanding why you would want to create your business card in PSE rather than in Pages or equivalent. Is there a special reason for this?
    EDIT As for the text file, it would be simpler just to retype it in PSE, since it can't be very much text. Remember that PSE doesn't do all the fancy things with text that Pages can, although it can do some things (like warping) that Pages can't.
    You could activate the text tool and use copy/paste, but you'll lose most of the formatting.

  • Photoshop lags when i use the marquee tool

    I recently updates to Photoshop CC (2014) and ever since I did I have been having problems with lag when using the Marquee tool. I have tried reinstalling Photoshop and even downgrading back to CC but it doesn't help. Does anyone know what causes this?

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Marquee tool width not equal clipboard image width

    I'm really stuck with this issue and would like your help.
    I select an area with the marquee tool, lets say 122 height x 55 width. Then I either edit / copy or Ctrl + C.
    When I copy the area into a new file, the photoshop suggested file size is always 122 h x 51 w. Even if I make the new file size 122 height x 55 width, the copied area is only 51 px wide.
    This only occurs sometimes and I can't figure out why... Any help greatly appreciated.
    Thanks!
    Chris

    Hello,
    thanks for the reply. I only have one visible layer.
    Here the screenshots. The width in the Marquee selection area is 39px. Yet photoshop wants to create a new image with width 23px...?

  • Rect marquee tool question

    Hello
    I have opened a JPG in Photoshop CS version 8 and wish to select part of the rectangular image (which now measures 615px wide by 380px high) and paste that image into its own layer.
    So if for example I want to my selection to measure 324px wide by 380px high, I simply click on the marquee tool and under style change Normal to Fixed Size and type in my required dimentions in the Width and Height boxes along the top. When I have selected that part of the image I want, I just need to select Layer | New | Layer via cut.
    But what about the remaining part of my image that I also want to paste into its own layer? Do I just reset the width and heigh dimensions of the rectangular marquee too (in my example this would be 615px for the original length of the image less the 324px I have subtracted for my first new layer = 291px wide to be pasted onto my second layer).
    Is this the most precise way of doing it, because when the two parts are later joined I would need them to match perfectly (they image is of a person's face, so any lack of precision would stick out like a sore thumb!).
    Thanks for any advice.
    Steve

    Hello Sharon
    Thank you for your post.
    Can I just clarify? After I have duplicated the layer, I select part of the image (from left to right) using the marquee tool, pressed delete and then Select | Inverse. When I do that, I can see the right-hand side of the image pasted in what is my Background copy layer.
    Then, I duplicate the Background again, and with the marquee selected over the right-hand portion of the image, I click delete and then Select | Inverse.
    I think the Select | Inverse confused me a bit, but at the moment in the Layers panel I have the original Background, Background copy (with the right-hand part of the image pasted in), and now Background copy 2 with the left-hand part of the image pasted into that.
    Very many thanks.
    Steve

Maybe you are looking for

  • Mini-DVI to HDTV setup not working right

    Hi folks, I have an iMac8,1 (24" intel with mini-dvi video port) that I am trying to hook up to my 50" plasma TV for surfing the web and looking at photos from the sofa. I've hooked it up with an apple mini-dvi to composite/S-video adapter with very

  • FAX in Web Dynpro Java

    Hi all, Actually In my application I am looking for some way to send fax on a button click. For that In outlook there is a method to mail the FAX number the data you wnat.I have tried that and is working fine directly thru mail. But now I want to do

  • Header Area of Table is not printing on Next Page in SMARTFORM

    Hi All, I am facing one problem while Developing a smartform for Delivery. I want the same data to be copied to the Next page which is coming on first page. I copied the Main window to Next page with all the details but the Header of the Table is not

  • IPhoto recognizes my iPhone, but not the photos on it.

    The iPhone is a 3gs running iOS 5.1, the iMac is running OS X 10.6.8. When I connect the iPhone using USB, I open iTunes and it Syncs automatically.  I have to manually open it, and iPhoto too.  When I open iPhoto, it shows me the phone but with 0 pi

  • Why are the fonts displayed larger in Mountain Lion?

    Hi, I have upgrade a 4 year old (ish) iMac from Snow Lepoard to Mountain Lion, and all my documents now seem to be display the fonts larger post upgrade then they did before the upgrade. For example I have a spread sheet with an Arial 10 font, the fo