Problems zooming out with a Flash Banner

I have created a Flash banner for the home page of my website.  Here is the link to the page I am working on:  http://adirondackvic.org/CSSTest9July2012-2.html
When I zoom in to increase the size of the web page, the Flash banner rescales automatically.  However, when I zoom out, to decrease the size of the web page, the Flash banner does not automatically rescale.  It remains the same size and you have to hit the refresh button to get it to rescale to fit the newly resized page. 
Is there a fix for this?  I searched the forum and the web and have not found an answer.  I put a question on this in another forum, but received no responses. I found some discussions of the issue on the web and on this forum, but I was not able to figure out how to incorporate the suggestions into my page.  I tried changing the scale from exactfit to showall, as recommended, but that created a problem with the appearance of the page. (The banner no longer fit properly into the header window.) I also tried (as recommended by one of the entries in this forum) to change width="100%" height="100%" or width="100%" height="auto".  This fixed the problem for Internet Explorer, but then the entire banner disappeared in Firefox. 
Please help!  I am at my wit's end....  Thank you.  ellen
Here is the relevant  code:
<div class="header"><!-- end .header -->
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="960" height="100" align="absmiddle" id="FlashID" title="FlashBanner">
      <param name="movie" value="BannerTest16.swf">
      <param name="quality" value="high">
      <param name="wmode" value="opaque">
      <param name="swfversion" value="6.0.65.0">
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="../Scripts/expressInstall.swf">
      <param name="LOOP" value="false">
      <param name="SCALE" value="exactfit">
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object data="BannerTest16.swf" type="application/x-shockwave-flash" width="960" height="100" align="absmiddle">
        <!--<![endif]-->
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="6.0.65.0">
        <param name="expressinstall" value="../Scripts/expressInstall.swf">
        <param name="LOOP" value="false">
        <param name="SCALE" value="exactfit">
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
      <img src="Images/Banner102 -- Saint Regis Mountain from the Barnum Brook Trail --  June 2012-1.jpg" width="960" height="102" alt="Paul Smith's College VIC" align="absmiddle">         
              </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
  </div>

Kevinsoffice wrote:
iDevices are pretty much dead hardware since they dont support popular flash. How many mac forums are filled with people complaining about Apples choice not to support it. And with much better hardware coming out like the Samsung line there are better choices then iStuff.
The evidence does not support that position.
As expected,  Adobe has stopped developing Flash on mobile devices (iOS and Android)
http://www.businessinsider.com/adobe-to-kill-mobile-flash-starting-august-15-2012-6
http://www.digitaltrends.com/mobile/adobe-flash-for-android-gone-with-barely-a-whimper/
Flash is dying, iStuff is alive and well.

Similar Messages

  • Problem with a flash banner in a php includes

    I am creating a site that has many pages and I made an includes file for the header of the page that contains my navigation bar, i then made a template of the page to use for all my pages.
    Now I have created a flash banner that i want to play in the header of all my pages but i´m having problems getting it to show on all the pages.
    Firstly I added the flash swf into my includes file and inserted the flash into the includes file page using insert flash from the dreamweaver menu (code below):
    <?php $currentPage=basename ($_SERVER['SCRIPT_NAME']);?>
    <script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <div id ="adBanner">
      <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','468','height','60','title','advertise','src','advertise_banner','quality','high','plu ginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveF lash','movie','advertise_banner' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="468" height="60" title="advertise">
        <param name="movie" value="advertise_banner.swf" />
        <param name="quality" value="high" />
        <embed src="advertise_banner.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60"></embed>
      </object></noscript>
    </div>
    <div id ="NavBar">
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p><a href="index.php" <?php if ($currentPage == 'index.php') {echo 'id="here"';}?>>Home</a></p>
        <p><a href="about.php" <?php if ($currentPage == 'about.php') {echo 'id="here"';}?>>About Us</a></p>
      <p><a href="contact.php" <?php if ($currentPage == 'contact.php') {echo 'id="here"';}?>>Contact Us</a></p>
      <p><a href="advertise.php?ad=y" <?php if ($currentPage == 'advertise.php') {echo 'id="here"';}?>>Advertise</a></p>
      <p> </p>
        </div>
    Great the flash ad works when I load the includes page in a browser and when i look at all my other pages that have the link to the includes file the flash file shows as a grey box with F in the center, however if i load any of these pages into a browser the flash ad does not show.
    I also tried doing exactly the same, adding the flash to the header of my template and saving it. However this did not update all of the pages that use the template, the flash ad would play in the browser if I load the template in the browser. (in this instance the actual swf file was in my templates folder with the template page).
    The final thing i tried was just to add the flash to one of my pages just to see if it would work when i loaded the page into a browers, it didn´t and i don´t understand why as it worked on the includes page and template page. (the swf file in this case was in the file along with all the pages of my site).
    It doesn´t seem that i have a problem with the actual flash banner, i just cannot seem to put it in the pages that i want to.
    Any help or input in this matter will be greatly appreciated.
    Thank you in advance.

    I don't know if this will be of any help but I have a flash rotator that I use on a few pages setup in a seperate file as well, here is the code from my include file
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="884" height="402" id="myFlashContent">
        <param name="movie" value="/Image-Rotator-V2.swf" />
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="/Image-Rotator-V2.swf" width="884" height="402">
        <!--<![endif]-->
         <a href="http://www.adobe.com/go/getflashplayer">
          <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
         </a>
        <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    I also added the following to the head section of the page the flash is used on.
    <script src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js" type="text/javascript"></script>
    Regards
    Richard

  • How to zoom in with Adobe Flash Player 12.0.0.77

    I like to play a game on Neopets called Destruct-O-Match.  Until two days ago, I could zoom in on the game (make it bigger) by right clicking with my mouse.  Now that option no longer exists, so the game is too small to see comfortably.  How do I zoom in and make the game big enough to enjoy using Adobe Flash Player 12.0.0.77?

    Thanks Mike, but I already did that.  Until two days ago, I would maximize
    the screen using Control +, but the game would still be small, so then I
    would zoom in with a right click of the mouse.  However, apparently there is
    a new version of Flash Player, 12.0.0.77, and there¹s no option of zooming
    in by right clicking.
    I figured out how to make the game bigger by reducing the resolution of my
    computer, but I can¹t play long because it makes me dizzy.

  • When on the internet, how can I zoom out with out cuting off part of games and stuff?

    When I go to Mozilla Firefox, I can't see everything on the screen because it is zoomed in to much. When I go to view and zoom out, it zooms out but when I go to armorgames, part of the games I play are cut off so I can't see everything on the game. Plus, it just zooms back in when I leave Firefox and get back on. It wasn't always like that though. I want to know if I can set the default view to normal so I can see everything on the screen without having to scroll left and right, or having part of games cut off.

    Hi lilmikrymike15, <br>
    If you use View > Zoom > Reset, does the zoom level reset to the expected size?
    To set your default zoom level you usually need an add-on. Have you tried installing one named Default FullZoom Level or another named NoSquint? <br>
    Tools > Add-ons > Extensions category
    <br>
    You can also try disabling Firefox's use of hardware accelerated graphics. In order for this to take effect you usually need to restart Firefox. <br>
    Go to Firefox > Preferences > Advanced > General and uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, is the clarity improved?
    <br>
    Hope i have helped!

  • Zooming out with AffineTransform

    I'm trying to create a generic container panel that can zoom and pan over arbitrary JComponents. Zooming in works fine. Zooming out is getting some odd side effects from the clip. Zooming out, then resizing the window doesn't show the whole image. The top and bottom are trimmed off, despite the large space available at the top and bottom of the window.
    I've overridden paintChildren() to set the Graphics' transform. mutantGraphics.setClip(mutantClip) doesn't seem to matter; the clip only gets smaller.
    How do I restore the clip to the larger size?
    Thanks,
    Dave
       public final class ZoomPanel
            extends JPanel
            private JPanel view;
            private AffineTransform transform;
            private AffineTransform inverse;
            private static final double ZOOMINRATE = 1.1;
            private static final double ZOOMOUTRATE = 1/ZOOMINRATE;
            private Dimension originalSize;
            //todo preferred size
            ZoomPanel(JPanel view)
                super(new BorderLayout());
                add(view);
                this.view = view;
                this.originalSize = view.getPreferredSize();
                this.setPreferredSize(originalSize);
                transform = new AffineTransform();
                try
                    inverse = transform.createInverse();
                catch(NoninvertibleTransformException nte)
                    throw new RuntimeException(nte);
            private void transformChanged()
                try
                    inverse = transform.createInverse();
                catch(NoninvertibleTransformException nte)
                    throw new RuntimeException(nte);
                view.repaint();
            public void zoomOut()
                transform.translate(getWidth()/2,getHeight()/2);
                transform.scale(ZOOMOUTRATE,ZOOMOUTRATE);
                transform.translate(-getWidth()/2,-getHeight()/2);
                transformChanged();
            public void zoomIn()
                transform.translate(getWidth()/2,getHeight()/2);
                transform.scale(ZOOMINRATE,ZOOMINRATE);
                transform.translate(-getWidth()/2,-getHeight()/2);
                transformChanged();
            protected void paintChildren(Graphics originalGraphics)
                Graphics2D mutantGraphics = (Graphics2D)originalGraphics.create();
                Shape originalClip = originalGraphics.getClip();
                System.out.println("originalClip "+originalClip);
                Shape mutantClip = inverse.createTransformedShape(originalClip);
                mutantGraphics.transform(transform);
                mutantGraphics.setClip(mutantClip);
                System.out.println("mutantGraphics.getClip() "+mutantGraphics.getClip().getBounds());
                mutantGraphics.setStroke(new BasicStroke(4));
                mutantGraphics.draw(mutantGraphics.getClip().getBounds());
                super.paintChildren(mutantGraphics);
        }

    You'll need to modify the preferred size of your component as you zoom.
    Typically, I would set the component's preferred size to fit the zoomed image (ie at 0.5 zoom the width and hieght would both be double the original size) and then stuff it into a JScrollPane.
    At the moment you set the preferred size initially but never change it, so your image is being clipped by the bounds of the component - it can't render outside its bounds so the component needs to be at least as large as the view.

  • Problem of buffer with adobe flash player

    Hi,
    I have a problem of buffer playing a song.
    I'm playing a sound using streaming. (loadSound("my flow",
    true))
    The buffer size is the default one: 5s.
    When I play using Macromedia Flash Professional 8, everything
    is OK, the buffer size stays around 5s.
    But
    when I play using a browser, the buffer size reduces, and the
    song is stopped to download 5s of buffer.
    I'd like to know if there is something in the configuration
    of Adobe Flash Player for IE and Firefox that is different from the
    player of Macromedia Flash Professional 8.
    Please could you explain me why it happens!!
    Thank you for your help

    So, you didn't need help with anything, you just wanted to rant?

  • My Facebook acct. has been hacked and now it's spreading to other parts of Firefox 3.6. I'm getting problems worked out with FB but think I need to reload Firefox 3.6.17 for my Mac OSX.4. Can you help me/have other advice?

    When I try to login to FB now, I get a website that takes over Firefox - WebSpy, or something like that. I already changed my email passwords. When WebSpy takes over, I have to quit Firefox. I'm not using FB right now, until I get this sorted out. It was sending out bogus messages to all my friends.

    Have you tried opening them in a Finder window? Also, you might boot to your Install DVD and launch Disc Utility to verify and repair both permissions and your drive.
    Sounds strange. I also have the Lacie 500G - partitioned, but with one being FAT 32 ...works fine for me.

  • When I want to zoom in or zoom out with the mouse wheel and CONTROL button the letters get larger but remain within the same size paragraph and any pictures remain the same. I want the entire page to zoom.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/866940]]</blockquote>
    I want the entire page to zoom in and out when I use CONTROL + mouse wheel. Now the letters get larger but remain in the same size paragraph and also the pictures stay the same.

    It is indeed scandalous that Apple sells useless scanned music scores. There is a warning when you chose to download music tabs or notes but it doesn't say that the score lines are very small and cannot be zoomed. I spent $30 on two books but cannot really use them on my MBA as you cannot zoom except for the double click which only works page per page and is only a small improvement.
    The only way I can use the score more or less is on my ipad in landscape mode by increasing the font size to the max. The music score then becomes wider and you can read 2-3 lines per page without glasses.
    If you could transfer the file to the pdf  "side" of the library in ibooks the zoom would work..
    What does work is using the accessibility zoom mode option+command+= to zoom and then option+command+\ to smooth the picture but then your whole display desktop etc. are zoomed in.

  • HT1338 my trackpad is not letting me zoom out with fingers

    Just today my trackpad is no longer zooming images and pages when I use my two fingers on it. Has this happened to anyone and how do I fix?
    I've already confirmed these functions are checked in my Systems Preferences.

    Uncheck the trackpad settings and recheck them back, one by one.
    Restart the computer. This has helped many.

  • Using scroll wheel with modifier key to zoom out is not working

    I can't zoom out with the magnifying tool selected in all programs of the CS3 suite using the option key on a Mac. I can zoom in with no problem. I've been trying to figure this out for "8 hours" now!!!
    I do have this checked in the system preferences and Photoshop preferences. I don't think this is considered a keyboard shortcut but I do have universal access checked and zoom out checked in the system preferences.
    I searched this site and all of the internet looking for answers but can't seem to find much. I appreciate any help you can give. I'm way behind on my work today.
    Thank you!

    The default key for scrolling zoom is not Command but Control. To change this, go to System Preferences —> Universal Access and click on the Seeing tab. In the Zoom pane, click on the Options button, and in the sheet that drops down, select the text box at the bottom, highlight the character there, then press the modifier key you prefer.
    HTH
    Archie

  • How to open,view pdf document in a form with zoom in and zoom out functionality Please urgent

    Hi
    Anybody can help me with a sample code in c# to open a pdf document using forms and to give the functionality   zoom in and zoom out   with verticall and horizontal scroll bar. Please help
    Regards
    Pol
    polachan

    Hello polachan,
    you can find two sample projects with code at
    [1] and
    [2].
    [1]
    http://www.codeproject.com/Articles/579878/MoonPdfPanel-A-WPF-based-PDF-viewer-control
    [2]
    http://www.gnostice.com/nl_article.asp?id=159&t=How_To_Create_A_PDF_Viewer_in_PDFOne_NET_v2_x
    Regards,
    Bo Liu
    Developer-Hotline for MSDN Online Germany
    Disclaimer:
    Please take into consideration, that further inquiries cannot or will be answered with delay.
    For further information please contact us per telephone through the MSDN-Entwickler-Hotline:
    http://www.msdn-online.de/Hotline
    For this post by the MSDN-Entwickler-Hotline the following terms and conditions
    apply: Trademarks,
    Privacy
    as well as the separate
    terms of use for the MSDN-Entwickler-Hotline .

  • Aperture 3.4.1 Zoom out at 25% not working

    Hi,
    I just remarked that the Zoom Out at 25% with Aperture 3.4.1 doesn't work any more...the maximum Zoom Out is now fixed to the size
    of the window. I'm pretty sure that this worked on Aperture 3.4 though.
    While not a big problem, I like to view my photos at smaller size, to see how they look like on small printouts.
    Does someone have the same issue with Zoom Out with Aperture 3.4.1?
    Cheers,
    Gilles

    I could not get to work since Aperture 3.4 either. Zoom out now seems to stop, when the image fills the window.
    As a work-around, select more than one image in full screen mode, and you can zoom out to 25%.
    Or put the image on a Light-Table; then you can zoom out to really small thumbnail sizes.
    Regards
    Léonie
    Four image in Full screen view selected, zoomed in out differently (25%, 25%, 100%, 200%), for example:

  • Flash banner not displaying correctly

    I am definitly a newbie to flash.  Actually just gave the free download a try on this project.  The trial ran out and that might be part of the reason why I can't figure out this problem.
    I created a flash banner for a website, I have it embedded and it shows up, but it has cropped part of the scene, so the whole background image isn't showing.  I have tried resizing in my html, but it doesn't seem to affect the cropping issue.  You can view the site here.
    Any help would be appreciated!
    Margaret

    If you cannot edit the file due to the trial period ending, I don't know what you can do except to purchase the software, but that will be unrelated to the banner not displaying what you expect.
    I attempted to look at the page you linked, but the page is not loading, at least not quickly enough for me to feel comfortable waiting for it, so I passed on that.
    A Flash file will display in its entirety regardlkess of what dimensions you specify in teh html code for it, it will just distort to fill the area defined for it.  So the file is most liikely displaying correctly.  What your problem might be is you might have placed an image in the banner without realizing that the stage defines the viewable dimensions you are limited to, so you may need to either adjust the size of the image to fit the stage, or adjust the stage size to suit the image.
    It could be due to other reasons, but there isn't enough information about the design to determine as such.

  • Camera zoom-out

    Hi.
    I'm using Motion 4 and I'm trying to achieve a camera zoom-out with some conditions. Here's a image to explain the size and the type of zoom I'm looking for. My background images have 3072x1536 pixels and my canvas in Motion is defined to be 1024x768 pixels.
    As you can see by the picture, I want to scale my camera view but I only want to do it through the upper right diagonal so that my bottom left point stays at the same place.
    I've already tried to change the camera between framing and viewpoint but If I got my layers appart in 3D space they all start to phase out because of the perspective. Considering a flat image on the background, how can I scale/zoom-out my camera to do the effect on the image?
    Thank you!

    Walk backwards, as there is no zoom in video mode. Either that, or look for an app that provides "video zoom".

  • Control + minus zoom out - please read

    I use the control + minus for zooming out with my left hand (using control key on RIGHT side of keyboard and don't need to remove right hand from mouse) so often it's subconscious. Now, when I use that keystroke it turns the cursor into the minus pen tool. PLEASE READ FURTHER.
    If I remove my hand from the mouse and use the control key on the LEFT side of the keyboard it works but I don't want to have to do that.  I have upgraded from CS4 to CS5, and it is still doing this, AND got a brand new keyboard. It works fine in Photoshop - it just does this in illustrator, and it's driving me NUTS.  so it's not my keyboard, and it shouldn't be illustrator since I upgraded. WHAT is going on?  I need this to function because I use it all the time and don't want to have to think before doing it, or have to slow myself down by using both hands.  HELP!  (and thanks to anyone who can tell me how to get out of this loop of hell!)
    [p.s. will be out of office for next week so may not be able to respond after today]

    Edit  >> Keyboard Shrcuts
    Though the PC or Mac both don't discrimate whether you use the left or right CMD or Ctrl in Illustrator,  I would still check these out.
    The PC also has a control panel for international keyboard languages & assistance for handicapped, take a look at those. I don't have a Win station in front of me at the moment to give you the exact name of those.

Maybe you are looking for

  • Need to Remove html text in Saved PDF from OBIEE Dashboard

    Hi, It's OBIEE 10g related issue... Customer wants a Dashboard as PDF, Dashboard has a footer which has a HTML link. While saving this Dashboard into PDF file, it has the HTML text in footer place rather than HTML link. Can you please help me on this

  • How to write processed XML while using XML DOM

    How can I write a Document Node type element in a file i.e. if I have a document and I loaded in memory using DOM then I processed it.Now I need to write it back to file.how can I do that

  • What is erit report

    Guys, What is an erit report.

  • I need help that my ipad mini can't be activated

    Good time, tell me what to do? Friends bought and the U.S. and gave me iPad mini s/n F4*******19D. It is brand new! But when you activate constantly writing - Your Internet phone can not be activated .... In the service center refused to help me by a

  • Entourage Importing

    Hello there. I noticed that Entourage X has the ability to import from outlook express 5. How can I do this. I have a computer that runs OS9 with a huge email database in outlook express 5.06. How do I get the nessecary information to the computer wi