Feature request: Scale to fit (Smart Scale)

Hello,
When I either drag a layer from one doc to another, when I drop it, or even via copy and paste, it would be nice to have a SCALE TO FIT option.
Often when working with different resolution images, you still need to make them fit. Either scaling down to fit target document size, or scale up. Kind of like a Super Smart Object.
If you have different ratios, i.e 4:3, 16:9 etc. you can have option to either scale to fit width, or height. or simply scale to fit 100% in the canvas.
Very much like we have in most print dialog boxes.
It could be a keyboard comand or even contextual menu: SCALE TO FIT.
A selected object or layer can be right clicked: scale to fit. Would help workflow. Would be easy to impliment.
Option: Constrain Proportions check box. example, if I am bringing in say a texture I want to use with blend modes. this option would scale the X and Y to fit the canvas.
Thank you!

See http://developer.mozilla.org/en/Places_query_URIs

Similar Messages

  • Feature Request: Tagging coupled with Smart Folders

    Would love to see the next version of Safari add tagging, as has been mentioned here before, but more importantly I'd like to see Smart Folder capability added as well.
    I'm a big fan of Smart Folders in Mail; makes it easy to file -- I just drop everything in my "Saved Mail" folder, then set up the Smart Folders as needed (e.g., "Client Mail", "Mom", "Amazon - Sold, Ship Now", etc.
    Applying the same process to Safari bookmarks would be wonderful. For instance, let's say I have a bookmark for the plastic modeling website Starship Modeler (starshipmodeler.com); I could tag it with "Modeling" (obvious), "Shopping" (since it has a store), "Sci-Fi", and then even more specific tags like "Star Wars" or "2001 A Space Odyssey". I could then make a smart folder that would find bookmarks tagged only with "shopping" and "Star Wars", and it'd show up there. But it would also show up in my smart folder just for "modeling", etc.
    Right now I have hundreds of bookmarks if not more. I've tried a number of tagging programs but none really fit the bill. Native tagging, along with smart folders, would make Safari far and ahead my favorite browser (which it already is, but more so, eh?).

    Hi,
    Put a bug in Apple's ear by providing feedback here.
    http://www.apple.com/feedback/macosx.html
    Carolyn

  • Feature request: Ability to limit smart bookmark searches to tag field

    I'm only now learning to appreciate smart bookmark folders, but I'd like to be able to create more specific searches with them. Specifically, I'd like to be able to limit my searches to the tag field. I have a "recipe" smart bookmark that works nicely, except for the "Recipes for financial success" article that it also pulls in.

    See http://developer.mozilla.org/en/Places_query_URIs

  • Feature request: selective per-file Smart Previews in LR5

    I would like to be able to selectively enable Smart Previews on a per-file basis, rather on entire directories.
    It would be great if I could do this after importing files, too.
    I am using:
    Lightroom 5.0 64-bit
    Windows 7 Ultimate 64-bit

    You can BUILD smart previews on a per-file basis by clicking the original photo button in the lower left corner of the histogram.  In grid view of the Library module, it will build smart previews for all the photos you have selected.  In Develop module, it will build a smart preview for the most-selected photo.  Not sure if this is what you want.

  • Where did the "scale to fit" option go?

    If I remember correctly in one of the tutorials I was watching there was a scale to fit or scale to fill option for the browser fill, its not an option anymore. I'm confused as to what happned to it. Was it actually taken out of the features?

    The ability to use the Scale to Fit option for the Browser Fill is now available in the current Muse beta. You can learn more about this feature in the Muse Release Notes (August 1, 2012 beta).
    Here is more information on how to participate in the Muse beta program: Participating in the Muse beta program
    We welcome your feedback on these upcoming features.
    Best regards,
    Corey

  • Are Adobe EVER going to make Edge Animate scale-to-fit (like Flash)?

    I've been following the progress of Edge Animate (formerly Edge) ever since Steve Jobs decided he wasn't having Flash on the iPad.
    With each new version I've been desperately looking for the feature that I consider the most important of all: Scale-to-fit
    There are a couple of discussions already on this forum where people have requested this feature - but both have been sidetracked by replies from people who haven't understood what 'scale-to-fit' is. So let me explain Scale-to-fit:
    I'm talking about the feature in Flash - where if the HTML dimensions are set to 'Percent' - then the resultant movie will scale-to-fit any browser window. Here is an example of what I mean:
    http://www.skippingschool.co.uk
    - try changing the browser size and you'll see the whole frame (graphics and images) scales without changing its proportions.
    When the latest version of Edge Animate came out with its built-in easy-to-follow 'Resize' Lesson, I thought Adobe had finally found an answer. But good though this feature is, it doesn't solve the problem. It's only possible to properly scale-to-fit images - not graphics.
    It's now more important than ever that Adobe finds a solution to this problem. The world is going 'Responsive' - its not just a fad. And 'Responsive' is not just about three columns being squeezed into one. All Responsive sites require images, graphics AND animations to scale-to-fit. So Adobe's tutorial showing how Edge Animate can be added to WordPress sites is of limited use because it won't work for Responsive web sites.
    So please Adobe, will someone tell me if scale-to-fit is EVER going to happen? I don't mind if it's 3 months, 6 months, 9 months down the line - but I need to know if it's worth me sticking with Edge Animate - or whether I should be looking toward HTML5 Canvas or something else for a solution?
    Alternatively, is there some fundamental reason why it can NEVER happen?
    Please tell me? Just put me out of my misery!

    Hi Sarah,
    I hope you don't mind but I played around with your code a bit and managed to get the kind of scale-to-fit behavior that I believe the OP was asking about.  I think the trick is to make sure that you also check whether the scaled height of the stage exceeds the height of the browser window and change the scaling so that it is responsive to changes in both the width and height of the window, whichever is the limiting factor. The code I changed in CompositionReady appears in bold below.  I hope this helps.
    sym.$("#Stage").css({ // Set the transform origin so we always scale to the top left corner of the stage
    "transform-origin":"0 0",
    "-ms-transform-origin":"0 0",
    "-webkit-transform-origin":"0 0",
    "-moz-transform-origin":"0 0",
    "-o-transform-origin":"0 0"
    function scaleStage() {
        var stage = sym.$('Stage'); // Set a reusable variable to reference the stage
        var parent = sym.$('Stage').parent(); // Set a reusable variable to reference the parent container of the stage
        var parentWidth = stage.parent().width(); // Get the parent of the stage width
        var parentHeight = $(window).height(); // Get the browser window height
        var stageWidth = stage.width(); // Get the stage width
        var stageHeight = stage.height(); // Get the stage height
        var desiredWidth = Math.round(parentWidth * 1); // Set the new width of the stage as it scales
        var desiredHeight = Math.round(parentHeight * 1); // Set the new height of the stage as it scales
        var rescaleWidth = (desiredWidth / stageWidth); // Set a variable to calculate the new width of the stage as it scales
        var rescaleHeight = (desiredHeight / stageHeight); // Set a variable to calculate the new height of the stage as it scales
        var rescale = rescaleWidth;
        if (stageHeight * rescale > desiredHeight) // Do not scale larger than the height of the browser window
                        rescale = rescaleHeight;
    // Rescale the stage!
               stage.css('transform', 'scale(' + rescale + ')');
         stage.css(  '-o-transform', 'scale(' + rescale + ')');
               stage.css('-ms-transform', 'scale(' + rescale + ')');
         stage.css('-webkit-transform', 'scale(' + rescale + ')');
               stage.css('-moz-transform', 'scale(' + rescale + ')');
         stage.css('-o-transform', 'scale(' + rescale + ')');
               parent.height(stageHeight * rescale); // Reset the height of the parent container so the objects below it will reflow as the height adjusts
    // Make it happen when the browser resizes
    $(window).on('resize', function(){
               scaleStage();
    // Make it happen when the page first loads
    $(document).ready(function(){
        scaleStage();

  • Excel file won't scale to fit page

    We have just installed a new copier, a Ricoh MP C4503, that repaced essentially an earlier version of the product.
    We have a user with an Excel for Mac 2011 xls file, that when he selected an area and printed with scale to fit, printed full page on 11 x 17. But now the spreadhseet comes out looking shrunk on the page, perhaps as thought it would look if printed fully on 8.5 x 11 but I'm just guessing.
    If I print this file on another Mac,with essentially the same OS (or several other versions of OSX on several other Macs we have in the office) using the same copier, it prints as desired, a beautiful fullpage 11x17 spreadsheet.
    It is only on his MBP (with latest updates I might add) that this problem is occurring, so I think it must be a problem with his OS, his printer driver, or his Excel installation, and I would remind, it printed fine before the new printer/copier came along.
    I have tried a barrage of possible solutions until I'm bleary-eyed: multiple tweaks of the settings in sys prefs, printer features, page setup, print area, deleting and reinstalling driver, and more.
    Help?

    Wrong place to ask perhaps?

  • Edge Suite issue with Scale to Fit composition

    Having problem with this WordPress based site. As you can see, the composition is not appearing. It used to be, but then I tried Sarah Hunt's tutorial on Scale to Fit comps. The tutorial seems to work fine....except on WordPress sites. At least using the Edge Suite plugin to upload .oam's. It's mentioned in Sarah's tutorial but there was never a resolution. So I brought it over here to the main Adobe Forums and hopefully I can get an answer as to why my comp isn't displaying.
    The files for this preso are here: https://www.dropbox.com/s/v6w8x0zl0cln5wi/flowshot.zip
    Any help on making this work, er, uh, fit, would be great.

    Tried that as well, to no effect. Now I get no Edge comp on the page at all. Just blank. Although the code says otherwise
    <div id="featured" class="grid col-940">
    <div style="width:1px; height:auto"><div id="Stage" class="EDGE-6453776">
    <script type="text/javascript">window.AdobeEdge = window.AdobeEdge || {};window.AdobeEdge.pathPrefix = window.AdobeEdge.pathPrefix || {};AdobeEdge.pathPrefix.libs = 'http://flowcommunications.com/wp-content/uploads/edge_suite';AdobeEdge.pathPrefix.comps = AdobeEdge.pathPrefix.comps || {};AdobeEdge.pathPrefix.comps['EDGE-6453776'] = 'http://flowcommunications.com/wp-content/uploads/edge_suite/project/flowshot_5';</script>
    <script type="text/javascript" src="http://flowcommunications.com/wp-content/plugins/edge-suite/includes/edge-wordpress.js"></script>
    <script type="text/javascript" src="http://flowcommunications.com/wp-content/uploads/edge_suite/project/flowshot_5/flowshot_ed gePreload.js"></script>
    <div id="Stage_flowshot_5" style="height:200px;width:960px;margin: 0px auto;margin-top:10px;" class="EDGE-6453776"></div>
    </div></div>
    <p style="color: #FFF; font-family: "myriad-pro",sans-serif;"><strong>Hello! Welcome to our new site, on a new server.<br>Pardon our dust. It’s still under construction.<br>Thank you!</strong></p>
    </div><!-- end of #featured -->

  • How to scale to fit Photoshop CS6

    I work with a lot of texture layers, often the wrong size and dimensions. I do transform and manually resize. But is there a scale to fit command?In the Photoshop Paper Texture extension, you can see it does that automatically. If there isn't such a command, can anyone point me to an action I can use.
    Thank you.
    Max

    No guessing needed of course there is. Layers are as easy to resize as documents is.  That is what "Transform" does in a script though its method name in script is resize. The resize values used are relative to current size percentage the anchor point defaults to the center but can be changed and the interpolation use is you interpolation preference which can be changed.
    Javascript syntax
    resize ([horizontal] [, vertical][, anchor]); // number number AnchorPosition
    Resizes the layer to the specified dimensions (as a percentage of its current size) and places it in the specified position.
    Here is a sample of how one might use it. You need to be careful if you have CS6 Adobe failed to update Photoshop scripting to support BicubicAutomatic and if you leave Adobe default interpolation preference set script will encounter a Photoshop internal error when you try to save that setting.
    // Save interpolation settings the script will fail if CS6 and setting is bicubic automatic
    var userResampleMethod = app.preferences.interpolation;
    app.preferences.interpolation = ResampleMethod.BICUBIC; // resample interpolation bicubic
    if (LWidth/LHeight<SWidth/SHeight) { // Smart Object layer Aspect Ratio less the Canvas area Aspect Ratio
       var percentageChange = ((SWidth/LWidth)*100); // Resize to canvas area width
       activeDocument.activeLayer.resize(percentageChange,percentageChange,AnchorPosition.MIDDLECENTER);
    else {
       var percentageChange = ((SHeight/LHeight)*100); // resize to canvas area height
       activeDocument.activeLayer.resize(percentageChange,percentageChange,AnchorPosition.MIDDLECENTER);
    app.preferences.interpolation = userResampleMethod; // Reset interpolation setting
    Message was edited by: JJMack

  • Site automatically scale to fit the browser window

    hello all!
    i'm working on a site that i'd like to automatically scale to fit the browser window, without any scrolling and while preserving its aspect ratio.
    my client is very particular about the design & does not want the width & height of the images & text to change like they do in a responsive site- he just wants the site to scale to fit in a browser window. Yikes!!!
    could anyone give me a hand with this please?
    thanks so very much!
    -sharon

    Hi Andreas
    I'm really looking forward to hearing about your tests tonight. As I said to Elaine (above) I will be delighted if someone proves me wrong. I'm just looking for a solution.
    I've just had another quick go on Edge Animate to try out your suggestions:
    My findings are that it doesn't matter whether a graphic is wrapped in a div or not. If the graphic has L, T , W & H pixel values and the surrounding div group is set to L, T , W & H % values, the L & T will scale down but the W & H will not - the graphic will just stay the same size when the browser is shrunk. The only way to get the graphic to scale down is to change its L, T , W & H to % - but, as I've said it won't retain its aspect ratio.
    As soon as images are imported, the situation changes. The layout preset offers 4 more options including 'Scale background image'. And Background image settings now appear offering W 100%, H Auto by default. These both seem essential to achieving scale-to-fit. I've tried images with and without being wrapped in a div. Just as with graphics, I find that if I add the % to the div then the image doesn't scale. But if I add the % to the image it scales perfectly.
    As far as I can see the problem is that, with graphics, the link width and height feature doesn't seem to work properly. I would expect that if I create a graphic 100px square then change W & H to %, then both W & H would be the same %. But I get all sorts of results. It doesn't seem to make a difference if I fix the percentages so W & H are both 100%. Changing from Global to Applied doesn't seem to affect anything either. Surely if W & H are set to 100% (and linked) then a graphic should remain square regardless of browser size? I can't find any combination that will allow this. Is it just me? Am I doing something stupid?
    Good luck tonight.
    Cheers

  • Border around "scale-to-fit" image is not "tight" around image

    I have a form with repeating pages that displays an image (jpg file) on each page. Each image is a different size so I need to use the scale-to-fit feature so the images appear in a predetermined location.
    One of the requirements given to me is that I need to place a border around the image. Unfortunately, the border appears around the predetermined location and not the image itself. In other words, if the image I insert doesn't fit exactly into the space provided, white space appears between the border and the scaled image.
    Is there another way?

    Scale-to-fit uses the scale of the image and the space to change the size of the image in the best possible way, it does not force the image to fit exactly in the space if the space is out of scale with the image. So if you have a 10x1 image and try to "scale-to-fit" it into a 10x10 space there will be a lot of whitespace.
    Alternatives would be to use "stretch-to-fit" which will force the image to fit in the size you define, but the image may become distorted. The other option is to use "use-image-size" which will change the size of field to fit the image pefectly.
    H.

  • PDF scale to fit

    Hi,
    i was wondering if there is an option in Indesign CS2, to set the page scaling of an exported PDF document to scale to fit the window.
    so when you open a exported pdf, that it automatically resizes to fit.
    thx for your help!
    greetz

    >ID allows you to set just a few PDF settings: those you already can see in the PDF export box, there are no "hidden" ones.
    There is a response in a thread in the mac forum that may have some bearing on this. But I think that it relies on a feature of "variables" which is new in IDCS3 (not sure about that).
    Gerald Singelmann, "Write filename somewhere in a PDF when exporting from InDesign?" #5, 9 Apr 2008 12:30 am
    Al

  • How do I Configure Desktop Printer to scale to fit?

    I love the feature of drag and drop printing and I often need to print many pdfs. However when I drag pdfs to the desktop printer icon it prints them on letter sized paper without scaling them to fit. I have configured the printer in the setup utility to print on tabloid but it still prints on letter with no scaling. How can I configure the desktop printer to scale to fit and select paper size? booya

    Hi Daniel, and a warm welcome to the forums!
    Doesn't your printer have a setting for the default size in it rather than just on the Mac?
    What size are these in the first place?
    I think the secret is to save the Tabloid size as a Default, but I don't have a Tabloid to test with, so I used Preview, (which you may end up having to use to drop on or Script to, dunno yet).
    I made a new Page size of Tabloid...
    Then saved as default...
    You'll have to test this... not even sure it works to Scale to Size, but at least you could drop them on Preview then +p to see.

  • Report generation doesn't scale to fit

    The layout option, "Scale front panel to fit" in "Easy Print VI Panel or Documentation.vi" (in the report generation pallette) doesn't do anything.  In fact, if I dig into that vi, it goes through to "Report Gen VI or Documentation.vi", and I find that the  layout option isn't wired to anything!  Is this a known problem with that vi?
    My application requires that I print the front panel as part of a user log, and I need to be able to scale to fit in order to squeeze it onto the page.  Any suggestions?
    Thanks,
    Charlie

    Hi Charlie,
    The layout option is not wired to anything in the Standard, HTML, Excel and Word Report, but it is used in the Quick Print default case.  The Help document for this VI mentions that the layout option is ignored on Standard and HTML Reports but does not mention the Excel or Word Reports.
    This was discovered a little while ago in this discussion forum.  And a report has be filed to R&D by Ben.
    Justin Parker
    National Instruments
    Product Support Engineer

  • How can I print a full frame photo from iPhoto 11?  Even though I click on scale to fit paper size, it crops both ends of the photo in landscape set up.  I have an Epson R1800 with the latest drivers.

    How can I print a full frame photo from iPhoto 11?  Even though I click on scale to fit paper size, it crops both ends of the photo in landscape set up.  I have an Epson R1800 with the latest drivers. (I'm also 3 days new to iMac and iPhoto 11 from an eMac and iPhoto 6.)

    " Hello Jeff. Here at Oki Data, we do not support programming.  I would recommend contacting Adobe for further assistance. You can also browse their website at http://www.adobe.com/products/postscript/.

Maybe you are looking for

  • Itunes 11.1.1.11 freezes when I try to sync 4s and ipad Windows 8

    I have recently update all my devices to os7 and now every time i connect any device (I phone 4s or Ipad 3rd gen) to my computer and try to change any setting itunes freezes and I have to force a shut down. Itunes acts normal until I connect a device

  • Facebook for palm

    I have downloaded the facebook for palm on my palm pre plus with verizon wireless. Is there any way I can have the app notify me when someone posts?

  • Watch out for Internet Explorer 8

    Microsoft is sending IE8 as an automatic update Worked fine on my computer, something went bad on my wife's computer and after the update, IE8 would "flash" and disappear I wound up having to download the whole thing on my computer and transferring t

  • Taglib tag doesn't work with web.xml 2.4 ?

    That is, I switched to the 2.4 version of web.xml and now none of the taglib elements I have in there work. I get the following excpetion org.apache.jasper.JasperException: File "/tags/struts-html" not found org.apache.jasper.compiler.DefaultErrorHan

  • Function like decode ??

    How write a function similar to decode which takes variables arguments? My need is I need to get a concatanated string seperated by a separator indepedent of how many arguments I pass in to a function. How can I do that? Any help/pointers is highly a