Flash swf looks tiny in IE

Hello,
I inserted my Flash movie/website into an html using dreamweaver and uploaded to the site's directory.  The movie plays fine in Firefox but in IE it's a tiny version of itself.  I uploaded the scripts to the directory as well, I'm not sure why it's doing this. 
Any help is appreciated. Thank you.

Thanks for your help, I did a little more research and found out that it was most likely because I was checking the site on IE9, which has compatibility issues with the latest Flash player.  I couldn't find anything that stated it was a resolved issue with Adobe or with IE9 - so for the time being I guess people will just be forced to see the tiny flash movie in IE9 - or switch to another browser... what a bummer.

Similar Messages

  • How can I make hyperlinks work from a Flash/SWF presentation?

    How do you make hyperlinks/buttons work in Flash/SWF Captivate 5.5 presentations? This did not seem to be an issue with Version 4. I cannot publish to video (i.e. mp4) or as an executable file for posting on our internal system. If it cannot be done in Flash/SWF, how else can I get buttons/hyperlinks to work? Thank you.

    Welcome to our community
    Please take a look at the links below. Not only do they answer your question, they are there to help you get the best forum experience.
    Forum Participation Suggestions
    Frequently Encountered issues
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • New to flash, swf loaded while changing size

    i'm trying to create a button that will replace the current
    swf with another and i want the size to change between the various
    sizes of each page. i'm currently using the following code in the
    action inspector:
    on(release){loadMovieNum("myfilename.swf",0);
    i know there has to be a simple way to do this! a very
    grateful thanks to anyone who tries to help!

A: new to flash, swf loaded while changing size

b3autiful_dizaster wrote:
> i'm trying to create a button that will replace the
current swf with another
> and i want the size to change between the various sizes
of each page. i'm
> currently using the following code in the action
inspector:
>
> on(release){loadMovieNum("myfilename.swf",0);
> }
>
> i know there has to be a simple way to do this! a very
grateful thanks to
> anyone who tries to help!
You can't change size dynamically as it is defined by the
object embed tags.
You could use WMODE transparency which could help you fake it
tho not always best
solution to go with WMODE. It's a very buggy parameter.
WMODE will remove the background color so the flash movie
appear over the html and you
can see the HTML content trough the movie.
You could define some solid shape for the background on
bottom layer to make it look
like SWF background, than change it with the other loaded
movie making it appear as it
changed size while the over all flash size stats the same. As
said above - faking it.
Best Regards
Urami
!!!!!!! Merry Christmas !!!!!!!
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

b3autiful_dizaster wrote:
> i'm trying to create a button that will replace the
current swf with another
> and i want the size to change between the various sizes
of each page. i'm
> currently using the following code in the action
inspector:
>
> on(release){loadMovieNum("myfilename.swf",0);
> }
>
> i know there has to be a simple way to do this! a very
grateful thanks to
> anyone who tries to help!
You can't change size dynamically as it is defined by the
object embed tags.
You could use WMODE transparency which could help you fake it
tho not always best
solution to go with WMODE. It's a very buggy parameter.
WMODE will remove the background color so the flash movie
appear over the html and you
can see the HTML content trough the movie.
You could define some solid shape for the background on
bottom layer to make it look
like SWF background, than change it with the other loaded
movie making it appear as it
changed size while the over all flash size stats the same. As
said above - faking it.
Best Regards
Urami
!!!!!!! Merry Christmas !!!!!!!
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

  • Flash SWF Performance Testing and Data

    Looking for some recommendations on tools that can be used independent of the source (that is just on the swf) to check for Frames Per Second, total size and how often the movie loops.
    Needed for Flash Banner ad quality assurance.

    The need was solved by writing my own AIR app to read the SWF file header.
    http://www.lonhosford.com/lonblog/2011/01/17/read-flash-swf-header-in-air-with-parsley-fra mework/
    You can drag a swf file and see the header data. As well you can load a swf from the web.
    Enjoy.

  • Horizontally centering flash .swf" and disallowing horizontal scroll??

    Is it possible to center a flash .swf file on a website, and then disable horizontal scrolling?
    I made my website in Flash Catalyst, and I made the width 1700px and the height 1200px. I made the width large because I wanted it to look good in the largest screen resolutions, but my biggest problem now that I've finished making the website is putting it up. Simply embedding it makes it scroll horizontally all the way to 1700px, which isn't good for those with small browsers.
    Originally, I was planning on making the flash file the background in CSS (using body {background: url(FILE.swf) no-repeat #000 top center}) but then I found out you can't put .swf's as backgrounds.
    Basically, I want to know if it's possible to center the .swf horizontally, and then disallow horizontal scrolling. I want to keep vertical scrolling,
    Any help appreciated!

    Is it possible to center a flash .swf file on a website, and then disable horizontal scrolling?
    Yes, but it introduces other problems. With scrolling disabled, you might not be able to see all the page. I DO NOT recommend what you are trying to do. Flash scaling would most likely give you better results.
    Background images if intended to cover a large area are typically very small images which are repeated to create a pattern. Using one large image will still never cover all the possible screen resolutions or page sizes... for example larger than 1700 or taller than 1200 pixels.
    Centering requires a set dimension, like 1700 so auto set margins would center it, but it still may not cover 100% as using a width of 100% would.
    That being said, turn off horizontal scroll and leave vert on with:
    overflow-y: auto !important;
    overflow-x: hidden !important
    then you'll need to use z-indexing to lay anything else over the top of you background .swf
    Here a sample page that should get you going... dimensions are smaller so you can see how it works... the principle is the same.
    <!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=iso-8859-1" />
    <title>No Scroll</title>
    <style type="text/css">
    <!--
    body, html {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    overflow-y: auto !important;
    overflow-x: hidden !important
    #main_container {
    position: relative;
    width: 800px;
    height:800px;
    background-color:#ff0000;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    #flash {
    position: relative;
    width: 800px;
    height:600px;
    background-color:#cccccc;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    #content {
    position: relative;
    top:-600px;
    width: 400px;
    height:300px;
    background-color:#00ff00;
    border:none;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
    z-index: 5;
    -->
    </style>
    </head>
    <body>
    <div id="main_container">
    <div id="flash">
      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="800" height="600" id="overflow" align="middle">
      <param name="allowScriptAccess" value="sameDomain" />
      <param name="movie" value="overflow.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffff00" /><embed src="overflow.swf" quality="high" bgcolor="#ffff00" width="800" height="600" name="overflow" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
      </object>
    </div>
    <div id="content">
    <p align="center">This is the center</p>
    </div>
    </div>
    </body>
    </html>
    Best of luck!
    Adninjastrator

  • Flash SWF file within Swing JFrame

    I was wondering whether its possible to open a Flash swf file within a JFrame
    I am looking for a solution similar to the usage of Flash Activex control in .NET
    thanks in advance
    Vikas

    I have read the forum link and other such entries in this forum. I have found the following:
    1.) JFlash - a java based flash player. https://jflash.dev.java.net/
    Could'nt find the app or the official site
    2.) a few projects on sourceforge.org :
    java flash bridge where you embed the flash inside an Integrated Browser Component
    3.) SWT Flash integration.
    I do not find any of these solutions satisfactory.except the SWT/Flash integration which I havent tried.
    My question is that isnt there an easier and simpler way to :
    Embed Flash into Swing app where actionscript and java can communicate.
    I am aware of Remoting and web services. But It is a desktop app I am talking about.
    Can anyone suggest anything?
    thanks in advance..
    from a very frustrated programmer....

  • Importing Flash swf

    Hello,
    I'm as new as it comes to Captivate. From what I've researched and seen, Captivate looks like an interactive Powerpoint that captures scores, answers, and responses,etc.
    Right now, I'm looking for an authoring program to help me use some of those abilities -- but also host the main interactivity that I've built into a flash swf.
    Before I go off and start programming, is it possible to embed a fully interactive .swf into Captivate -- or is this the wrong use and I should be attempting to rebuild that in Captivate? The program I'm going to build in Flash includes a time slider with simultaneous videos and animation.
    Are time sliders possible in Captivate? (A scrubbing bar back and forth)
    Thanks for your time.
    Kristin

    Everything you speak of is possible in Captivate, and it certainly does allow you to import SWFs created in AS3.
    Whether or not your program will work well with Captivate depends a lot on your programming abilities and how well you understand the Captivate architecture so that your app integrates well with it.
    It might be wise to consider building your app as a Captivate widget.
    Go here for good information about widget coding: http://www.infosemantics.com.au/widgetking/

  • Flash swf loading very slowly on website

    Have a look at this:
    http://www.tsocommunication.ca/test/...x/index_en.php
    and then this:
    http://www.biotonix.com/beta/index_en.php
    notice how it doesn't take any time to load on first URL, but on the second URL, it takes A LOT of time for the flash swf (header) to appear. Even when you change pages, it doesn't seem to get cached. What could be the cause of this?
    Any help would be really appreciated... thank you

    here's the code:
    <!-- Flash Menu -->
            <div id="flash_menu">
                <script src="scripts/swfobject_modified.js" type="text/javascript"></script>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="922" height="312" id="FlashID" title="menu">
                      <param name="movie" value="resources/menu/menu_en.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" />
                  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                  <!--[if !IE]>-->
                <object type="application/x-shockwave-flash" data="resources/menu/menu_en.swf" width="922" height="312">
                  <!--<![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" />
                  <!-- The browser displays the following alternative content for
                       users with Flash Player 6.0 and older. -->
                <div>
                  <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                  <p><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" width="112" height="33" /></a></p>
                </div>
                <!--[if !IE]>-->
              </object>
              <!--<![endif]-->
            </object>
            <script type="text/javascript"><!--
            swfobject.registerObject("FlashID");
            //--> </script>
                    </div> <!-- end flash_menu div -->

  • Problems in using Flash swf in captivate 5

    Hi,
    I am using captivate 5 and in that for a project I created some flash animation in flash cs4 and using the swf output file in captivate.
    So the problem is this:
    When I publish the project and try playing the project(exe/html output), those flash swf animations are not playing properly or not at all playing.
    There are around 40-50 slides in captivate and around 90% of those files contain flash swf animation. Some of the animations are playing and some are not.
    In flash cs4 the action script version is 3 and also I tried publishing the project in both flash player 9 and 10 but still some animations are not playing. Its random.
    Any fix for that? Its urgent.
    Thanks in advance.

    There's a known issue with the way Captivate 5 loads SWFs.  If the animation is not all on the main timeline level of the SWF, but the animation has been placed inside a symbol, Captivate triggers the animations to play when the SWF is loaded right at the beginning of the movie instead of making them play only on the slide where the SWF should play.  This means that by the time your movie gets to the slide in question, the animation has already finished playing, and it looks to you like it won't play, when in fact it already HAS played.
    This issue only affects SWFs with animation inside symbols, which is unfortunately the way most Flash animation designers are taught to create them.  It can be fixed via some AS3 code inside the SWF, but this is only possible if you have access to the FLA files used to create the SWF, and you know how to use Flash.
    There is more information in this thread: http://forums.adobe.com/message/3551526#3551526

  • Does Keynote Import Flash SWF Files?

    Hello,
    I do a lot of presentations and I often need to import Flash SWF files and play them inside my presentation. I currently do this on Windows with PowerPoint.
    Does Keynote '09 import Flash SWF files?
    Thanks!

    PeterBreis0807 wrote:
    To have Keynote accept and play Flash files go:
    +Apple Menu > System Preferences > QuickTime > Advanced > check Enable Flash+
    Peter
    Alas I don't see that option — having said that I looked at mime types and legacy encoders and nada, but oddly when I went to check the QT version (7.6 by the way) in the "About Quicktime" (accessed via the *System Preferences*) it cycles thru various codecs and "Macromedia Flash Player" is one of them... guess it doesn't access anymore. :o(
    Advanced lists only...
    Default Synthesizer:
    Transport Setup:

  • Text in Flash Player looks crap only on my computer

    Hi there, i have a news section on my website (not yet live)
    that has been designed in flash. The rest of the text on the site
    is in HTML. The text in the flash section looks really bad on my
    screen. Some of the text is thick and blurry and some is thin and
    none of it looks like the HTML text (although it is all arial).
    After some testing on both Mac and PC i have discovered it only
    looks like this on my computer! Flash Player works fine on other
    websites. Does anyone know if there are some local Flash Player
    settings i can change or if there is anything else i am missing?
    Obviously this is only a problem when i am showing my website
    to someone on my computer (a possible scenario as i am a designer
    and it contains my portfolio).
    My computer is a Mac Powerbook G4 1.67 GHz PowerPC 1GB DDR
    SDRAM
    Browser is Safari and i have Flash Player 9 installed (i have
    tried uninstalling and reinstalling)
    Thanks

    Hi tu meke,
    With Flash you can embed the fonts using the Property
    Inspector. For example, select Arial and choose Embed and Auto
    Fill. This will guarantee that the fonts look the same on all
    systems, however it will add to the file size.
    If you would prefer not to embed the fonts for some reason,
    here is another thought. The difference that you are noticing may
    be due to the Fonts Smoothing Style selected on your Macintosh.
    Open System Preferences and select Appearance. At the bottom, you
    can change the Font smoothing style. Try changing this setting and
    see if it helps.

  • Flash swf that runs on every browser except in Firefox. Can anyone help me please?

    Hello.
    I have an flash swf in a site that runs on every browser except in Firefox. I get an warning telling me that the page requires a newer version of flash player but i already have the 10,0,32,18 and the swf was published for flash player 9.
    Can anyone help me please?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • Need help with importing flash/swf into fireworks???? Is it possible???

    Hi, Is it possible to import a flash/swf file in to
    fireworks... If so... how..????
    Thank You for Your Help...

    can you post your code

  • Importing Flash (.swf) to Keynote

    Hi all,
    I am working in Keynote '08 (4.0.2) and have Quicktime 7.4.1 (14) installed. I need to import a Flash (.swf) file and play it in Keynote. Even though the online help says this: "You can also add video or Flash movies that play within a slide. For Flash to work with QuickTime 7.1.3 and later, choose Apple menu > System Preferences, click QuickTime, click Advanced, and select Enable Flash." Keynote 4.0.2 does not accept .swf files (they are grayed out) and Quicktime 7.4.1 cannot play an .swf (This is not a movie file). Should I unistall QT 7.4.1 and install a previous QT version? Can Apple fix this problem? Any other suggestions? Thanks

    Thanks for your quick response. Perian helps with Flash video but as far as I can tell it does not help with swf format. I have an actionscript loaded flash file that cannot be converted to MPEG-4. If you are indeed correct and Apple no longer supports swf with QT then I want my money back for iWork. It clearly states in their manual/help that users can import swf files and play them in Keynote. What a rip-off.
    Is there a way to unistall QT 7.4.5?
    Thanks.

  • Firefox Embedded Flash swf not shown in asynchronous desktop

    Hi all,
    in a jsp I embed a binary property of a content node that includes a flash .swf file. All that in an asynchronous desktop, using Firefox.
    I use the follwing code:
    "<embed scale="exactfit" quality="high" menu="false" width="600" height="400" hswLiveConnect="false" src="<%=myPropertyUrl%>">
    When the page is loaded by "normal" browser request, the flash animation inside the jsp renders as expected. After click on an url (<a> ....</a>) inside the same JSP the portlet content refreshes (via Ajax request), only the flash disappears. After F5 it's back agian.
    The problem does not exist with IE!
    How do i need to handle this for Firefox?
    Thanks for help.

    Firefox uses the object if there isn't a classid to specify an ActiveX control for IE.<br />
    You didn't specify such a classid (classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"), so there is actually no need for the embed in this case.<br />
    As jscher2000 posted above, an object tag only works in Firefox if there is a data attribute present (copy of the movie param) to specify the Flash file and a possible MIME type.
    <pre><nowiki><object style="width:420px;height:272px" data="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" type="application/x-shockwave-flash" >
    <param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" />
    <param name="flashvars" value="mode=mini&amp;backgroundColor=%23222222&amp;documentId=121102153057-a8027186d32d406698ae9cd6ce0305ed" />
    <param name="allowfullscreen" value="true"/>
    <param name="menu" value="false"/>
    <param name="wmode" value="transparent"/>
    </object></nowiki></pre>

  • Maybe you are looking for

    • Something is wrong with my cd/dvd drive

      i just inserted a blank disc to burn some songs from itunes and as soon as i put the cd in it started making this grinding sound after the computer read the cd. i tried other cds and dvds as well and it does the same thing. does anyone know whats wro

    • Apple TV wifi connection to BT home hub 2 and Apple MacBook

      Software update available when I switch on Apple TV tonight so I updated, TV restarted automatically and is only erratically connecting to router and when it does asks for network password.  I am quite new to Apple Mac but found my router details and

    • How do I disable "reopen windows when logging back in"

      Everytime I shutdown the mac asks me "reopen windows when logging back in". In fact the default is to do reopen all open programs when I restart. he annoying thing with apple is that when you close a window like Safari and iPhoto the program itself i

    • My FLV looks horrible

      I'm trying to post a Quicktime movie into Flash CS3, but my FLV file looks AWFUL when compared to the original Quicktime video. When importing the Quicktime video, I've tried all kinds of settings. (Soreson Sparks was the worst.) I've changed the qua

    • Custom Pipeline Component error

      I have created a custom pipeline component which references a template file on the local drive e.g. c:\test\template.xlsx.  however when I run the application the Send pipeline fails Reason: 'c:\test\template.xlsx' could not be found.  It does exist,