Resize a layer -senior moment

Hi
using ctrl t  to resize a layer, how can I resize whilst constraining the proportions thought is was hold down the shift key but clearly not
thanks
Ian

It is Shift!
Make sure you use a corner of the bounding box.

Similar Messages

  • How to resize a layer or picture

    I am brand new to anything PhotoShop. I have created a talk balloon that I plan on putting it on a photo. I have the text on it already. However, the area outside of the balloon must be tranparent. I made it transparent pixel by pixel. There must be an easier way. So my two questions are:
    1. How to make an area of a picture or layer transparent?
    2. How to resize a layer or .jpg picture or any picture that can be edited by PS Elements 12
    Tried to include the talk balloon file but it failed because of the content. What is wrong with " Hmmmmmm"
    "I think this one fits". It is a psd file.
    Bill

    1. How to make an area of a picture or layer transparent?
    Select the area where you want  it to be transparent and use the Eraser of various types from the tool bar. there are essentially three types:  Eraser Tool, Magic Eraser and Background Eraser.  The selection tool has also many types.
    How to resize a layer or .jpg picture or any picture that can be edited by PS Elements 12
    To resize any picture you simply go to:
    Image >> Resize
    Select what ever you want to resize the canvas or the Image.  If you are in PSD file then canvas resize might be appropriate but my answer is pretty general to give you the necessary options.  there is also the "Scale" of the image so you are spoilt for choices here.
    You just need to be careful not to0 degrade the image so much by resizing because pixels per inch changes and lower the amount per inch degrades the image;  This is what happens when you increase the size while reverse is the case if you resize it downwards.

  • Senior moment? I can't find the Eject button on the menu bar preference

    Whether through temporary blindness or by virtue of a senior moment, I can't find where the preference to show or hide the Eject button on the menu bar is located.  I'm trying to hide it, as it had always been.
    Any help will be most appreciated.

    If you don't want it there then CMD drag it down, if you ever want it back...
    On your main hard drive, dig down into System > Library > CoreServices > Menu Extras. Inside that window, double-click on the icon called Eject.menu.

  • Not able to resize a layer created in indesign

    I created a document in InDesign which had numerous text and image boxes. I exported this as a PDF and then imported it as a layer into an Acrobat document (Acrobat 9 Pro) when I try to resize or move that layer only some of the layer moves - it doesn't seem to select the entire layer. Obviously the individual text/image frames created in InDesign are there, albeit hidden. All I want to do is resize and reposition the entire PDF exported from InDesign and have all the text/images retain their positional relationship.

    It's not a layer really, but you can do much of what you describe if you use a button to display the page as the button's icon. You can make it any size you want and choose from several scaling types. You can also flatten the button when you're done to convert its appearance to regular page contents.

  • Resizing within layer? Playing with image size?

    Help! I have been searching FAQs and tutorials for hours. I used to be able to click and drag an image to change it's size while in the layer without having to specify a numeric value, just simply clicking and dragging then when happy with the size double clicking. I just upgraded to CS4 and can't find that option.
    Also how can I rotate just one of many layers in an image, using the rotate tool, it rotates all layers at once!

    I cannot identify with your past experience in Photoshop, perhaps you were referring to some other application  In Photoshop consider the following approach to both resize and rotate. Press Ctrl + T and a bounding box appears around the elements in the active layer. pull on a corner to resize, or
    pull on a corner with the shift key held down to resize proportionally.  If you hover just beyond the corner point you will see small curved arrows indicating the ability to rotate. Click and drag to rotate (just that layer) when the curved arrows appear.  Finish off any of the above transformations by hitting enter. Hope this helps.
    Paulo

  • Resize a layer to a percentage of the document size and position in corner

    I need to create a script that places a logo in the corner of my main document but i need the logo to be constrained to a percentage of the document size. my logos needs to live in the bottom right corner of my images and be no larger than 28 percent height and no larger than 60 percent of the width of the document. i need it to constrain proportions of the original file so if the logo is square it will remain square, or if it is more rectangular it will maintain its rectangular shape.  Heres what i've come up with so far, i am pretty inept at scripting so if disregarding my current script is more helpful than building upon it please ignore mine:
    if ( documents.length > 0 )
        var originalDialogMode = app.displayDialogs;
        app.displayDialogs = DialogModes.ERROR;
        var originalRulerUnits = preferences.rulerUnits;
        preferences.rulerUnits = Units.PIXELS;
        try
            app.activeDocument = app.documents[0];    //set active document to 2nd document   
            var docRefOne = app.documents[0];
            var refWidth = docRefOne.width;
            var refHeight = docRefOne.height;
            app.activeDocument = app.documents[1];    //set active document to 2nd document   
             var docRef = activeDocument;
            //current image dimensions
            var w = docRef.width;
            var h = docRef.height;
            activeDocument.selection.selectAll();
            docRef.selection.copy();   //Copy selection
            app.activeDocument = app.documents[0]; //set first document as active document
            var docRef = activeDocument;
            activeDocument.selection.selectAll();
           docRef.paste(true); //paste into selection
        catch( e )
        // An error occurred. Restore ruler units, then propagate the error back
            // to the user
            preferences.rulerUnits = originalRulerUnits;
           app.displayDialogs = originalDialogMode;
            throw e;
        // Everything went Ok. Restore ruler units
        preferences.rulerUnits = originalRulerUnits;
        app.displayDialogs = originalDialogMode;

    You could do something like this...
    #target photoshop
    activeDocument.suspendHistory('Logo Resize', 'main()');
    function main(){
    if(!documents.length) return;
    var startRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    var myDoc = activeDocument;
    /////////////////////////////// Amend to suit /////////////////////////////////
    var Opacity = 100; /* Opacity of logo */
    //Position logo   X,Y
    var X = myDoc.width - 10; //Right side of logo
    var Y = myDoc.height - 10; //Bottom of logo
    var Logo = File(Folder.desktop + "/logo.png"); //logo
    if(!Logo.exists){
        alert("Your logo '" + decodeURI(Logo.name) + "' does not exist!");
        app.preferences.rulerUnits = startRulerUnits;
        return;
    placeFile(Logo);
    var LB = myDoc.activeLayer.bounds;
    var docHeight = myDoc.height;
    var docWidth = myDoc.width;
    var LHeight = Math.abs(LB[3].value) - Math.abs(LB[1].value);
    var LWidth = Math.abs(LB[2].value) - Math.abs(LB[0].value);  
    if(LWidth > LHeight) {//Landscape logo
    var Percent = 60; /* Resize logo to percentage of smallest side of doc */
    if(LWidth < LHeight) {//Portrait logo
    var Percent = 28; /* Resize logo to percentage of smallest side of doc */
    if(LWidth == LHeight) {//Square logo
    var Percent = 15; /* Resize logo to percentage of smallest side of doc */
    var percentageHeight = ((docHeight/LWidth)*Percent);
    var percentageWidth = ((docWidth/LWidth)*Percent);
    if(docWidth < docHeight){
    myDoc.activeLayer.resize(percentageWidth,percentageWidth,AnchorPosition.MIDDLECENTER);
    }else{  
      myDoc.activeLayer.resize(percentageHeight,percentageHeight,AnchorPosition.MIDDLECENTER);
    var LB = myDoc.activeLayer.bounds;
    X = X - LB[2].value;
    Y = Y - LB[3].value;
    activeDocument.activeLayer.translate(X,Y);
    activeDocument.activeLayer.opacity=Opacity;
    app.preferences.rulerUnits = startRulerUnits;
    function placeFile(placeFile) {
    var desc = new ActionDescriptor();
    desc.putPath( charIDToTypeID('null'), new File(placeFile) );
    desc.putEnumerated( charIDToTypeID('FTcs'), charIDToTypeID('QCSt'), charIDToTypeID('Qcsa') );
    var desc2 = new ActionDescriptor();
    desc2.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Pxl'), 0.000000 );
    desc2.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Pxl'), 0.000000 );
    desc.putObject( charIDToTypeID('Ofst'), charIDToTypeID('Ofst'), desc2 );
    try{
    executeAction( charIDToTypeID('Plc '), desc, DialogModes.NO );
    }catch(e){}

  • Query question ( I am having a senior moment)

    I have 2 talbes
    Table One
    Key Value
    A 1
    A 2
    A 3
    A 4
    B 1
    B 2
    B 3
    Table Two
    Key Value
    A A
    A B
    B A
    B B
    B C
    B D
    B E
    I want to return :
    Key Value1 Value2
    A 1 A
    A 2 B
    A 3
    A 4
    B 1 A
    B 2 B
    B 3 C
    B D
    B E
    How can I write this query ??
    Thanks..

    In deference to your seniority :P, I won't point out that you neglected to tell us how table one value joins to table two value, so you'll have to adapt thi sto meet your own needs.
    SELECT * FROM
       (SELECT t1.keyval as key, t1.val as value1, t2.val as value2
        FROM   t_one t1, t_two t2
        WHERE  t1.keyval = t2.keyval(+)
        AND    decode(t2.val(+), 'A', 1, 'B', 2, 'C', 3, null) = t1.val
        UNION
        SELECT t2.keyval as key, t1.val as value1, t2.val as value2
        FROM   t_one t1, t_two t2
        WHERE  t1.keyval(+) = t2.keyval
        AND    decode(t2.val, 'A', 1, 'B', 2, 'C', 3, null) = t1.val(+))
    If you're using 9i you might want to investigate the ANSI FULL OUTER JOIN syntax, which is much neater.
    Cheers, APC

  • Selecting (and resizing, for example) a layer under the top layer via the Program Monitor

    Hello all.
    Using CS5
    I am in the timeline and have selected layer 1 which is a video layer
    Layer 2 is a title layer.
    I want to manually resize layer 1, via the Program Monitor.
    But when I go to the Program Monitor and select it Layer 2 (the title layer) becomes selected, preventing me from selecting and manually resizing/repositioning Layer 1.
    The above example is a simplified version of what I usually find myself doing.  Usually I have many layers above a layer that I want to resize or reposition (or do something else) but when I try to resize or repositon via the program monitor I am only able to manipulate the top layer.
    Any suggestions, other than locking every layer other than what I want to resize etc .?
    Thanks
    Rowby

    Hi Bill,
    No they are separate orginal tracks. 
    Is there a way to "select" a layer below the top layer via the Progam Monitor -- and perform modifications on that lower level -- such a manually resizing on the Program Monitor.  I find if I want to do it via the Program  Monitor I have to temporarily lock the top layer.
    And if I have lots of layers above the layer I want to manually resize, I have to lock all of the layers above that layer so I don't start moving around (for example a title layer which might be the top layer of the sequence) in order to manually resize via the Program Monitor.
    I know (for example) in the case of scaling or repositioning a layer I could do it via the effects control panel, but I often want to do it via the Program Monitor.
    Rowby

  • Resize width of layer to canvas width

    I'm having some trouble resizing a layer width to canvas width.
    I know one way that works and it involves creating new document, resizing, then pasting back in. This seems extranious it seems there should be an easier way.
        var width = doc.width;
        var bounds = layer.bounds;
        var height = bounds[3]-bounds[1]; \\get height because I want this the same
        var width = doc.width;
        layer.resize (width, height, AnchorPosition.MIDDLECENTER);
    this seems to fail even though it seems the documentation says it should work? maybe I am misunderstanding.

    When dealing with layers the resize is done with percentage, so your
    layer width and height are allways 100% To make it fit the document you need to work out the ratio and then resize.
    This should do what you want....
    main();
    function main(){
        if(!documents.length) return;   
        if (activeDocument.activeLayer.isBackgroundLayer) return;
        fitLayerToDoc();
    function fitLayerToDoc(){  
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;           
    var docWidth = activeDocument.width.value;
    var LB = activeDocument.activeLayer.bounds;              
    var LWidth = LB[2].value - LB[0].value;               
    var percentageWidth = ((docWidth/LWidth)*100);
    activeDocument.activeLayer.resize(percentageWidth,100,AnchorPosition.MIDDLECENTER);
    align( 'AdRg');
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;
    function align(method) {
    activeDocument.selection.selectAll();
       var desc = new ActionDescriptor();
               var ref = new ActionReference();
               ref.putEnumerated( charIDToTypeID( "Lyr " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
           desc.putReference( charIDToTypeID( "null" ), ref );
           desc.putEnumerated( charIDToTypeID( "Usng" ), charIDToTypeID( "ADSt" ), charIDToTypeID( method ) );
        try{
       executeAction( charIDToTypeID( "Algn" ), desc, DialogModes.NO );
       }catch(e){}
       activeDocument.selection.deselect();

  • CS5 - Dialog Comes Up for Duplicate Layer - But Never Before Today

    I've been working with Mac CS5 since it came out. And Mac PhotoShop in general since the early 90's. That said...
    This just started today right in the middle of a project:
    Normally I hold down my Option Key and drag a layer down to the New Layer icon at the bottom of the Layers pane.
    Now I get a dialog popping up asking me if to give the duplicate a name (if it's multiple layers), or to ask if the default name is OK.
    This wasn't happening earlier in the day.
    Why has this all of a sudden started happening?
    How can I turn the pop-up off?
    I've tried resetting the prefs with Cmd-Opt-Shift on reopening PS5. Doesn't help
    Yes, I know I can do this with Cmd-J, but I've doing the Opt-Drag methods for many years, and that's now how I'm used to working.
    Please help.
    Running iMac with 8 GB RAM, OSX 10.8.2. RAM usage set to 70% default.PhotoShop CS5 10.0.4 x32
    Jim

    So, why are you holding down the Option key when dragging a layer to the New Layer icon? It should duplicate the layer without doing that.
    If you hold down the Option key WITHIN the Layers Panel, it will duplicate the layer you drag. You may have been confusing those two methods to duplicate a layer. (A "senior moment"?  I have had many.)

  • Can't scale effects with image resize in Photoshop CC, why?

    I'm trying to resize an image, size it down from the 600ppi I work in
    to a preview 300ppi size. But I can't get any option to resize the layer
    effects to work. In that little cog, in the top right, there is a menu
    item Scale Effects, but it is always greyed out and unselectable.
    I've tried just scaling it in different ways, percentages, the actual
    size rather then the ppi. No luck. Anyone know why?
    I'm desperate to get this file (which has a tonne of layer comps in it) to print.
    Thanks!

    Adobe hid the option in its new dialog making it inconvenient you have no idea of how it is currently set till you click on the gear to see the status of the check-mark.

  • How do I fix this layer

    I have a layer with a transparent swf movie on this page but
    when the page/browser is resized the layer does not move to stay in
    the same position on the page. It doesn't move at all. I want the
    layer with the swf to stay in the same position and move with the
    rest of the page.
    How do I fix it?
    Thank You.
    100% amateur here
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <title>index 5</title>
    <style type="text/css">
    <!--
    .style1 {
    color: #000000;
    background-color: #000000;
    #Layer1 {
    position:absolute;
    left:262px;
    top:201px;
    width:602px;
    height:91px;
    z-index:1;
    gifimg {
    top: 1px;
    #Layer2 {
    position:absolute;
    left:163px;
    top:289px;
    width:550px;
    height:384px;
    z-index:1;
    swflayer {
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4
    resized
    if (init==true) with (navigator) {if
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH) location.reload();
    MM_reloadPage(true);
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0;
    i<a.length; i++)
    if (a
    .indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}
    function MM_swapImgRestore() { //v3.0
    var i,x,a=document.MM_sr;
    for(i=0;a&&i<a.length&&(x=a
    )&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
    var p,i,x; if(!d) d=document;
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++) x=d.forms[n];
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    x=MM_findObj(n,d.layers
    .document);
    if(!x && d.getElementById) x=d.getElementById(n);
    return x;
    function MM_swapImage() { //v3.0
    var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
    Array; for(i=0;i<(a.length-2);i+=3)
    if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x;
    if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body onload="MM_preloadImages('images/form
    images/indexrogal.jpg','images/form
    images/indexrocom.jpg','images/form
    images/indexrotech.jpg','images/form
    images/indexroinfo.jpg','images/form
    images/indexroexpo.jpg','images/form
    images/indexroprints.jpg')">
    <div id="Layer2">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','550','height','400','title','slideshow','src','swf/slideshow1','quality','high','plug inspage','http://www.macromedia.com/go/getflashplayer','wmode','transparent','movie','swf/ slideshow1'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="550" height="400" title="slideshow">
    <param name="movie" value="swf/slideshow1.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="swf/slideshow1.swf" width="550" height="400"
    quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"
    wmode="transparent"></embed>
    </object>
    </noscript></div>
    <body bgcolor="#000000" leftmargin="0" topmargin="0"
    marginwidth="0" marginheight="0">
    <div align="center">
    <span class="style1">
    <table width="831" border="0" cellspacing="0"
    cellpadding="0">
    </span>
    <tr>
    <td align="left" valign="top" class="style1">
    <img src="images/form images/index.jpg" width="857"
    height="950" border="0" usemap="#Map" id="Image1" />
    <map name="Map" id="Map">
    <area shape="rect" coords="645,198,702,240"
    href="pages/print.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexroprints.jpg',1)" onmouseout="MM_swapImgRestore()"
    />
    <area shape="rect" coords="563,213,625,254"
    href="pages/expo.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexroexpo.jpg',1)" onmouseout="MM_swapImgRestore()" />
    <area shape="rect" coords="491,221,546,260"
    href="pages/info.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexroinfo.jpg',1)" onmouseout="MM_swapImgRestore()" />
    <area shape="rect" coords="315,219,362,259"
    href="pages/tech.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexrotech.jpg',1)" onmouseout="MM_swapImgRestore()" />
    <area shape="rect" coords="234,217,304,254"
    href="hitz2003/comercialpages/creativeindex.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexrocom.jpg',1)" onmouseout="MM_swapImgRestore()" />
    <area shape="rect" coords="148,208,221,249"
    href="pages/galleries/theland/theland1.html"
    onmouseover="MM_swapImage('Image1','','images/form
    images/indexrogal.jpg',1)" onmouseout="MM_swapImgRestore()" />
    </map>
    </body>
    </html>

    Change this -
    <body ...>
    <div id="wrapper">
    onload="MM_preloadImages('images/form
    images/indexrogal.jpg','images/form
    images/indexrocom.jpg','images/form
    images/indexrotech.jpg','images/form
    images/indexroinfo.jpg','images/form
    images/indexroexpo.jpg','images/form
    images/indexroprints.jpg')">
    to this -
    <body onload="MM_preloadImages('images/form
    images/indexrogal.jpg','images/form
    images/indexrocom.jpg','images/form
    images/indexrotech.jpg','images/form
    images/indexroinfo.jpg','images/form
    images/indexroexpo.jpg','images/form
    images/indexroprints.jpg')">
    <div id="wrapper">
    (you had the ellipsis in the body tag, even though I told you
    NOT to do
    that, and you had orphaned the code that should have been in
    the body tag)
    Change this -
    </noscript></div>
    <body bgcolor="#000000" leftmargin="0" topmargin="0"
    marginwidth="0"
    marginheight="0">
    <div align="center">
    to this -
    </noscript></div>
    (you can only have one <body> tag on a page)
    Finally, change this -
    #wrapper { text-align:left; width:760px;
    to this -
    #wrapper { text-align:left; width:831px;
    (your table is 831px wide)
    And for goodness sakes, learn some HTML before you hurt
    yourself.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Orr 4" <[email protected]> wrote in message
    news:[email protected]...
    > Murray Ace, I do have a question.
    >
    > Now everything works properly, both layer and under
    image are conected so
    > that
    > they move together when the browser window size is
    changed.
    > But now everything has shifted to the right. It is no
    longer centered in
    > the
    > browser window. Can you look at this and tell me what to
    adjust. I'm
    > afraid I
    > may break what is now working.
    > Thanks again for the help!
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <style type="text/css">
    > <!--
    > body { text-align:center; }
    > #wrapper { text-align:left; width:760px; margin:0
    > auto;position:relative; }
    > /* 760px will display on an 800px screen maximized
    browser window without
    > */
    > /* horizontal scrollbars. */
    > -->
    > </style>
    > </head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    > <title>index 5</title>
    > <style type="text/css">
    > <!--
    > .style1 {
    > color: #000000;
    > background-color: #000000;
    > }
    > #Layer1 {
    > position:absolute;
    > left:262px;
    > top:201px;
    > width:602px;
    > height:91px;
    > z-index:1;
    > }
    > gifimg {
    > top: 1px;
    > }
    > #Layer2 {
    > position:absolute;
    > left:152px;
    > top:341px;
    > width:550px;
    > height:384px;
    > z-index:1;
    > }
    > swflayer {
    > }
    > -->
    > </style>
    > <script type="text/javascript">
    > <!--
    > function MM_reloadPage(init) { //reloads the window if
    Nav4 resized
    > if (init==true) with (navigator) {if
    >
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    > document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    > onresize=MM_reloadPage; }}
    > else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH)
    > location.reload();
    > }
    > MM_reloadPage(true);
    >
    > function MM_preloadImages() { //v3.0
    > var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    > var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
    for(i=0;
    > i<a.length;
    > i++)
    > if (a
    .indexOf("#")!=0){ d.MM_p[j]=new Image;
    > d.MM_p[j++].src=a;}}
    > }
    >
    > function MM_swapImgRestore() { //v3.0
    > var i,x,a=document.MM_sr;
    for(i=0;a&&i<a.length&&(x=a
    )&&x.oSrc;i++)
    > x.src=x.oSrc;
    > }
    >
    > function MM_findObj(n, d) { //v4.01
    > var p,i,x; if(!d) d=document;
    >
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    > d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    > if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++)
    > x=d.forms[n];
    >
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    > x=MM_findObj(n,d.layers
    .document);
    > if(!x && d.getElementById)
    x=d.getElementById(n); return x;
    > }
    >
    > function MM_swapImage() { //v3.0
    > var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
    Array;
    > for(i=0;i<(a.length-2);i+=3)
    > if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x;
    if(!x.oSrc)
    > x.oSrc=x.src; x.src=a[i+2];}
    > }
    > //-->
    > </script>
    > <script src="Scripts/AC_RunActiveContent.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body ...>
    > <div id="wrapper">
    onload="MM_preloadImages('images/form
    > images/indexrogal.jpg','images/form
    images/indexrocom.jpg','images/form
    > images/indexrotech.jpg','images/form
    images/indexroinfo.jpg','images/form
    > images/indexroexpo.jpg','images/form
    images/indexroprints.jpg')">
    > <div id="Layer2">
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','width','550','height','400','title','slideshow','src','swf/sl
    > ideshow1','quality','high','pluginspage','
    http://www.macromedia.com/go/getflashp
    > layer','wmode','transparent','movie','swf/slideshow1' );
    //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,19,0" width="550" height="400"
    title="slideshow">
    > <param name="movie" value="swf/slideshow1.swf" />
    > <param name="quality" value="high" />
    > <param name="wmode" value="transparent" />
    > <embed src="swf/slideshow1.swf" width="550"
    height="400"
    > quality="high"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash"
    wmode="transparent"></embed>
    > </object>
    > </noscript></div>
    > <body bgcolor="#000000" leftmargin="0" topmargin="0"
    marginwidth="0"
    > marginheight="0">
    > <div align="center">
    > <span class="style1">
    > <table width="831" border="0" cellspacing="0"
    cellpadding="0">
    > </span>
    > <tr>
    > <td align="left" valign="top" class="style1">
    > <img src="images/form images/index.jpg" width="857"
    height="950"
    > border="0" usemap="#Map" id="Image1" />
    > <map name="Map" id="Map">
    > <area shape="rect" coords="645,198,702,240"
    href="pages/print.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexroprints.jpg',1)"
    onmouseout="MM_swapImgRestore()" />
    > <area shape="rect" coords="563,213,625,254"
    href="pages/expo.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexroexpo.jpg',1)"
    > onmouseout="MM_swapImgRestore()" />
    > <area shape="rect" coords="491,221,546,260"
    href="pages/info.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexroinfo.jpg',1)"
    > onmouseout="MM_swapImgRestore()" />
    > <area shape="rect" coords="315,219,362,259"
    href="pages/tech.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexrotech.jpg',1)"
    > onmouseout="MM_swapImgRestore()" />
    > <area shape="rect" coords="234,217,304,254"
    > href="hitz2003/comercialpages/creativeindex.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexrocom.jpg',1)"
    > onmouseout="MM_swapImgRestore()" />
    > <area shape="rect" coords="148,208,221,249"
    > href="pages/galleries/theland/theland1.html"
    > onmouseover="MM_swapImage('Image1','','images/form
    > images/indexrogal.jpg',1)"
    > onmouseout="MM_swapImgRestore()" />
    > </map>
    >
    > <!-- /wrapper -->
    > </div>
    > </body>
    > </html>
    >
    >

  • Trouble resizing layers to specific dimensions

    Hello. I am using PSE 5 and I am trying to make an 11 x 8.5 brochure for my business, which will have a mixture of text and pictures. What I want to do is place four pictures in the brochure but the pictures, when dragged in, cover the whole brochure. I want to be able to resize each picture (layer) to 3 wide while constraining the height to 2.25.
    Currently I can resize each layer by dragging one of the rectangular markers located around the active layer, but the scale is not preserved. I have looked in my PSE 5 help file, Adobes online help and Google to no avail. One site said hold the Shift key when resizing a layer to constrain its proportions, but this did not work for me.
    When modifying a picture in a Microsoft Word document, the size can easily be modified by right clicking on the image and selecting «Format Picture» followed by clicking on the «Size» tab. Is there a similar feature is PSE 5?
    Thank you

    Dennis,
    This program does not work the way MS Word does, and it may be easier to make a brochure with Word or a print shop program. However, one can make an artful collage in Elements.
    1. It is desirable to have the resolution of the canvas and of the individual pictures the same. One can check the resolution in Image>resize>image size for each picture file, then resize as necessary
    2. File>new>blank file will allow one to open a blank file in accordance with the dimensions (11x8.5")which you require. The resolution can be specified in this dialog as well. For printing, it is desirable to have a resolution of 240-300px/in. Create such a blank file.
    3. This blank file will be the background layer, as seen in the layers palette
    4. Open a picture file. Go to Select>all, then Edit>copy. Make the background layer active (the one from step #2), go to Edit>paste. This will place the picture on its own layer
    5. Access the move tool, and resize the picture utilizing one of the corner handles.
    6. Repeat for each picture.
    7. Text will be on its own layer as well
    8. 3x2.25" dimensions are unique, and I would crop each picture to this specification before step #4 above. With care, you may have minimal distortion.
    HTH,
    Ken

  • Hint on resizing components with the window

    Hi,
    I'm making a web browser and am having a bit of trouble getting the componenets inside ( a JSpliPane with various bits in it) and the top buttons to resize with the main frame when it is resized. At the moment it all stays in the top left at the same size.
    I would like it for the menu to just expand width ways and the JSplitPane to rezise fully to take ip the rest.
    Any ideas on where to start, I have an idea that it may be layout managers, but i cant seem to see how to get one to do this.
    Any pointers would be appreciated cheers (I will happilly look up the API if someone could tell me where to start).
    Cheers :)

    Use a LayoutManager, more specifically BorderLayout.
    JFrame f = new JFrame();
    f.getContentPane().setLayout(new BorderLayout()); //BorderLayout is the default layoutmanager
    f.getContentPane().add(myContentPane, BorderLayout.CENTER);And that's it...

  • How would I code to resize my UILoader in SWF

    Hi All
    I have loaded different SWFs using UI Loader component and I
    have used AS 3.0 for that. All those SWFs are playing video in form
    of Flvs in that. While executing those UI Loaders show video
    efficiently. Is there any way that I can code so that user can also
    resize that UI loader and still maintain the aspect ratio of the
    video. i am using RESIZE property but it is not allowing the user
    to resize the component , it just once resize the component on the
    run time
    I would highly appreciate any help.
    Thanks
    Anuj
    /* Here's the sample code I am putting to refer*/
    var myUILoader:UILoader = new UILoader();
    myUILoader.autoLoad = false;
    myUILoader.maintainAspectRatio=true;
    myUILoader.drawFocus(true);
    //Allowing Resize of the UI Loader
    /*myUILoader.addEventListener(ComponentEvent.RESIZE,
    resizeHandler);
    function resizeHandler(event:ComponentEvent):void
    var uiLdr:UILoader = event.currentTarget as UILoader;
    trace(uiLdr.width, uiLdr.height); // 400 267
    uiLdr.move((stage.stageWidth - uiLdr.width) / 2,
    (stage.stageHeight - uiLdr.height) / 2);
    myUILoader.focusEnabled=true;
    myUILoader.scaleContent = true;
    myUILoader.width=300;
    myUILoader.height=300;
    myUILoader.addEventListener(MouseEvent.MOUSE_DOWN,UI1);
    myUILoader.addEventListener(MouseEvent.MOUSE_UP,UI2);
    function UI1(event:MouseEvent):void
    if((myUILoader.x>-887) && (myUILoader.y>-500)
    &&(myUILoader.y<746))
    myUILoader.startDrag();
    else if(myUILoader.y>746)
    myUILoader.visible=false;
    function UI2(event:MouseEvent):void
    if((myUILoader.x>-887) && (myUILoader.y>-500)
    &&(myUILoader.y<746))
    myUILoader.stopDrag();
    else
    myUILoader.unload();
    myUILoader.source = "/video/pic_1.swf";
    myUILoader.load();
    myUILoader.move(mouseX,mouseY);
    addChild(myUILoader);

    Whenever I try to resize an image by clicking "image size" it only resizes the canvas. Before, I could click on a single photo and drag the corner to resize the image. If I pressed shift while I did it, it would retain the same dimension ratios. If I pressed control while I dragged the corner, it would let you manipulate the shape so that you could kind of make it 3D. If you put your cursor in the right place, it would also let you rotate the image. It won't even do any of that when I type text onto my canvas. It seems like that function is turned off, and I'd like to know how to use it again.
    Maybe I'm saying it wrong. I guess what I really mean is resizing a layer. Like, if I copy and pasted a photo onto a canvas I already have open, I'd want to drag to resize it to fit the canvas.

Maybe you are looking for