How to scale to fit browser zoom setting...

So I've created my first SWF using Flash Catalyst; seems to work great.
But I would like for it to zoom with the browser's zoom setting.
When I view the SWF with the viewer it lets me fit-to-screen, zoom-in, etc.  So seems like I'm just missing something in the HTML maybe?
I tried adding the param scale set to showall, or exactfit, but no go.
Any help is appreciated.
thanks,
-h

Try in [http://kb.mozillazine.org/About:config about:config]
and change [http://kb.mozillazine.org/Zoom.maxPercent zoom.maxPercent]
type in the address bar '''about:config'''
then press the button '''i'll be careful i promise'''
then type in the bar '''zoom.maxPercent'''
then '''right-click''' on it, select''' modify''', type a value greater than the current(i can't tell specific because i don't known how zoom you want), click '''OK,'''
exit firefox and restart-it.
see also: [http://kb.mozillazine.org/Zoom.minPercent Zoom.minPercent]
thank you
Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Similar Messages

  • 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

  • How to Scale to Fit automatically?

    Hi,
    I'd like Safari to Scale to Fit automatically every time I open or go to another web page so that I don't have to click the "+" button. Is there a way to do this?
    Thanks
    Leonardo
    Macbook 2.16GHz 2GB   Mac OS X (10.4.10)   MB062LL/A

    Hello Leonardo ...
    First of all, welcome to the Apple discussions.
    Not by knowledge an I never heard about. But what you can do is adding a little script to the Safari Menu bar.
    Open the web site an scroll down, Scriptable Pllciactions - Safari
    Let me know if so ...
    Good luck ...
    Dimaxum <]:~))

  • Can't Flex apps scale to fit browser window?

    This has been brought up a couple of times, but seems to be a
    mystery: How does one scale all content to fit the browser window,
    preserving aspect ratio, and centering the content vertically or
    horizontally (depending on whether the window aspect ratio is less
    than or greater than the content aspect ratio)?
    Since Flash is vector-based, I would have thought this would
    be straightforward and encouraged!
    Some information in an earlier post, plus experimentation on
    my part, has yielded a bizarre and inflexible partial solution -
    using StageScaleMode, and sizing the app's base container to
    exactly 500x375 pixels, I can get content that scales with
    the window size and doesn't have mismatched margins (though I
    haven't figured out how to center it yet). In addition, there are
    ugly scaling artifacts (look at the drop-shadows as you change the
    browser window size).
    Again, not being a Flash programmer, I baffled that this
    isn't better supported, but I have to admit, most of the Flash apps
    I've seen in the wild seem to all be fixed at some ridiculous size
    like 640x480 or something. Are there some serious bugs here, or am
    I missing something? Is there a better approach?
    Here's a simple, complete, example (based on an example from
    an earlier thread, but simplified a good bit):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx='
    http://www.adobe.com/2006/mxml'
    pageTitle="Resize Test"
    layout="absolute" autoLayout="false"
    addedToStage="event.currentTarget.stage.scaleMode =
    StageScaleMode.SHOW_ALL"
    >
    <mx:Style>
    VBox {
    cornerRadius: 4;
    borderStyle: solid; border-color: #000000; borderSize: 1;
    horizontalAlign: center; verticalAlign: middle;
    dropShadowEnabled: true;
    </mx:Style>
    <mx:VBox width="500" height="375"
    backgroundColor="#808080"
    paddingTop="20" paddingBottom="20" paddingLeft="20"
    paddingRight="20">
    <mx:VBox width="100%" height="100%"
    backgroundColor="#808000">
    <mx:Label text="This is some text" fontSize="12"
    width="128" textAlign="center"/>
    <mx:Button label="Button"/>
    </mx:VBox>
    </mx:VBox>
    </mx:Application>

    quote:
    Originally posted by:
    jpwrunyan
    Not bitmaps. Externally loaded images that get converted to
    bitmaps. What I said is that 90%+ are online catalogues. Logically
    it would be safe to assume they display external images of a set
    size. Sorry that was unclear. It would interesting to see an
    official survey.
    Yeah, I was using "bitmap" to mean raster graphics, whether
    the actual source be jpg, png or what have you.
    quote:
    Originally posted by:
    jpwrunyan
    And good luck getting anyone from Adobe to pay attention to
    this forum let alone comment. Better to contact their support if
    you're ever really stuck.
    Another reason I'm thinking MS is going to win this war - my
    colleague is having great luck in the WPF forums.
    quote:
    Originally posted by:
    jpwrunyan
    Another reason I thought of why resizing does not result in
    rescaling by default:
    HTML and JSP applications don't rescale when you change the
    browser size. Just go to hotmail or msn and check. They reposition.
    Flex applications are intended to behave the same way but with RIA
    capabilities. That is probably the more likely explanation than
    bitmaps merely not scaling well. Anyway, this behaviour was a
    thought-out decision and I happen to agree with it. By the way,
    older Flash applications
    do rescale to fit the window by default.
    Exactly! That's the big problem, in my view, with the
    HTML/JPG based web, and is what a vector-based solution
    (discounting raster graphics) should solve.
    Firefox, and now IE7, have features to allow you to scale web
    pages to overcome, in a stop-gap way, this problem. IE even scales
    images and Flash apps, though some Flash suffers problems when
    scaled. Firefox does not (yet?) scale images or Flash along with
    the other content. Flash-based Elmo games at sesamestree.org, at
    640x480, look pretty stupid on my 42" 1920x1080 LCD (played by my
    3-year old, not me!), but at least I can now (try) to scale them up
    with IE7 for him.
    I do not believe this was a thought-out decision, it's just
    inertia from the bad old ways of doing things. There should be a
    working option to easily scale content to the browser window, and
    if Flex doesn't provide one, Microsoft certainly is going to (with
    WPF/E) as they have with WPF. I'm not a big MS fan, but I think
    they get the way things are going with the proliferation in the
    range of screen resolutions and sizes that web content is being
    displayed on.
    That said, I realize there is more to dealing with different
    screen sizes than just scaling - you may have to change the amount
    of content on the screen, dependent on what the subject is.
    quote:
    Originally posted by:
    jpwrunyan
    Now if you want the Flash Player to be able to import huge
    .jpg files with 1000px+ resolution and selectively only load enough
    information to make a smaller size bitmap image so you can rescale
    with impunity, more power to you. Sounds great. I would love this.
    But it still doesn't address what should happen when the image goes
    beyond the original size. I know you're only using vector graphics
    so it's not an issue for you.
    Yep, raster graphics are troublesome. Worst case, a beautiful
    picture frame grows to surround the image as one zooms beyond its
    original size (insert smiley icon of choice here)
    quote:
    Originally posted by:
    jpwrunyan
    Finally to get back on the main topic:
    if SWFLoader isn't working well, you could programatically do
    the same thing. Have a sub-contaier inside the application
    container which adjusts its scale accordingly to the size of the
    parent application container. I have done this myself with the
    Image class for zooming in and out from images (ironically 1000px+
    images which were displayed at much smaller sizes).
    <Application resize="adjustSize()"
    creationComplete="adjustSize()" paddingLeft="0" paddingRight="0"
    paddingTop="0" paddingBottom="0">
    <Script>
    private function adjustSize():void {
    var newScaleX = this.width/content.width
    var newScaleY = this.height/content.height
    content.scaleX = newScaleX;
    content.scaleY = newScaleY;
    </Script>
    <Box id="content" borderStyle="none" width=400 height=300
    /> <!-- the width and height are arbitrary -->
    </Application>
    Something along the lines of the above should definitely
    work. I am just basing it off my own previous code. You may have to
    be careful of borders and padding if you decide to add them.
    Whether it works better than the other suggestions you'll have to
    decide.
    Thanks for the code, and I'll try it. I'm new to Flex, and so
    I'm still struggling with some things (such as when objects are
    available for manipulation).

  • Is there a way for rollover hotspots to adjust on an image that scales to fit browser?

    Hi,
    This is my website currently: paddyohara.co.uk
    The main rollover image on my homepage is currently a fixed size, but when I set the image to expand to fit the browser, the rollover hotspots moved out of position on large screen resolutions. Is there any way to get the rollover hotspots to size up relative to the image sizing up?
    I hope this makes sense, any help much appreciated
    Paddy

    You could try something like this (I have not because I so rarely use hotspots) -
    http://stackoverflow.com/questions/19671168/how-to-adjust-the-top-left-width-height-based- on-the-ratio-of-the-resized-image

  • How to increase Firefox default page zoom setting?

    Changed my computer's default DNS server from Comcast to OpenDNS.
    A side effect, webpages appear in Firefox as if I had reduced them via the Ctrl minus keys. To get back to a comfortable appearance I now have to hit Ctrl plus keys.
    Anybody know how to set Firefox default page zoom to a larger setting? Thank You.

    Try in [http://kb.mozillazine.org/About:config about:config]
    and change [http://kb.mozillazine.org/Zoom.maxPercent zoom.maxPercent]
    type in the address bar '''about:config'''
    then press the button '''i'll be careful i promise'''
    then type in the bar '''zoom.maxPercent'''
    then '''right-click''' on it, select''' modify''', type a value greater than the current(i can't tell specific because i don't known how zoom you want), click '''OK,'''
    exit firefox and restart-it.
    see also: [http://kb.mozillazine.org/Zoom.minPercent Zoom.minPercent]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Zoom setting

    How do I lock in yhe zoom setting in Safari

    Please Check the registry Settings :
    You may need to create manual registry keys and change their values Accordingly ...
    Please See the below link :
    http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/index.html
    The above link gives all the information ....Let me know if you have any confusion ...

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

  • Scale website to fit browser width

    Hi I'm new to Muse.
    There is something i have been trying to do, but can't make it work.
    I know about the possibility of full screen and 100% width slideshows. But that is not exactly it.
    What I can't figure out is how to make a website that fits and scales with the browser width (scalable). Is that possible in Muse?
    Something like this. I have found this as a reference, perhaps it can help explain what I mean.
    http://2xelliott.co.uk/

    What you are looking for is called 'Responsive' Design. This is not currently an option in Muse however you can easily create tablet and phone versions of your site.

  • 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

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

  • How to change Scale to Scale to fit as default in Preview?

    I would like to have Preview set to 'scale to fit' (which it always used to be up through 10.7) rather than 'scale' as it is in Mavericks. This must be possible using terminal but I have no idea how to find the appropriate command line for such an operation.
    Hope someone can help. Thanks in advance

    If you have to increase the size of multiple clips, and each has a different attribute setting as it is..the only way to do this is manually...clip by clip.  There is no easy button.
    No one said editing was easy.  If they did...they lied.

  • I can not get real audio player to record videos from the internet, I believe the problem is that my Firefox browser is set for 64 bi... i need to change it to 32 and do not know how.

    I can not get real audio player to record videos from the internet i use firefox as my browser on windows 7, I believe the problem is that my Firefox browser is set for 64 bi... i need to change it to 32 and do not know how.

    dont know what to do

  • How do scale my picture to fit on the wallpaper

    Does anyone know how to scale pictures with new ios?

    Sounds like you have probably zoomed it accidentally. Press command-option-8 to turn it off.

  • How can I save zoom setting for a DOCUMENT so it opens at that setting?

    I find an optimal zoom setting for a document I'd like to use (say 42%) and want the document to open at that setting.  I save the document with File>Save Copy.  However when I open the document, it opens at the DEFAULT zoom setting set in the Preferences for program.  If I change the zoom level here to what I desire for that document, obviously all documents will open at that default setting.
    How can I save my desired zoom level for a document, which will most likely be different for EACH document, and have the saved document open at that setting?
    This seems like a trivial exercise / feature that should be easy to implement BOTH by the programmers of the software and the user setting the zoom level.
    Also, I want to suppress the bookmarks sidebar.  I save without the bookmarks but the documents opens with the side bar.  Can't THIS be set for each document?
    Why is it so difficult to tailor the viewing of a document to exactly what the viewer wants?

    OK.  Sorry for the mistake in posting the question here.
    Again it seems like it should be trivial to save a document in the Reader with a viewer's desired zoom setting.  I find this very helpful as I like to use a zoom setting that when scrolling down the document only one full page of the document is viewed (like turning the pages of a book).  Without this feature, partial pages are displayed when scrolling unless one experiments to find the correct zoom setting (often it is 60%).  One must do this every time one opens the same document, unless one remembers the zoom setting.
    Oh well ....

Maybe you are looking for

  • What do I need to do so I can send and save my photos ?  Do I need a specific jpeg app?

    What do I need to send and save my photos in adobe photo touch?  Do I need a specific jpeg app?

  • Resue of Custom Controller to another webdynpro component

    Hello, I would like to use all the methods and context of one custom controller residing in one webdynpro component from another view residing in another webdynpro component. Could you please give me an idea asto how this can be achieved? For this I

  • Change viewer/canvas background color?

    When I have a HD clip in the canvas window I get the letterbox look. The bars are currently grey which I assume is default. Is there anyway to change the canvas background color to black?

  • 3rd party webshop for R/3?

    Hi Consultants, I am trying to find an answer for my question and I think this is the right spot to ask. Currently SAP is offering two different e-commerce solutions: - R/3 Internet Sales (R/3-ISA) - E-commerce for CRM (CRM-ISA) My question is quite

  • CRM MDM Integration

    Hi SDNers,                     We have  to integrate SAP CRM (Ver 5.0 )  and SAP MDM ( MDM 5.5 SP 06). Any idea , suggestion or work around for this integration?? Thanks & Regards, Shreya Landge.