Scale to fit in PRINT DIALOG

Is there a way to scale to fit in the print dialog? Does anyone know where this is and how to save these? The settings seem to be splayed across Numbers, Layout and Paper Handling Tabs and I really wish they had put this together in a more straightforward way.
This dialog drives me nuts when I have two printers and a jillion pieces of software that I am printing out of.
Is there a way to scale a numbers spreadsheet to FIT onto 8 x 11 or 8 x 14 or 11 x 17 inch paper? I often need to print the SAME DOCUMENT out on different paper sizes and I can't seem to find a scale to fit in the print dialog that works.
I am using an HP 8500 and a HP 1700.
Thanks.

Hello
If you don't want to apply the trials scheme every time, you may use these scripts.
The first one allows you to grab the exact scale value which you defined one by the trials scheme.
--{code}
--[SCRIPT get_Scale_value]
Here the code is in it's extended shape to show the way I got the infos allowing me to build it
Yvan KOENIG (VALLAURIS, France)
2011/10/20
property workInProgress : false
true = activate the instructions grabbing informative infos
false = drop the instructions grabbing informative infos
on run
          local the_window, previewIsActive, currentValue
          tell application "Numbers" to activate
          tell application "System Events" to tell application process "Numbers"
                    set the_window to name of first window whose subrole is "AXStandardWindow"
                    tell window the_window
                              if workInProgress then class of every UI element
{button, button, button, splitter group, pop up button, pop up button, static text, color well, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, menu button, button, button, menu button, pop up button, image, static text, tool bar, button, image, static text, grow area}
                              tell first splitter group
                                        if workInProgress then class of every UI element
  --> {splitter group, splitter, splitter group}
                                        if workInProgress then class of every UI element of first splitter group
  --> {scroll area, splitter, scroll area, scroll area} not for us !
                                        if workInProgress then class of every UI element of last splitter group
  --> {splitter group, splitter, scroll area} It's ours !
                                        tell last splitter group
                                                  if workInProgress then class of every UI element
  --> {splitter group, splitter, scroll area}
                                                  tell first splitter group
                                                            if workInProgress then class of every UI element
  --> {scroll area, scroll area}
                                                            if workInProgress then class of every UI element of first scroll area
  --> {text area, scroll bar}
  class of every UI element of last scroll area
--> {UI element, scroll bar, scroll bar, UI element, UI element, pop up button, button} it's ours but don't show Preview
or
--> {UI element, scroll bar, scroll bar, UI element, UI element, pop up button, button, slider, group} it's ours showing Preview
                                                            set previewIsActive to result contains slider
                                                  end tell -- first splitter group
                                        end tell -- last splitter group
                              end tell -- first splitter group
                    end tell -- Window
If needed, trigger "Show Preview before Print" *)
                    if not previewIsActive then
                              tell menu bar 1 to tell menu bar item 9 to tell menu 1 to click menu item 1
                    end if
                    tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group to tell last scroll area
                              repeat
                                        if (get class of every UI element) contains slider then exit repeat
                              end repeat
                              set currentValue to get value of first slider
  --> 0.456789
                    end tell
          end tell -- System Events
  set the clipboard to currentValue as text
  activate
          if my parleAnglais() then
                    display dialog "The scale value : " & currentValue & " is in the clipboard."
          else
                    display dialog "L’échelle : " & currentValue & " est dans le presse-papiers."
          end if
end run
--=====
on parleAnglais()
          local z
          try
                    tell application "Numbers" to set z to localized string "Cancel"
          on error
                    set z to "Cancel"
          end try
          return (z is not "Annuler")
end parleAnglais
--=====
--[/SCRIPT]
--{code}
Store this scale value in a safe area to be able to reuse it.
The next time you will want to reuse the same setting, run the second script and type the scale value.
The script will apply this exact value to the document.
--{code}
--[SCRIPT set_Scale_value]
Yvan KOENIG (VALLAURIS, France)
2011/10/20
if my parleAnglais() then
          set maybe to display dialog "Type the scale to apply" default answer (0.456789 as text)
else
          set maybe to display dialog "Saisir l’échelle à appliquer" default answer (0.456789 as text)
end if
set the_scale to (text returned of maybe) as number
tell application "Numbers" to activate
tell application "System Events" to tell application process "Numbers"
          set the_window to name of first window whose subrole is "AXStandardWindow"
          tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group
                    set previewActive to class of every UI element of last scroll area contains slider
          end tell -- Window
          if not previewActive then
                    tell menu bar 1 to tell menu bar item 9 to tell menu 1 to click menu item 1 --Show Preview before Print
          end if
          tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group to tell last scroll area
                    set value of first slider to the_scale
          end tell
end tell -- System Events
--=====
on parleAnglais()
          local z
          try
                    tell application "Numbers" to set z to localized string "Cancel"
          on error
                    set z to "Cancel"
          end try
          return (z is not "Annuler")
end parleAnglais
--=====
--[/SCRIPT]
Yvan KOENIG (VALLAURIS, France) jeudi 20 octobre 2011 12:44:27
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community

Similar Messages

  • How to default Preview/Finder to print "Scale to Fit Print Entire image/Fill Entire Paper"?

    Hello all,
    I have to print PDFs. Preview or printing directly from Finder prints scaling 100% and many many times the edges of the PDFs are left outside of the printing area. I have the correct paper size selected (A4) and actually the PDFs are also A4 but for some reason 100% zooms in a bit and cuts the sides of the print outside.
    I can of course fix this by selecting Scale to Fit and Print Entire Image but I do have to do this every single time I open a PDF. I want to make this option my default! And preferrably so that I can use CMD+P from Finder to print directly without having to open the PDF. I already know what is in it...
    I have tried different Terminal tricks I have found searching the web but no luck, this and others with Preview closed before executing the command
    defaults delete com.apple.Preview PVImagePrintingScaleMode
    Please help and make my life easier. Cannot be this hard.

    I got a work around for this. Instead of using RTF template, I used Microsoft Excel itself as template and did the formatting in excel.
    thanks,
    Vijay

  • "Scale to fit paper size" ......doesn't

    It's often convenient to scale a web page down to fit the entire page on letter size.
    This is doable with the Scale field in the print dialog box.
    On the other hand, I can't get Paper Handling>"Scale to fit paper size" to work in Safari.
    It works in Pages, TextEdit, Preview, and Word.
    Why not Safari?
    I've found posts on the Internet making the same observation, but no answers.

    Suggest you post this on the Microsoft Mac forums since it's their software you're having trouble with:
    http://answers.microsoft.com/en-us/mac

  • Newbie:  In printing dialog, "Scale to" size options are greyed out

    I am in the initial stages of figuring out how to use Aperture (v1.5). I am currently trying to make a 5x7 print of a photo.
    In the print dialog, "Scale to" 4x6, 5x7, 8x10 size options are greyed out (only "fit image" and "fill entire page" are available).
    I've tried searching through the forums, but to no avail...
    Thanks!

    Click the Arrange button on the toolbar and select the desired option.

  • 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/.

  • Set "Scale To Fit Media" as default in Photoshop CS6 print settings on OSX

    Quite frequently my boss will email 10 to 30 images to me to print from his camera. Is there a way to setup Photoshop CS6 print settings so that "Scale To Fit Media" is the default. I tried to create an action and then through Bridge select a folder and Batch send the files to Open-Print-Close. Since images are never received 8.5"x11" it would be convenient to have this as a default. Since the print settings revert, or aren't defaulting to "settings last used", my batch attempt was unsuccessful. I know I could edit my action to adjust image size to page dimensions, but thought a way to edit the Print settings default must be out there somewhere. (Using MacBook Pro OSX 10.8.4) Any Suggestions?

    Unfortunately "Scale to Fit Media" isn't a toggle. But let's try a workaround.
    You can create an Image Size action where you will scale the picture to either 8.5 inches wide or 11 inches high, whichever works best for you. First be sure "resampling" is turned off under Image > Image Size.
    You would open an iimage, then create an new action, title it "Letter 11 inches" and that's when the recording starts.
    Enter 11 inches as the Height, click OK and then stop recording.
    This is a quick and dirty action and assumes all pictures are portrait and not landscape. It may just work for you.
    You should be able to include it in your batch processing.
    Gene

  • Force the "Fit To Printable Area" Option in Adobe Acrobat [Reader] Print Dialog

    Hi,
    I was wondering if there is a way to force Adobe Arcobat Reader to  always use the "Fit To Printable Area" Option in the print dialog?
    If this is possible, how can I achieve it?
    Thanks...

    If you only have Reader (that is different from Acrobat, the full product), then your only options would be under the preferences in Reader. If they are not there, then the answer is no. To really get a better idea, ask in the Reader forum. If you have Acrobat, then provide the version to get more specific help.

  • Printing Keynote presentation-scale to fit

    is there a way to print a keynote presentation to scale to fit different paper sizes? E.g. I have a 800 x 600 presentation and I want it to print to the maximum size on a tabloid page (same for 1024x720, 1920 x 1080, custom, etc). Ideally this would be handled directly out of keynote, but changing the percentage of output under page setup has NO effect...this seems so basic, there's got to be something simple I am missing.. can anyone help?
    btw: exporting to pdf only to then print seems like an extra step and creates a duplicate file I would rather not have to keep up to date with changes...
    anyone?

    Hi
    I am having the same problem but with larger poster size slides. I have ended up making PDFs from Keynote.

  • 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.

  • Print dialog box code with scale to paper size option

    Can anyone tell about the java code that can be used to generate a print dialog box with "Scale to paper size" option.

    manual wrote:
    The path given does not match my installation (i.e. no "Xtras" folder).
    The 'Xtras' folder has nothing to do with Adobe Reader (nor Acrobat); that is part of Shockwave Player.

  • 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

  • Preview 'scale to fit paper size' not working for PDFs

    If I have a pdf document that is larger than A4, Preview's 'scale to fit paper size' does not seem to do anything. Even the actual preview of the pages in the print dialog doesn't change when toggling the 'scale to fit' option.
    Strangely, my pdf e-invoice from the Apple Store for my new MacBook Pro was larger than standard A4 size, and I couldn't get Preview to scale it.
    This isn't a printer issue, as I have the same problem on 2 completely different printers. Also, Adobe Reader has no problem scaling the pdf. I even generated a pdf from Inkscape that was larger than A4, and Preview couldn't scale it to fit on A4, but Adobe Reader could.
    Can anyone else replicate this problem?

    I have found the answer to my problem. For some reason, the print dialog box I see through 'File>Print' is different to the print dialog when I click the Print icon on the toolbar (which I added to Preview's toolbar and was using whenever I wanted to print).
    The dialog you get when clicking the Print icon is missing the 'Preview' option in the drop-down menu, which is where the 'Scale each page to fit paper' is.
    It seems crazy to me that using Print icon on the toolbar has this option missing. But at least it's working now!

  • Acrobat XPro, new printing dialog box

    In December Adobe XPro said there was an update. We loaded this update and noticed that the print dialog box had changed dramatically.  Also the "none" feature is no longer listed under the icons.  Just fit, actual size etc.  We used to just select our plotter and the preview would switch to 35.99 x 24 but now it stays at 10x8. We print 24x36 and need them to scale. What happened and how do I correct this?

    Dear user,
    In our latest update 10.1.2, we have revamped our print dialog towards more simpler and comprehensive UI and that's why you are noticing change in the dialog.
    In case you are searching for 'None' option, it is now called 'Actual size' in new layout. Also, setting 'Shrink' as your page handing option will automatically scale your document to your page size.
    Hope this will solve your problem.
    Thanks!

  • Adobe PS CS3 has major flaws in Print Dialog. Beware!

    System Specs:
    OSX Leopard 10.5.2
    MacPro 3.2ghz with 32GB of ram 1.5GB Video
    Epson 11880 Printer
    Samsung XL20 LED monitors calibrated using EyeOne Pro 6500k 2.2 and 120c/d
    I have been trying to build a custom profile for my new Epson 11880. However, my results have been unsuccessful. All my prints came out super dark. The color is all off except for the grey scale.
    After talking to Epson for hours I found out that the new Beta driver for the printers have a problem, so rolled back to v3.89. This fixed all printer problems. So printer is fine now. This also applies to the Epson 3800.
    Spoke to Apple about their color management and Leopard issues? No fault found on the OS.
    Ran a test using preview, iPhoto, EyeOneMatch, Photoshop CS, and CS3. I couldn't find my CS2 disk so I didn't get a chance to test that. preview, iPhoto, CS, and EyeOneMatch all came out with same results when printing a 9.18 target without PCM. However, CS3 printed the image dark and off color with the exact same settings. Problem has been persistent and I would like to conclude that CS3 needs to fix this bug in their software. It is ridiculous to be printing using another software because CS3 can't do a simple task as print.

    viewing conditions are fine.
    I have the whole room outfitted with GTI D50 lights. What can I say I am anal. No matter where you stand the light will hit 5000k. I change the bulbs out every 1500 hours although they tell me I can wait until 2000 hours.
    My monitor is also calibrated properly. I am using the Samsung XL20 and XL30 monitors, which surpass the Eizo or any other LCD's on the market. I've owned the Eizo, NEC, Artisan, and any other monitors you can name. I also made sure my Spectrometer is fine and it is.
    When printing targets with the setting set to NO Color Management in Photoshop it should yield the same results as the other applications. The only thing you are technically utilizing then is the printer driver and dialog box. Yes the printer dialog is always same and set properly also. PCM is set to no color management. I've tested this with other applications and it is CS3 that is giving me all the problems.

  • 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

Maybe you are looking for

  • IPhoto 5 library won't open - 'unreleased version'

    Can anyone help ? I get a strange message - 'Please quit and upgrade this library by opening it in iPhoto 2 or iPhoto 4. this library was created with an unreleased version of iPhoto ' which is odd as I have been on iphoto 5 since I can remember - cl

  • Itunes files missing

    My itunes has worked fine for several months now, since xmas infact. untill the other day it decided to not work. whilst trying to start i tunes the following message appears "itunes cannot run because some of its required files are missing. please r

  • How to create two UILoader that can be nested with each other and save the parent UILoader - as3

    Hi all, I am currently researching on the problem but I can't find any solution in the web. Here is my problem: I have two UILoader instance (loader_inner and loader_outer) I need to have loader_inner to be part of the loader_outer. I have also a but

  • Curiosity: How to use a table for input when testing a functionmodule?

    actually I am sick of writing test programs for every function I want to test using ABAP. So why it is (made) impossible to generate input data for a table as input parameter of a functionmodule? Has really nobody ever tested this stuff when the test

  • Photo Not Centered

    i am creating a simple photo gallery using ActionScript 2's CreateMoveClipLoader. I have a MovieClip instance named myPics_mc which is centered on the stage. the Stage, Moviclip and picture all have the same dimensions. When the mvie is run or publis