Image to fit any width

Hi,
I'm putting a flash site together with a stage size of 800 x 600px but I have a background image that I want to use in the same Flash file, the size = 1350x800px  (jpg) that I want to stretch/compress to whatever screen resolution the viewer has. So I need 100% width & height, I've gone through the forums but can't figure this out.
I'm on Flash 8, Win 7 and Dreamweaver 8.
Thanks in advance.

Sorry, I forgot to insert this link:   http://www.maris-interiors.co.uk/   This what I'm trying to achieve, (the background image).

Similar Messages

  • Getting an image to fit across width of browser

    Hi
    Im trying to get an image to fit across width of browser - I thought i could do it as you would a shape ie size image until red line appears both sides so it will fill automactially as same as a shape. However when I do this it just isnt working - it doesnt stretch across width of browser.
    I do realise that I can use BROWSER FILL - however as i already have an image for footer i've used this function which works well. Ive also tried combining the image and my footer as one large image using browser fill - however this doesnt work as when the image is scaled up on a large monitor it puts everything out, as it is just treating it as one large background image.
    So my question is - is there anyway I can get an image thats placed to fill browser width without using browser fill?
    Many thanks in advance
    Paul

    Hi,
    It works, but when I try this, my image is cut in the length (cutting is different, it depends on witch screen you look).
    He don't scroll in image.
    Specifications image
    Fill (image): filling
    Site properties:
    Scrollbars browser: always (vertical, horizontal)
    Anybody an idea?
    Thanks!

  • Resize image to fit any browser?

    How do I set my image to re-size to automatically fit any
    browser window?
    I know it's a simple thing like pinning the image to a layer
    that's size is set to % - am i right, please help!

    Nahh - it won't be reliable, from what I understand. And, not
    only will it
    fail unpredictably, but your image will be subjected to the
    horrible pixel
    doubling trick of browsers as it resizes....
    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
    ==================
    "*mista*" <[email protected]> wrote in
    message
    news:eki2ic$6mr$[email protected]..
    >>>How do I set my image to re-size to automatically
    fit any browser window?
    > I am not too sure about this but if you define the
    container holding the
    > image
    > as width="100%" and then within the image tag define
    <img src=".."
    > width="100%" height="100%" >, that should stretch the
    container and the
    > image
    > to the size based on the browser window. I can't say
    much about how this
    > will
    > impact the resolution of the image.
    > And like Shane said, what would you want to achieve by
    this.
    > Maybe someone more experienced can give better
    suggestions
    >

  • How do i make a still image (photo) fit the length of the music? I record music and want to put the tracks to a video file with a still image of my business logo in the background. Any help?

    How do I make a still image (photo) fit the length of the music? I record music and want to convert the tracks to a video file with a still image of my business logo in the background. On windows movie maker you could just select "fit to music" but this program isnt as easy to figure out! Any help?

    Double-click on the still image in the project timeline to open the Inspector. In the Inspector, adjust the duration by typing in a new duration to match the length of your music. I think the limit for a still image is 10 minutes. If you need more than this, simply drag the image into the timeline again then adjust its duration. The two images will play seamlessly (no gap will be visible).
    See this iMovie Help topic:
    http://help.apple.com/imovie/#mov3a883915
    You can achieve more precision when entering durations by changing a preference in the menu item iMovie Preferences. Check (tick) the preference for Show Time As HH:MM:SS:frames. This will enable you to enter the duration of stills down to the frame level, rather than full seconds (NTSC is 30 frames per second; PAL is 25 fps). When entering times, type a colon between each time segment, such as 2:50:15, which represents 2 minutes 50 seconds and 15 frames. For 5 seconds 20 frames you would enter 5:20 and so forth.
    Note that the music will only run to the length of the video in the timeline (in your case, the still images). So, after increasing the stills duration you will need to drag the end of the music track as far as required. The stills can be dragged inwards to reduce the duration if necessary.
    John
    Message was edited by: John Cogdell - added Note

  • How to import many large graphic images to fit into column width?

    I have a 2-column layout and about 150 large graphic images which must be imported so that they fit exactly into the column width. These are bitmaps which have all the same dimensions. All of them will need a border (stroke). And they should be inline graphics because they belong to exact positions in the text flow.
    What would be the sensible approach to that (apart from scripting which I have not done yet)? I tried to define an object style which has the attribute "Fit content to frame", but this does not scale the image to the column size. How can I avoid to format 150 those images manually?

    It may be easier to change the ppi in photoshop so the image can be placed at the exact size.
    so if the image is 10 inches and the file is 300 ppi
    with resample image unchecked change the width to whatever you want it say 2 inches no the ppi will automatically change to 1500 ppi. Save. If you are creating a PDF make sure these images are not downsampled if you need the resolution.
    another way if all images are the same size would be to size one and place it where all the images go and relink to the other pics, when you relink it should retain the properties of the previous pic.

  • Resizing images in a div to fit browser width

    i have a page with rollovers in a DIV:
    http://toddheymandirector.com/REEL/index_newlook.html
    i want the the images, "nike the getaway", etc, to resize to fit the browser window width. i tried putting them in a div and adding
    row {
        max-width: 100%;
        height: auto;
        width: auto\9; /* ie8 */
    but it didnt work..
    ideas?
    thanks

    You could try something like the below. Basically it will show a maximum of 4 images per row (25%) so:
    if your image width is 300px, for the browser to view all 4 at 100% their window needs to be 1200px wide
    if their browser window is smaller than 1200px, the images will start to move onto new rows
    if the browser window is bigger than 1200px, it will scale the 4 up to fit the width.
    You can change the width of the images to match your optimal browser window and/or change the percentages to see the effect it has.
    Eg, if you remove the "min-width:25%;" from #gallery ul li it will not scale the images at all. If you change "min-width:25%;" to "width:25%;", it will always show 4 images in a row and scale up or down to fit the window.
    Best thing to do is play around until you're happy. Good luck.
    <!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=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    body{
        background-color:#666666;
        margin:0;
        padding:0;
    #container{
        width:100%;
        height:auto;
        margin:0;
        padding:0;
    #title{
        width:100%;
        float:left;
        color:#FFFFFF;
        font-family:Arial, Helvetica, sans-serif;
        font-size:140%;
        line-height:150%;
        margin-bottom:30px;
        text-align:center;
    #gallery{
        width:100%;
        height:auto;
        margin:0;
        padding:0;
        float:left;
    #gallery ul{
        width:100%;
        height:auto;
        margin:0;
        padding:0;
        float:left;
        background-color:#666666;
        list-style-type:none;
    #gallery ul li{
        min-width:25%;
        display:block;
        margin:0;
        padding:0;
        float:left;
        background-color:#666666;
    img{
        display:block;
        border:none;
        margin:0;
        padding:0;
        width:100%;
    </style>
    </head>
    <body>
    <div id="container">
    <div id="title">This is a floating web gallery</div>
    <div id="gallery">
    <ul>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    <li><img src="nike.png" /></li>
    </ul>
    </div>
    </div>
    </body>
    </html>

  • Hello, we are interested in more information on the Image Size Fit To option in phototshop.  For example, if we open a 46x25 inch 120 dpi image and choose Fit to 4x6" does all of the resolution remain?  Any links to tutorials in this area are appreciate

    Hello, we are interested in more information on the Image Size > Fit To option in phototshop.  For example, if we open a 46x25 inch 120 dpi image and choose Fit to 4x6" does all of the resolution remain?  Any links to tutorials in this area are appreciated.

    Let's look at the first thing: Aspect Ratio  46W x 25H does not fit 6W x 4H exactly. You get 6W x 3.621H If we preserve Landscape Orientation and Aspect Ratio. If I set H to 4, W will be 7.36 inches, clipping your picture.
    You'll have to decide on how to clip off that 1.36 inches so your picture can be 4 x 6 in order to solve that problem.
    Notice I set Resample off. Throwing out pixels is destructive editing. So what I am doing is "Scaling", changing the Print Size without touch the pixels. Notice how high the resolution goes up.
    To Resample or not will be your decision.  I hope I answered your questions properly. Let me know otherwise.
    Gene

  • How to make website fit any screen size?

    Hello all!                      
    I am trying to make my website fits any screen size (desktop, tablet, mobile)
    In Dreamweaver cs6, I go to file -multiscreen preview – Media Queries- make a CSS file for (site-wide) and click on the Default Presets and then find my CSS files for phone, tablet and desktop. But it does not work for my website, my site does not respond to the size of desktop, tablet or mobile. Can someone please help? Thank you.

    The main rule to follow for a responsive design is be flexible.
    That means no rigid dimensions, no absolute positioning and images that respond to the width of their containers.
    The following typically breaks the rule of flexibility
    #apDiv35 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 1;
    That is but one example from your document out of more than 40.
    If you want a leg up regarding responsive design, have a look at http://www.dmxzone.com/go/21759/dmxzone-bootstrap/

  • How do I adjust my background image to fit my browser

    I have a background image that it 1600 x 1200 and when I try to view in browser, almost half the image gets cut off. How do I adjust the size to fit my browser or even adjust it to fit any browser?

    1600 x 1200 is a huge image by web standards.  Images don't resize to fill viewport without workarounds (tricks).  And while Martin's solution works in some browsers, it's not bulletproof.  Downsides may outweigh advantages. 
    For best cross browser results (including older IE), establish a fixed page width of say 1000px to fit on average displays.  Center your page layout.
    Open your image in Photoshop or Fireworks and resize it  to 1000 x 750.   Your image won't fill the viewport but it will fit your page width.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I get a header image to span the width of the screen without getting distorted?

    I've just finished two online classes for Dreamweaver through Ed2go and have a reasonable idea of HTML and CSS. What I'm trying to do is a re-make of my personal web site (www.astral-imaging.com) that I display my astronomy images using all CSS layout and proper HTML coding. The existing site was done long ago using FrontPage and is loaded with tables and nested tables for layout. I need to make several templates for repeated pages but I'm lost on how to create my header banner. I've used Photoshop CS5 to create what I want to use and saved it as a .JPG file. The original canvas size is 1000x200 pixels but I also want the site to use a liquid template so that if the viewer is using a monitor at 1024 width or higher the page will fill the screen.
    My target audience is mostly people in astronomy groups that I participate with and their screen resolutions will most like be 1280 and up. The images posted are usually 1000, 2000, and 3000 pixels wide. The reason for this is that there is very faint and small detail in these images and the larger sizes allows the viewer to scroll around in the full sized images to see this detail. There are links so the viewer has a choice of how large an image they want to view. So this explains my rational behind the sizing and I'm left with how to make the header expand without distorting to various sized displays. Below is what I had designed. Am I asking for too much or just a bit too green to know what to do? Any suggestions would be extremely welcomed. The PSD file has the separate 4 layers. What I have though about is the header being multiple images:
    the actual background gradient image
    the DRO info floated left
    Glimpses of Our Universe centered
    image floated right
    Only issue is I'm not sure if this will work and if so what is the proper coding? I think there needs to be a div container and although I know how to create the div, inserting multiple items into it and using CSS to style them is confusing me. Is there a link to information on DIVs that would help explain this. From what I've seen from my Google searches I haven't seen anything that addresses this. Maybe I need better search terms.
    Thanks,
    Steve

    Nancy,
    I appreciate the feed back but this doesn't extend the banner across the page. I understand the header background color filling in the area to the right of the banner image as well as the background color of the body tag. I guess what I'm wondering is if it's possible to have multiple images in the header div tag? I may not even be explaining this correctly. If I were using a table to lay this out it would have 1 row and 3 columns with the gradient image as the background in all 3. I could keep the cell width set to a fixed number for the right and left cell while center cell would be able to span the remainder of the screen width to fill across the top of the page. The hight would adjust to maintain the aspect ratio. Does this make any sense?
    Basically the code below is what I'm after but using CSS to lay it out and not a table:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <style type="text/css">
    table {
    background-image: url(images/banner_background.png);
    text-align: left;
    body {
    background-color: #000;
    .center {
    text-align: center;
    background-image: url(images/banner_background.png);
    .right {
    background-image: url(images/banner_background.png);
    margin: 1px;
    padding: 0px;
    </style>
    </head>
    <body>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <th width="22%" scope="col"><img src="images/DRO_trans.png" width="325" height="200"></th>
        <th width="59%" class="center" scope="col"><img src="images/glimpses-astral.png" width="450" height="120"></th>
        <th width="19%" scope="col"><img src="images/Thor-3rd-300.jpg" width="300" height="198" alt="Thor's Helmet"></th>
      </tr>
      <tr>
        <td colspan="3"> </td>
      </tr>
    </table>
    </body>
    </html>
    If it's any help or you are curious, the png files can be downloaded here: http://www.astral-imaging.com/test_images.zip
    Thanks,
    Steve

  • Preview doesn't display images to fit window

    I'm running OSX 10.6.8 on a 27" iMac, and when I enlarge the Preview window to fit the screen (by dragging the corner), the images don't enlarge. They seem to be stuck at about 1920 pixels wide (at a guess) instead of 2560 wide. I can zoom in, but I want the images to exactly fit the window. Preferences > Scale large images to fit window doesn't work, neither does View > Zoom to fit (which is grayed).
    Any suggestions as to how I make images fit the window?

    Hi, Guy Burns,
    What is the resolution of the images you try to enlarge?
    My guess:
    If the resolution of your images is lower then 2560 wide (your screen resolution), the window will open with the exact size and resolution of the picture (for instance 1920 wide). i.e. One pixel on your screen equals one pixel of your picture.You can indeed enlarge the window and zoom in, but then you are enlarging pixels, the image will get less sharp.
    The "Scale large images to fit window" function, is meant for "large images" as the name implies, so images with a larger resolution then your screen resolution. With this function, you can reduce the size of images that would otherwise not fit entirely on your screen, to the necessary size to view the whole picture as big as possible. So this function does not work if the "scale" is 100% or more.
    In slideshow mode however, there's a function to automatically adapt the size of smaller images to "full screen", and also "quicklook" (spacebar) supports full screen mode.

  • Pdf file, How do I fit by width in landscap mode on iphone?

    In landscap mode, pdf file show full page and I have to zoom in everytime. I want to fit width when put in landscap. How to??

    Doesn't seem to be a setting for this in iBooks 3.1 (tested on both an iPad [3rd Gen] and iPhone 4S both w/iOS 6.1.3)
    However, a little experimentation reveals -- it depends on the PDF.
    If the PDF is text (I used 'PowerShell in Action' - a programming book) you can use the same method as Mobile Safari - Double tap in the text and that section expands to fit the width of the screen in landscape or portrait. Centered on where you tapped in the text.
    If the PDF is a single image - like a PDF comic book (I used a volume of 'Girl Genius'), it appears that the double tap to expand doesn't work. If the PDF is already full width, a double tap does appear to shrink it back to full page view.
    Unfortunately, this seems to be on a per page basis. When you flip to the next/previous page it goes back to full page view.
    Note: There are other PDF viewer apps/apps with PDF viewers built in that behave differently, more like you are looking for. Some are even free.
    Hopefully Apple will improve this in the next version.
    And, of course, the obligatory disclaimer -  YMMV with different PDFs, versions of iBooks, and iOS and this is just a random comment on the Internet. Not warrantee expressed or implied. And my employer (which is not  Apple) has no idea I just wrote this.

  • Fit Table width/height to Margin

    It would be a great handy feature if the table width could be fitted to the margin of the page.
    Moreover 'tables' need some more extra features like : distribute rows/column evenly to fit table width/height. At present this feature extends the table width/height when applied. Once I fix the width and height of the table, distribute rows/column must fit to that width/height only. The table should only extend when I add rows or column.

    >I have a 2-page site for a customer and have set it up as
    tables (from
    > Photoshop CS to Dreamweaver MX).
    Bad start. Read this for a better approach -
    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html
    Then read this -
    http://apptools.com/examples/pagelayout101.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Jonclyde" <[email protected]> wrote in
    message
    news:gfenmb$dek$[email protected]..
    >I have a 2-page site for a customer and have set it up as
    tables (from
    > Photoshop CS to Dreamweaver MX). The first page opens
    fine with the table
    > occupying 100% up and down as required, but clicking a
    link to the second
    > page
    > causes the table to shrink in size, even though (as far
    as I can tell)
    > both
    > pages are virtually identical when it comes to layout. I
    did one page,
    > then
    > copied it to make the second page. Check it out for
    yourself here:
    > www.jonathanstewart.com/chc/index.html. I can get the
    second page
    > (Services) to
    > open properly only if I set the target to _blank. Check
    the far right and
    > bottom of screen on both pages. The bar at the bottom
    should rest on the
    > bottom
    > of the browser window whatever the window's size, and
    the bar at the top
    > should
    > extend "off the page" at both left and right. Any ideas?
    >

  • Maximize page to fit screen width

    Hi,
    I would like to maximize all the pages of the application to fit the entire screen size i.e. effect similar to F11.
    Please let me know how it can be done at application level.
    Thanks.

    @fac586,
    Thanks for your reply. I have been asked to check the feasibility of this feature. I just gathered the complete details.
    Its a Org specific Knowledge search kind of application. So the users will be employees of that org.
    The employees mostly use Mozilla Firefox or Internet Explorer and versions might be latest (or) one or two versions lower. We can also display a note in the browser and suggest them to use Mozilla(if required).
    The main purpose of the full screen mode is we want to utilize maximum screen space to show the pages, as there are lot many regions displayed over there.
    If there is a better way to show the page in full screen or use max space, we are ready to go with it.
    <li>Which browser(s) and browser version(s) is this application going to run on?Mozilla Firefox or Internet Explorer and versions might be latest (or) one or two versions lower. We can also restrict them to use Mozilla only.
    <li>Which operating systems?User will be in Windows XP in most cases. I assume its OS of the user here.
    <li>Is it an intranet application that will run in a controlled environment?Yes it is.
    <li>An internet application that anyone can run?No.
    <li>How is it deployed? As a desktop icon in a controlled environment? As a link on another site? On a standalone kiosk device?Users will be provided with URL for the application. Its deployed in apex.oraclecorp.com
    <li>Do the users expect it to run in full-screen mode? Do they even know what full-screen mode is? Do they know how to get out of it and back to their desktop or other apps? Will they want to run it in full-screen mode?Since the requirement is to have all the regions displayed comfortably in the page, without scrolling the page full screen mode is used. We are planning to have a button in the page, which will exit the full screen mode and move to normal mode so that users can perform regular activities with browser.
    <li>Are there any accessibility concerns to doing this?The purpose of the full screen mode is we want to utilize maximum screen space to show the pages, as there are lot many regions displayed over there.
    If there is a better way to show the page to use maximum space, we are ready to go with it.
    <li>How will this work across multiple devices? Screen sizes? User font settings?We have not thought about this yet. Whatever may be the screen size or display settings the user have, it should expand to fit screen width.
    Please do let me know if require more information on this.
    @Joel_C,
    I am a newbie in APEX and Web applications and to these forum categories too. Though the disclaimer claims, it hurts.
    If I had known its a browser specific functionality earlier, why wouldnt I mention it ealier and end up in multiple iterations to get a solution to my query and waste valuable time of fac586?
    No one can become 'Guru' in the way you have mentioned. Atleast I havent. Its through hardwork and continued contributions one can attain this position.
    You might have also crossed this stage when you started with web applications. I am not a born genius and just a learner.

  • Auto fit column width for subtotals

    Hello,
    We created subtotals using member sorting & grouping in EPM report. some reason Auto fit column width is not working for sub totals.
    Any idea or any one encounter similar issue?
    Thanks,
    Srinivas Thota

    Hi Raju,
    I checked notes but i dont see any details in SP16 patch 01 documentation.
    The note 1683111 related to SP07.
    Thanks,
    Srinivas Thota

Maybe you are looking for

  • THE FUNCTION USED IN METHOD IS UNAVAIBLE

    I have created a java program that works fine succesfully but when I try to publish as webservice, the method which I want to expose, is not available. I need that my service returns an array in order to bring table rows for a web service client. Can

  • Checking for a url in my message

    testing /Users/judithravin/Desktop/determinedafterstorm.html 15 pbg4   Mac OS X (10.4.7)   MM/ISIGHT/IPOD5TH/FIRELITE60GBEXT.HD ilife6/sony dcw70

  • How can I lock a track volume level to never move in Garageband?

    Hi there I'm currently creating a backing track of a popular song and I have built up all the parts of the songs against a wav track which contains the original version of the song. I want to be able to mix the volumes of the tracks Ive built to the

  • Using Function module SALRT_CREATE_API i am sending  alerts ..

    Hi gurus, i am using the Function Module SALRT_CREATE_API to send alerts. i run the same F.M. in se37 with same input alert id is generated and in SOST i checked them. but after using the F. M in program , alert id is generated, but in SOST i didn't

  • SPRO Transaction - Incentive and Sales Force Management

    Hi Experts, I am trying to access Incentive and Sales Force management in SPRO transaction. When I drop down the arrow of Incentive and Sales management I see Application wizard which when I cick is opening a wizard. That is working fine. But, when I