Increase swf file height and width...

Hello guys
   I am trying to increase a swf file height and width so it can fit better in my screen. I don't want to rework on everything again in my fla file because it's big hassle. (changing background size makes every symbol off). Are there anyway to do it? Thanks a lot!

you could load your swf into an empty movieclip/loader in another swf.  when loading is complete you can resize your target movieclip/loader.

Similar Messages

  • Increaseing the height and width of textfield and password fields

    Dear friends in apex 4.1 when we create a application it automatically creates a login page
    with username and password field in it
    So my question is can i increase the height and width of the username and password field in that login page
    If it is possible please help.
    and also i cannot find the html tag like <input type=text............>
    Where to find it?

    Hi,
    You can easily achieve this using css
    <style>
    input.myclass
      height:100px;
      width:100px;
    </style>
    <input type="test" class="myclass" size="10">So in APEX you have to edit the textfield > HTML Form Eelement Attributes > put class="myclass"
    Thanks

  • What is the maximum height and width for bitmap files in Flash?

    I'm trying to import a huge game race track 8000 x 7000, and I'm having problems.  Any tips?
    Thanks!

    Thanks Kglad,
    What is the height and width max for objects on the stage in Flash Pro?  I have a large track I've created, 7728 by 6051, I can't see all of it on the stage, and when I try to set its x and y position i get an invalid error.

  • How to resize and maintain height and width ratio IR image column

    Hello, I am upgrading from 3.2 to 4.1 reports that include images in report columns. I have had good success with this except for one thing. If the height and width is fixed it distorts the photos, and if I do not have fixed dimensions the image may be too large depending on the original dimensions of the :P1_PHOTO item which is File Browse... BLOB column. I do not want to restrict users ability to upload large image files, or files with different dimensions, but I want them to display as a thumbnail size proportional to the original dimensions in the report, or maybe I need a different approach? Report region template is No Template. I appreciate any suggestions.
    select decode(nvl(dbms_lob.getlength(photo),0),0,null,'<img src="'||apex_util.get_blob_file_src('P1_PHOTO',id)||'" height="75" width="75"/>') photo from table.
    I tried using percent i.e.: width="10%" that does not work.
    I have tried several variations of <style> in page HTML header to change column width, but the image size does not change.
    <style>
    td[headers="PHOTO"] {
    width:75px;
    </style>
    <style>
    #apexir_PHOTO{width: 75px;}
    </style>
    Thanks.

    Try to go with max-width / max-height. However, if you have IE browser, hang on for pain. For some ideas, some links:
    http://wordpress.mfields.org/2011/scaling-images-in-ie8-with-css-max-width/ (ignore object-fit, it is not yet supported on most browser)
    http://stackoverflow.com/questions/3915219/max-width-on-img-tag-not-working-in-ie8
    etc. Be sure to try out your chosen solution on the target browser(s)!
    IE is just nasty :(
    What i have done before is not to have my browser scale my images, especially when the images can be large(r) and you expect quite some traffic. All those extra (kilo)bytes won't help it load faster. I just added an extra column in the table, like photo_thumb, and create a scaled version of the uploaded picture when it is being inserted.
    For example, i have the following process on my apex page, and i'm using wwv_flow_files.
    Have some code:
    IF :P3_FIND_PHOTO IS NOT NULL THEN
       DECLARE
         v_id number;
         v_small_photo blob;
         v_large_photo blob;
         v_mime_type apxt_contacts_img.mime_type%type;
         v_content_type apxt_contacts_img.content_type%type;
       BEGIN
          SELECT blob_content a, blob_content b, mime_type, content_type
          INTO v_small_photo, v_large_photo, v_mime_type, v_content_type
          FROM wwv_flow_files
          WHERE name = :P3_FIND_PHOTO;
          IF lower(v_mime_type) NOT IN ('image/jpg', 'image/jpeg') THEN
             raise_application_error(-20001, 'File for upload is not a jpg!');
          END IF;
          -- Rezise the photo so that it is proportionally 125*125
          -- ordimage is an oracle type able to manipulate all sorts of pictures
          ordimage.process(v_small_photo, 'maxScale=125 125');
          -- If contact is of type personnel, then no need to store
          -- a large photo since it wont be displayed
          IF :P3_CONTACT_TYPE_ID = 2 THEN
            v_large_photo := NULL;
          END IF;
          -- Delete previously uploaded picture
          IF :P3_ID IS NOT NULL THEN
             DELETE FROM apxt_contacts_img
              WHERE contact_id = :P3_ID;
          END IF;
          -- Insert the data into the contacts_img table as a
          -- SELECT from WWV_FLOW_FILES
          INSERT INTO apxt_contacts_img
          (contact_id,
           image_name,
           mime_type,
           content_type,
           filename,
           small_photo,
           large_photo)
          VALUES
          (:P3_ID,
           :P3_LASTNAME,
           v_mime_type,             
           v_content_type,
           :P3_FIND_PHOTO,
           v_small_photo,
           v_large_photo);
          -- Remove the image from the apex wwv_flows_files table
          DELETE FROM wwv_flow_files WHERE name = :P3_FIND_PHOTO;
       END;
    END IF;

  • MovieClipLoader height and width

    Hi all,
    ok, situation is this...user clicks and drags a rectangle on
    the stage which gets created into a Loader which they can then load
    an image/swf into using filereference upload.
    Depending on the size and position of the rectangle the user
    has drawn, will depend on the size of the movieclip, as a resizer
    handler works out the scale of the object loaded and resizes it in
    proportion. This works fine if it's something like a jpg however,
    not with a swf. The problem is that when loading a swf in it only
    looks at the size of the movie IN THE FIRST FRAME! So _height and
    _width are incorrect when the swf is loaded in.
    For example, create a 50x50 box in the top left of a 550x400
    stagesize flashmovie and tween it over a few frame to the bottom
    left and save and publish the movie. Now in a new movie create a
    moviecliploader and load in your tween movie and set a onloadinit
    listener to output the _width and _height. it will say 51 and 51
    (not sure why the additional pixel) NOT 550x400.
    As such, the entire scaling and any subsequent resizing the
    user can do doesn't work properly. In this example, it would resize
    the 51 x 51 movie to proportional fill the 550x400 space, so you'd
    end up with a 400x400 square that will tween off the screen, as
    it's actually resized it to 4400 x 3200 !
    The only way I can find of getting round it is to put an 0
    alpha moveclip the size of the stage on the clip to be
    loaded...which seem a bit of a hack.
    Any idea how I can get round this with AS?

    Those numbers are the Stage.width and Stage.height. In the
    IDE that is Menu Modify->Document.
    Only the first loaded swf Stage height and Stage width
    survives. The first loaded swf becomes a mask for any other
    external swf loaded into it.
    When you load an external swf into a Movieclip, the external
    swf is loaded but its Stage data is lost and it only loads what is
    compatible inside a MovieClip.
    MovieClips have a dynamic changing _height and _width
    property depending on the frame and the object positions on that
    frame.
    If you need a first frame that is always a certain size, then
    include a rectangle MovieClip with an alpha = 0 on the first frame.
    If all frames, extend to all frames but remember any objects that
    move beyond that change _width and _height..

  • Graph Canvas Height and Width

    Hello guys!
    It is any way to set that Height and Width default values in any configuration file? We need set our custom default size.
    Thanks for your time.
    Regards,
    Ariel

    By default its 300*400 (H*W), i don't think we can set default value in any configuration file.
    Please try to change the logic accordingly in js file and redeploy it in the application server.
    analytics\res\b_mozilla\views\chart\dlgcommoncharteditors.js
    Line num : 431 - 439
    if (H == 300)
    tCF.removeAttribute('height');
    else
    tCF.setAttribute('height', H);
    if (W == 450)
    tCF.removeAttribute('width');
    else
    tCF.setAttribute('width', W);
    Remember to do the changes everytime during upgrades and patches.
    rgds
    vinod

  • Chaging Height and Width of POP UP in Webdynpro

    Hi,
    I want to change the height and width of pop up in webdynpro.
    Pop up is designed of view which is embeded in window.
    then i am calling
    lo_window         = lo_window_manager->create_window(
                         window_name                = 'UPLOAD_FILE'
                         title                                   =      'Upload target file'
                         close_in_any_case         = abap_true
                         message_display_mode  = if_wd_window=>co_msg_display_mode_selected
                         close_button                    = abap_true
                         button_kind                      = if_wd_window=>co_button_none
                         message_type                 = if_wd_window=>co_msg_type_none
                         default_button                  = if_wd_window=>co_button_none
                         is_resizable                      = abap_true
    I have also tried
      lo_window->set_window_size(   width = '999px' height = '999px'  ).
    But it is also not working..
    How i will resize the pop up.
    I have also change the view height and weight but the height is adjusted to some standard level.
    Looking for your feedback.
    Thanks
    Ankesh
    Moderator message: please have a look and ask again if necessary in the dedicated "Web Dynpro ABAP" forum.
    Edited by: Thomas Zloch on Feb 14, 2011 11:35 AM

    Hi Vedant,
    check the below given thread
    Is there anyway to make a popup window MODAL in APEX using JavaScript
    Hope this will helps you,
    Regards,
    Jitendra

  • How to fix accrodion panels height and width?

    Hi,
    I have a question regarding my accordion panel. I made 3 template files with the same accordion panel. Somehow when I reviewed it in my Outlook, the accordion panel was a different size on each html file. Where do I fix the accordion panel's height and width?
    Thank you!

    Welcome to Apple Discussions
    Look at this thread:
    http://discussions.apple.com/thread.jspa?threadID=1864976&tstart=0
    Walt

  • Trying to determine the height and width of an image.

    Hi Everyone,
    I am currently trying to work out the height and width of a number of pictures. I have tried a couple of techniques. One involved using BufferedImages, which kept on throwing null pointer exceptions. So I am now tring to use the Image class from java.awt.Image. However I need to use an ImageObserver or some such thing, of which I have absolutely no knowledge. If there is anybody out there who knows how to gather the information I speak of from a number of photos, and is feeling kind enough to impart their knowledge to me it will be greatly appreciated. Thanks.
    Regards
    David

    Well, maybe your problem is loading in the images, but I'm assuming you know what your question is since I don't feel like going into what ImageObserver does (That's what google is for).
    Anyways, to get the height and width of an image you do this:
    You initialize your image:
    Image image = getImage("file.jpg")  //I don't remember the if this is correct, it's just my memory.To get the dimensions"
    image.getWidth();
    image.getHeight();If these return 0 it's more than likely because the image hasn't loaded correctly, which is why you need ImageObserver (IIRC there is a better API in the new ImageIO library, check the API).
    Best of luck.
    Virum

  • Dynamically read height and width dimensions of .mov

    Hi there!
    I am wondering if anyone knows of a way to dynamically get the height and width dimensions of a quicktime movie, before streaming it?
    The circumstances are this. I have clients who upload quicktime movies to my server. Right now, I use code to embed movies in a fixed size page, but the movies can vary quite dramatically in terms of their dimensions. For example, if the movie is 400px wide, it looks fine in my page. However, if it is 800px wide, it extends out beyond the borders of my page and looks terrible. I could just make a huuge page, but then the tiny movies look ridiculous
    If I could somehow gets the dimensions of a movie before it starts streaming, i could create a large target page for larger movies, and a small target page for small movies. Basically it comes down to being able to somehow dynamically read the dimenions of the movie.
    Is this even possible? Like my boss keeps telling me, it's all just Math isn't it?
    Thanks!!!

    Hmmm...
    I think the movie dimensions are exposed to JavaScript, but only after the movie has opened. So you would have to load the movie into the plugin, then get the dimensions, then use JavaScript to rewrite the page. Which I don't think is quite what you had in mind; you're wanting to collect this information and deal with it before you write the page.
    Let me see if I have this straight...You are allowing clients to upload movies to your server, and then you're hoping to generate an embedded movie page on the fly in PHP to display the movie just uploaded, correct?
    For a library of movies, you could generate a small database of all the movie dimensions, then just look that data up in the table when you generate the page. The trouble is, I don't know of any way to get the movie dimensions except to get them from QuickTime, and to do that you have to load the movie into either the player or the plugin. You could, for instance, have an AppleScript that looks at each movie and populates the database, but I don't see how you could trigger that to run on upload, and I don't know what kind of server you're using.
    Now here's an idea...If you have some way of arbitrarily reading and parsing the QuickTime file, you can get the dimensions out of the file, but it isn't easy. If you are lucky, the moov atom will include a prfl atom (movie profile) which includes the video dimensions. But the prfl atom is not mandatory, which means you have to look at each trak atom that contains video and examine the size *and position* and accommodate the fact that you may have multiple, overlapping video tracks. But you could get the data by parsing the QT atoms yourself. All the data you need to do that is here:
    http://developer.apple.com/documentation/QuickTime/QTFF/QTFFPreface/chapter1_section1.html
    ...and may God have mercy on your soul!
    Seriously, though, you CAN parse a QT file, and that might be the best (though obviously not the easiest!) way to get the data you want dynamically. QuickTime does help you out by giving you all the offsets for all the atoms, but it can be tricky!
    --Dave Althoff, Jr.

  • Height and Width:

    Hi, I keep trying to increase the height and width of my quicktime video but nothing happens - please view an example page here:
    http://petsitterbible.com/movies/avoidonstreet.shtml
    and the code I used is: <embed src="http://downtownpets.com/sitstays_bytraffic.mov" width="500" height="340"></embed>
    Any ideas? thank you!

    The movie is 16:9.
    You can export the movie in iMovie to 480x272, the next larger size. With the controller is 272 + 16 = 286.
    That's within the range of your current display size 500x340.
    I use iMovie, Picasa Movie Maker and QuickTime Pro & X to create movies. Have a look :
    http://www.wyodor.net/iFrame/
    http://www.wyodor.net/Tutorials/ImageWidget/ClickMovie.html

  • Can I turn off the setting that displays the height and width in a little black box when using the marquee tool?

    In Photoshop CC, on a mac...
    When using the marquee selection tool, a little black box pops up next to the curser and displays in real time, the height and width of the selection.  The same annoying box also appears when dragging an item with the move tool, displaying the numerical location of the cursor.  Is there anyway to turn off the display of that little black box?  It is driving me bonkers.

    Under the preferences cmd/ctrl-k click on "Interface". At the bottom of the UI is a drop down box for show transformation. Set that to "Never"

  • How to change the height and width of a control?

    Dear all,
    is there anyway to change the height and width of a control?
     In the property nodes, i am just able to read the bound values but cudnt write to it.
    How can i set the bound values for a control?
    Thanks,
    Ritesh

    Not all controls can be sized this way. For example to change the vertical size of a simple numeric, you would need to change the font size.
    LabVIEW Champion . Do more with less code and in less time .

  • How to determine height and width of a JScrollPane client

    Hi,
    I wish to display a webpage in a JScrollPane and wish to determine the height and width of the HTML content so that I can use the information to generate PDF and control the content on each page. Can anybody let me know how I can do this?
    Thanks in advance
    Prashant Baj

    JEditorPane and getSize()?

  • How to create instant quote tool for website? Customer enters height and width and price is calculated.

    I am trying to create a instant quote tool for my site.. so customer type in there height and width and a price appears but I have no clue where to start.. is there any tutorial or would someone kindly give me some advice on how to do this on dreamweaver. I havent used Dreamweaver in years and I cant even remember anything now
    Kind Regards

    Well this is what I have soo far.. so I want to enter the height /width then if they want to add extras such as fixing options and cut out it will add to the product price ????
    <!doctype html>
    <html>
    <head>
    <div class="summary entry-summary">
            <h1 itemprop="name" class="product_title entry-title">Ral 1000</h1><div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
        <meta itemprop="price" content="160" />
        <meta itemprop="priceCurrency" content="GBP" />
        <link itemprop="availability" href="http://schema.org/InStock" />
    </div><div itemprop="description">
        <script src="https://apis.google.com/js/plusone.js" type="text/javascript">
    </script>
    <script type="text/javascript">gapi.plusone.go();</script>
    <p>6mm, low iron, toughened glass, PAR
    </div>
    <div class="shortcode-google-plusone"><div class="g-plusone"  data-size="standard" data-annotation="none"></div></div><!--/.shortcode-google-plusone-->
    </p>
    </div>
    <form class="cart" method="post" enctype='multipart/form-data'>
            <table id="price_calculator" class="simple_price_calculator">
            <tr>
            <td style="text-align:right;">
              </td>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script>
    $(document).ready(function() {
    $('#width').keyup(function() {
    var height = $('#height').val();
    var width = $('#width').val();
    var price = (height * width / 1000000 * 325).toFixed(2);;
    $('.price').html('Product price: &pound;' + price);
    </script>
    </head>
    <body>
    <p><label for="height">Height (mm)</label>
    <input type="text" name="height" id="height">
    </p>
    <p>
    <label for="width">Width (mm)</label>
    <input type="text" name="width" id="width">
    </p>
    <p>
    </p>
    </body>
    </html>
        </tr>
    </table>
    <div class=" product-addon product-addon-add-fixing-option">
                <h3 class="addon-name">Add Fixing Option </h3>
        <p class="form-row form-row-wide addon-wrap-1738-add-fixing-option">
        <select class="addon addon-select" name="addon-1738-add-fixing-option">
                        <option value="">Select an option...</option>
                        <option data-price="5" value="silicone-adhesive-tube" >Silicone Adhesive Tube (<span class="amount">&pound;0.00</span>)</option>
                        <option data-price="5" value="screws-and-drill-holes" >Screws and Drill Holes (<span class="amount">&pound;6.00</span>)</option>
        </select>
    </p>
        <div class="clear"></div>
    </div><div class=" product-addon product-addon-add-extra-layer-multi-coloured-fine-glitter">
                <h3 class="addon-name">Add Cut Out and Notches </h3>
        <p class="form-row form-row-wide addon-wrap-1738-add-extra-layer-multi-coloured-fine-glitter">
        <select class="addon addon-select" name="addon-1738-add-extra-layer-multi-coloured-fine-glitter">
                        <option value="">Select an option...</option>
                        <option data-price="8" value="1" >1 (<span class="amount">&pound;25.00</span>)</option>
                        <option data-price="15" value="2" >2 (<span class="amount">&pound;50.00</span>)</option>
                        <option data-price="25" value="3" >3 (<span class="amount">&pound;75.00</span>)</option>
                        <option data-price="25" value="4" > (<span class="amount">&pound;100.00</span>)</option>
        </select>
    </p>
    </p><p class="price">Product Price: &pound;</p>
        <div class="clear"></div>
    </div><div id="product-addons-total" data-type="simple" data-price="160"></div>
            <input type="hidden" name="add-to-cart" value="1738" />
            <button type="submit" class="single_add_to_cart_button button alt">Add to cart</button>
                </form>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>

Maybe you are looking for