Flash object not updating (Captivate 6)

I'm using a flash object on one of my slides. This is a help file. The file was created in Captivate, published, and then I'm putting the flash object onto a slide. When this slide is referenced, the flash file plays. It's a few static screens with forward and back buttons. The issue is that on one of the screens, the wrong text was inserted. I fixed the text, re-published, deleted the flash object from the slide, and put the new one there instead. But when I run the project, it still shows the old version, with the wrong text. I'm not sure why this is. The source file was changed and updated. I've tried restarting the computer in case it's being help in memory, but still, it keeps showing the old version with the wrong text.

I tried adding a random button to the file, publishing, and using it again. This time, the button didn't show up, but the text updated. So I deleted it and tried the original file again. Still showing incorrect text. I opened the file, added a button, saved it, deleted the button, republished, reinserted the flash file, and now it works. So maybe there have to be changes saved for the file to update? Not really sure how it worked, just glad that it did.

Similar Messages

  • Adobe Flash will not update to a W-2000 system and will not work? Is there a fix? Mozilla has disabled Flash. Do I have to go back to Explore?

    Adobe Flash will not update to a W-2000 system and will not work in Firefox? Is there a fix? Mozilla has disabled Flash. Do I have to go back to Explore?

    have you tried to install flash
    restart imac
    go to web site which require flash

  • Flash Object not viewable within page

    Hello, I've been having trouble adding a Flash content into pages (which I'm quite innexperienced at). My homepage for example, is supposed to be a flash site. But for some reason it does not play when inserted to an incredibly simple webpage, as you can see here; www.ethanguillemette.com
    Instead of the flash site appearing, there is simply an empty white box. Now interestingly enough, the flash object is fine in and of itself, and can be viewed without problem (albeit far too large!) here; http://www.ethanguillemette.com/flashsite.swf
    The following is the code for the index page. Pretty much all I did was create a wrapper, center it, and add a background color:
    <!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>Ethan Guillemette - Web Designer</title>
    <style type="text/css">
    body {
    background-color: #91919B;
    .flashwrapper {
    margin: auto;
    height: 480px;
    width: 900px;
    </style>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="flashwrapper">
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="900" height="480" id="FlashID" title="Ethan Guillemette Flash Site">
        <param name="movie" value="flashsite.swf" />
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="11.0.0.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="flashsite.swf" width="900" height="480">
          <!--<![endif]-->
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <param name="swfversion" value="11.0.0.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>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>
    Does anyone know what hairbrained thing I'm doing wrong? Any help would be much appreciated!

    Just as general info I'd like to add a couple of my observations.
    There seems to be a number of very similar problems popping up in other Forums recently related to this same issue. I'm thinking that a recent Flash pluggin update is causing some of these problems.
    For example, I can't see the .swf files in either of hans links... I haven't updated my Flash pluggin for awhile (10.0.45.2). OK, I can understand if I can't view the .swf.
    But here is a similar problem posted over in the Flash Forum:
    http://forums.adobe.com/thread/868573?tstart=0
    I get a "download latest pluggin" message when attempting to view the posters page:
    http://www.brendaportfolio.co.uk/test.html
    However, I can direct download the .swf and view it just fine.
    So the problem is not that I don't have the correct version pluggin for that particular .swf, but rather that I don't have the correct pluggin as required by the embedding code used, specifically:
    <param name="swfversion" value="11.0.0.0" />
    older versions of his .swf/pages used an embed method calling for older version of "swfversion" as a param, those work just fine.
    So my guess is that in this posters case, the newer version pluggin IS required for his .swf, since I can't view the page. The old CS3 version, which used the old "AC_FL_RunContent" embed method only called for version 9 pluggin, while the .swf itself requires the latest pluggin.
    Perhaps a lesson to be learned is that when creating Flash content, you may not want to always develop for the very latest version of Flash Player, since not everyone has updated their browers. A second lesson/observation is that the embed method used in CS5 (swfobject_modified.js) seems to be putting the cart before the horse, requiring the latest pluggin update even if the .swf does not need it.
    Now I am all for using .swfobject, but NOT to display the Flash. swfobject is not needed, nor required to display Flash on a Web page. If the Web browser has the Flash pluggin a .swf will display just fine with some simple code like this:
    <object data="path_to_file/file.swf" type="application/x-shockwave-flash" width="insert_width_of_movie" height="insert_height_of_movie">
      <param name="movie" value="path_to_file/file.swf">
      <param name="SomeOtherParam" value="ParamValue">
    </object>
    no other code, swfobject, or AC_FL_RunContent needed.
    The purpose if using .swfobject is to provide Flash detection (not Flash display) and display alternate content if the Flash pluggin is missing or not up to date. But it appears now that the version of .swfobject used in CS5 has incorporated "get the latest version pluggin no matter what" rather than "get the appropriate pluggin for this .swf".
    And yet one of the most powerful features of .swfobject is the most overlooked and underused, that of allowing you to create alternate content for SEO purposes. That alt content can completely remedy I Know Nothing at all's concerns:
    On another note, you are aware that a 100 % Flash navigated site is the worst thing you can do from an SEO standpoint right?
    From an old post:
    If you think that Flash is somehow bad for SEO, it's time to dispell that MYTH!
    If fact, in some circumstances I'll use Flash INSTEAD of just HTML because then I'll have better SEO than with just HTML alone.
    http://www.worldbarefootcenter.com/
    The link to World Barefoot Center in the above post is just one example. View the source code and you see a couple paragraphs of text along with regular HTML links.... but what displays is the Flash version of the image and Flash links.
    The client provided the artwork for the page... and that's what they wanted to use a .jpg image. Well yes, that could be done in HTML but it would be virtually invisible to Google. So Instead I converted the image into a Flash .swf and used swfobject to display the Flash. swfobject allows you to create alternate content inside the <div> which also holds the Flash .swf, then when the page is loaded it detects if the browser has the Flash pluggin. If it does, it displays just the Flash content, if not, it displays the alternate content. Since almost everyone has the Flash pluggin, for most people the Flash version of the <div> will display.
    The alternate content for that <div> can be any regular HTML text, images, media player, links, etc., anything that you would use if you were not using the Flash. Now the best part is that the alternate content can be "over the top" as far as optimizing for SEO, since it will not be seen by most viewers.
    Here's another example of SEO with Flash.. again, the page is just a single image provided by the client:
    http://www.ksowetsuits.com/
    View the source code. The alt content is paragraph after paragraph of information about the site, including lists and links. If it was just the HTML, it might be kind of a boring Home page. But for SEO I can go "over the top" in promoting the site, since most viewers will never see that part... but it's all indexed by search engines. The end result is BETTER SEO using Flash than just HTML.
    On another Web site, a Flash video is displayed, the alt content is the complete text narration of the video. Now how many people would take the time to read that if they could just watch the video instead?? again, better SEO with Flash than without. In fact in one case we had first page search result from that video narration within 4 hours of posting the page.
    On still another site with a Flash video, the alt content is another video, but a .mov version, which will, in effect play Flash video on the iPhone (not possible you say??). Well since the iPhone does not have Flash pluggin, it simply displays the .mov version of the video, while everyione else sees the Flash version.
    So anyway, if Flash is a part of your Web development, you should look into using swfobject and alternate content.
    http://code.google.com/p/swfobject/
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best wishes all,
    Adninjastrator

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.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="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.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]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Adobe Flash Player not working--Shockwave Flash Object not installing

    Ok...let's try this again.  Somehow my previous discussion that I had been working on with eidnolb got marked as "Answered" when it wasn't.  If you are reading this and are also having problems with Adobe Flash Player, please START YOUR OWN THREAD!  That allows someone to help you individually and will hopefully prevent MY question from being accidentally marked as "Answered" when it's not.  THANK YOU!
    Now to start the whole process over....
    1.  When I download the latest version of Adobe Flash Player, my computer says it's succesful.  I'm able to verify through Add/Remove Programs that it IS on the computer.  However, when I'm on a site that requires AFP--like Hulu or YouTube--I get a message that says I need to download the latest version.
    2.  When I was working with eidnolb before, we found that for some reason the Shockwave Flash Object wasn't on my computer, even though I uninstalled and installed AFP several times and also restarted my computer.
    3.  I use Windows XP Professional Version 2002, Service Pack 3 and Internet Explorer 8.  My computer also has AVG 9.0.830 for anti-virus protection and Spyware Blaster.  The only firewall I use is the standard Microsoft firewall that came already installed.
    4.  I am the administrator on my computer.  I have also made sure the following are disabled when I download AFP:  anti-virus program, anti-spyware program, firewall, all add-ons in Explorer, and any messenger programs.
    Thank you to whomever is available and willing to help me.  I truly appreciate it! 

    I had this problem too. I'm not an expert with this at all, but Adobe Support at:
                                                                                                           http://kb2.adobe.com/cps/155/tn_15507.html
                                                                                               and      http://kb2.adobe.com/cps/000/6b3af6c9.html
    said that if you try to use Flashplayer with Internet Explorer 8 (64 bit) it won't work and you'll just keep getting the message to "Install Flashplayer" over and over even if you can see in your files that you already have it installed. They told me to use the 32  bit version of IE  8, or another browser such as Mozilla Foxfire or Google Chrome (both of which are 32 bit).  Now I can watch Hulu with any of these three browsers. I didn't have to turn of AVG at all; but I have AVG  2011 Free Version 10.0.1170 downloaded from  http://www.download.com .  Also,  according to the first website shown above,  you don't have the latest version of Flashplayer,  which is recommended by Adobe.

  • Flash object not represented in Design view

    When I had CS3 and I put in a flash object into my design there was a place holder or grey box that represented where teh flash would be. I no longer see it anymore and I am missing it. Then best i can do is get one of those little yellow icons that lets you know there is a script there to show up.
    How do i tun on the place holder version again. (Not really a place holder but I am not sure what to call it)
    Thanks,
    Houston

    Using CS4 I just did a test and inserted a flash object and could see a grey box with the 'F icon' in the middle.
    Have you checked  View>Visual Aids> Invisible Elements is ticked?
    Not sure if this is causing you not to see it - but it's the only suggestion I have  :-)

  • Flash Slideshow not Updating

    Hey all,
    I've finally reached my wit's-end trying to figure out how
    to solve what is seemingly such a inane problem. I'm working on a
    University Website for their Recreation Dept. On the main index
    page I've developed a Flash slide-show that automatically plays and
    loops a series of photos of different activities. It's basically a
    SWF file that calls to an XML listing of the picture locations,
    speed, transition time, etc. It has worked great. However, I
    recently tried to put a few more pictures into the series, taking
    the total from five to nine. This update works PERFECTLY on my work
    machine -- using Dreamweaver, when I preview the page, I see my new
    slide-show, and all the new pictures. However, after uploading all
    my pertinent files to the host server, my index page continues to
    play the OLD Flash slide-show, and not my updated one. I've
    uploaded the new swf file, the new xml file, the new index.html,
    even the AC_RunActiveContent.js script. Everything has been
    overwritten, several times, and the index page on my server will
    not update to the new content. Any ideas or clues to get around
    this? I know it's not exactly easy to understand, but hopefully
    somebody has run into this same problem. Thanks in advance,
    Mike

    Sounds like a file cache problem.
    What I usually do is put version numbers on the swf files so
    that when you update it the old file doesn't show up again. There
    are many techniques that people use, none of them seem to work 100%
    of the time when the new file has the same name as the old file.
    What you can try is:
    1. Change the swf file name andupdate the name in your html
    file
    2. Remove the swf file from the server, open your html page,
    hit refresh (it should hang because the swf file isn't there), then
    publish the new swf and hit refresh again.
    There are also techniques with meta tags.
    Other method discussed here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=1125939

  • Flash Player Not Updating?

    Hello,
    About 10 minutes ago, I checked the Plugin Checker to make sure all my plugins were up to date. It said that my Flash Player needed updating, so I did that.
    However, I checked the Plugin Checker again after downloading to make sure it went through, it didn't, and still lists Flash as Vulnerable/In Need of an update: http://i.imgur.com/tiA64Ji.png
    Checking Flash's About page, it seems that I have the correct version?: http://i.imgur.com/RL7rdif.png This version is also the same one listed in the download page: http://i.imgur.com/6xLDOOU.png
    So am I up to date or not?

    It is a bit of a headache right now as 16.0.0.296 is vulnerable actually however Adobe has yet to release yet another update to try and fix critical exploits that is in older versions.
    https://helpx.adobe.com/security/products/flash-player/apsa15-02.html
    The update will likely be available at https://www.adobe.com/products/flashplayer/distribution3.html before http://get.adobe.com/flashplayer/ as was case with last release for a few days.

  • Flash Object not Found

    Dear Friend,
    I am using VC and trying to create attractive portal through it but the Flash object neither showing in tool bar nor in component. What should i do? Kindly tell me the solution.
    Regards
    Santanu

    Hi Santanu,
    Are you referring to the flash components feature? If so, you should know that it is available only in a recent updated systems.
    In 7.00 version starting SP22, and in Ehp1 starting SP5. Do you have a system as updated as these versions?
    Best regards,
    Udi

  • Adobe Flash Player. not updated

    Good day!
    Windows 7 Professional SP1
    Internet Explorer 9.0.8112.16421Adobe
    Flash Player 11.5.502.135
    Service startup type "AdobeFlashPlayerUpdateSvc" is "Manual"Internet restrictions are no contracts.
    Adobe Flash Player offers updated, agree in the end leave messages that there are problemsthe internet
    (see attachment)If the download link to the latest version
    http://get.adobe.com/ru/flashplayer/(Adobe Flash Player 11.5.502.146 (15,61 MB)),
    then the file without problems install_flash_player.exe all set.The reason?p.s.
    A similar problem on Windows XP Professional SP3 is not observed.
    http://s005.radikal.ru/i210/1301/00/016e45656ebc.jpg
    http://i053.radikal.ru/1301/f4/bda00fd552ef.jpg

        Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Click "Manage Website Settings"
        Highlight "Adobe Flash Player", "Allow" and then "Done".

  • Operational Flash Version # Not Updated After Upgrade?

    I've just upgraded my 11050's to 5.00 build 69.
    When I look at a "show version", the new version is displayed but the operational and locked flash still list build 33. Anyone else run into this or know what could cause this?
    Here's the output:
    B5-CSS-1# sho ver
    Version: ap0500069 (5.00 Build 69)
    Flash (Locked): 5.00 Build 33
    Flash (Operational): 5.00 Build 33
    Type: PRIMARY
    Licensed Cmd Set(s): Standard Feature Set

    I used these documents when upgrading. I used the manual upgrade method instead of using the script.
    1. copied code to the CSS
    2. unpacked the image
    3. set the primary boot-image
    4. rebooted
    The response I got from TAC on this is that the operational flash is only updated when going to a new major release, not maintenance releases.
    All indications are that I am running the newer version despide the wrong operational version # showing up. Perhaps this is just an issue with this particular code version?, i.e. When the code was compiled, there was a version number parameter somewhere that wasn't updated?

  • FF shut down my Adobe flash cuz not updated & won't download now

    I've tried to find the A player by using several restore sites but FF has definitely removed it as they indicated on my computer saying it was not updated and was a danger.
    I need this plug in but it will not download in any fashion in fact Tools shows no plugins, nor is Adobe of any kind in programs.
    I also tried to download by disabling security settings and then another time the firewall and then another time putting Mozilla in safe mode. Can not get it to download just get a blank page that says downloads complete but they are not. can not play utube or news videos or daily motion vids.
    help

    You have Shockwave Flash 10.0 r45 (that is Adobe Flashplayer) installed '''''and not disabled''''' in ''Tools > Add-ons > Plug-ins''. It shows with the information automatically submitted with your question (click "More system details" to the right of your original question; if were disabled, it would not show up there).
    Read the following carefully...
    There are 2 versions of Adobe Flash:
    *an '''ActiveX version''' for IE only
    *a '''Plugin version''' for most other browsers including Firefox
    *On a Windows system, you should always update both individually.
    '''''You do not appear to have the Plugin version for Firefox installed. ''''' If you did, in Add-ons > Plugins you would see "Shockwave Flash ''(version)''". If "Shockwave Flash" is there and is disabled, click the "Enable" button.
    Check your Plugins often --> http://www.mozilla.org/en-US/plugincheck/
    *only the most popular/used Plugins are known by this page
    *page will detect only installed, '''''enabled''''' Plugins
    '''<u>Install or update Adobe Flash</u>'''<br />
    #'''<u>Using Firefox</u>''', go to the following link and SAVE the download to your desktop so you can find it later. Un-check any items on that page that you do not want to download (i.e., "McAfee Security Scan Plus":
    #*http://get.adobe.com/flashplayer
    #When the download is finished, close Firefox (File > Exit '''''OR''''' Firefox button > Exit)
    #Click or double-click on the file you just saved to your desktop
    #*In the installation window that appears, click the box to the left of "I have read and...." to place a check mark in the box
    #*The "Install" button in the lower right corner will now be highlighted, click it.
    #*The installation is quick.
    #Start Firefox and test your installation here: https://www.adobe.com/software/flash/about/
    #To update/install the ActiveX version for IE '''''only''''', repeat the process, '''<u>but use IE to go to the above website</u>'''.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Ie9 flash object not showing when wmode is set

    I'm searching and searching but do not find any solution for this.
    We're having a flex web application that is working fine until now. We're using until recently the google maps flash api, unfortunately this is already deprecated and will disappear completely in september 2014. Therefor we moved the whole integration to the js v3 api, which is working fine. The whole thing is an overlay over the application, since everything is moved to js, I added the property wmode to the object in html and set it to opaque in order to be able to layer everything. It's working fine for most people, but some (including my boss) are seeing a blank screen. Seems that nothing happens (although the swf loads), and I can not figure out why. Same browser (ie 9 or 10), same flash player version (11.6.xxx). Browser cache cleared, flash player cache cleared...
    Somebody having a clue? Removing the wmode-property solves the issue, but then I'm not be able to get my map on top of the application.
    The swf is definetly loading since I see calls made to the server in order to login etc. It's also not a flash player issue. The swf-file is directly accessable and rendering if done so.
    Thanks
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <!--
    Smart developers always View Source.
    This application was built using Adobe Flex, an open source framework
    for building rich Internet applications that get delivered via the
    Flash Player or to desktops via Adobe AIR.
    Learn more about Flex at http://flex.org
    // -->
    <head>
        <title>${title}</title>
        <meta name="google" value="notranslate" />  
        <meta http-equiv="X-UA-Compatible" content="IE=10; IE=9;"/>     
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <!-- Include CSS to eliminate any default margins/padding and set the height of the html element and
             the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as
             the percentage of the height of its parent container, which has to be set explicitly.  Fix for
             Firefox 3.6 focus border issues.  Initially, don't display flashContent div so it won't show
             if JavaScript disabled.
        -->
        <style type="text/css" media="screen">
            html, body  { height:100%; }
            body { margin:0; padding:0; overflow:hidden; text-align:center;
                   background-color: ${bgcolor}; }  
            object:focus { outline:none; }
            #flashContent { display:none;}
        </style>
        <!-- Enable Browser History by replacing useBrowserHistory tokens with two hyphens -->
        <!-- BEGIN Browser History required section ${useBrowserHistory}>
        <link rel="stylesheet" type="text/css" href="history/history.css" />
        <script type="text/javascript" src="history/history.js"></script>
        <!${useBrowserHistory} END Browser History required section --> 
        <!--  BEGIN OogScreening -->
        <script src="PlusOptixSync.js" language="javascript"></script>
        <!--  END OogScreening -->
         <script language="javascript">
            function getEIDxml()
              var strXML = document.MirageApplet.readCardAsXMLString() + " ";
              return strXML;
            function setOuterSize()
                var nomWidth = 1280;
                var nomHeight = 800; // 786 viewable in fullscreen
                var actWidth = nomWidth;
                var actHeight = nomHeight + 150 - 30; // fullscreen change coeff (ruimte die we winnen door f11) - taakbalk
                window.resizeTo(actWidth, actHeight);
                //window.outerWidth = actWidth;
                //window.outerHeight = actHeight;
                //script die de F1 help functionaliteit van de browser afzet. Dit is nodig omdat IE de F1 functionaliteit van de flex applicatie onderdrukt
                document.onhelp=new Function("return false");
                window.onhelp=new Function("return false");
        </script>  
        <script type="text/javascript" src="swfobject.js"></script>
        <script type="text/javascript">
            // For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection.
            var swfVersionStr = "${version_major}.${version_minor}.${version_revision}";
            // To use express install, set to playerProductInstall.swf, otherwise the empty string.
            var xiSwfUrlStr = "${expressInstallSwf}";
            var flashvars = {};
            var params = {};
            params.quality = "high";
            params.bgcolor = "${bgcolor}";
            params.allowscriptaccess = "sameDomain";
            params.allowfullscreen = "true";
            params.wmode = "transparent";
            var attributes = {};
            attributes.id = "${application}";
            attributes.name = "${application}";
            attributes.align = "middle";
            swfobject.embedSWF(
                "${swf}.swf", "flashContent",
                "${width}", "${height}",
                swfVersionStr, xiSwfUrlStr,
                flashvars, params, attributes);
            // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
            swfobject.createCSS("#flashContent", "display:block;text-align:left;");
        </script>
          <!-- Groeicurven 5.0 scripts -->
          <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
          <script src="http://code.highcharts.com/highcharts.js"></script>
          <script src="http://code.highcharts.com/modules/exporting.js"></script>
          <script type="text/javascript" src="../js/util/Namespace.js"></script> 
          <script type="text/javascript" src="../js/util/mirage-services.js"></script>
          <script type="text/javascript" src="../js/util/mirage-binding-utils.js"></script>
          <script type="text/javascript" src="../js/util/mirage-event-dispatcher.js"></script>
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-constants.js"></script>
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-theme.js"></script> 
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-config.js"></script>
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-factory.js"></script> 
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-zoomer.js"></script>
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-formatter.js"></script>      
          <script type="text/javascript" src="../js/util/groeicurven-highcharts-prototype.js"></script>
          <script type="text/javascript" src="../js/groeicurven-events.js"></script>             
          <script type="text/javascript" src="../js/groeicurven-controller.js"></script>
          <script type="text/javascript" src="../js/groeicurven-flex-bridge.js"></script>
          <script language="javascript">
                initGroeicurvenFlexBridge("${application}");
          </script>           
        <!--  BEGIN GoogleMaps -->
        <link rel="stylesheet" href="../css/google-maps.css">
        <script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
        <script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/styledmarker/src/StyledMarker.js"></script>
        <script type="text/javascript" src="../js/util/cvi_busy_lib.js"></script>
        <script type="text/javascript" src="../js/google-maps-events.js"></script>
        <script type="text/javascript" src="../js/google-maps-controller.js"></script>
        <script type="text/javascript" src="../js/google-maps-mediator.js"></script>
        <script language="javascript">
            function openMaps(data)
                document.getElementById('mapsContent').style.visibility ="visible";
                document.getElementById('optionsList').style.visibility ="visible";
                document.getElementById('activeCheckboxDiv').style.visibility ="visible";
                document.getElementById('mapsContent').style.zIndex = 100;
                onLoadHandler(data);
            function adresFoundHandler(marker, filtereEnabled){
                document.getElementById('mapsContent').style.visibility ="hidden";
                document.getElementById('optionsList').style.visibility ="hidden";
                document.getElementById('activeCheckboxDiv').style.visibility ="hidden";
                document.getElementById('activeCheckbox').style.visibility ="hidden";
                document.getElementById('mapsContent').style.zIndex = 0;
                clearLocations();
                ${application}.responseGoogleMaps(marker, filtereEnabled);
        </script>         
        <!--  END GoogleMaps -->   
    </head>
    <body scroll="no" onLoad="setOuterSize();">
        <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough
             JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
             when JavaScript is disabled.
        -->
        <div id="flashContent">
            <p>
                To view this page ensure that Adobe Flash Player version
                ${version_major}.${version_minor}.${version_revision} or greater is installed.
            </p>
            <script type="text/javascript">
                document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='get_flash_player.gif' alt='Get Adobe Flash player' /></a>" );
            </script>
        </div>
        <noscript>
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="${width}" height="${height}" id="${application}">
                <param name="movie" value="${swf}.swf" />
                <param name="quality" value="high" />
                <param name="bgcolor" value="${bgcolor}" />
                <param name="allowScriptAccess" value="sameDomain" />
                <param name="allowFullScreen" value="true" />
                <param name="wmode" value="transparent" />
                <!--[if !IE]>-->
                <object type="application/x-shockwave-flash" data="${swf}.swf" width="${width}" height="${height}">
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="${bgcolor}" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <param name="allowFullScreen" value="true" />
                <!--<![endif]-->
                <!--[if gte IE 6]>-->
                    <p>
                        Either scripts and active content are not permitted to run or Adobe Flash Player version
                        ${version_major}.${version_minor}.${version_revision} or greater is not installed.
                    </p>
                <!--<![endif]-->
                    <a href="http://www.adobe.com/go/getflashplayer">
                        <img src="get_flash_player.gif" alt="Get Adobe Flash Player" />
                    </a>
                <!--[if !IE]>-->
                </object>
                <!--<![endif]-->
            </object>
        </noscript> 
        <noscript>Your browser does not support JavaScript!</noscript>
        <applet
          id ="MirageApplet"
          codebase = "AppletLibs"
          archive  = "kg-eid-tools-2.6.jar,beidlib-1.1.jar,jdom-1.0.jar,joda-time-1.6.jar,commons-lang-2.4.jar"
          code     = "be.kg.mirage.MirageApplet.class"
          name     = "MirageApplet"
          hspace   = "0"
          vspace   = "0"
          style="width: 0px; height: 0px;">
            <param name="Reader" value="">
            <param name="OCSP" value="0">
            <param name="CRL" value="0">
            <param name="DisableWarning" value="true">
        </applet>
        <div id ="mapsContent">
            <h3 id="typeLabel">Google Maps</h3>
            <select id="optionsList"></select>
            <input id="searchInput" type="text"></input>
            <div id="activeCheckboxDiv">
                <input id="activeCheckbox" type="checkbox"></input>
                <label for="activeCheckbox">Toon enkel actieve locaties</label>
            </div>
            <button id="searchButton" type="button" class="secondElementButton">Zoeken</button>
            <button id="annuleerButton" type="button" class="annuleerButton">Annuleer</button>
            <ul id="locations" class="thirdElement"></ul>
            <div id="canvasMap"></div>
        </div>

    This means that the SWF is written so that it only works when
    embedded in a web page. When you add the SWF to the stage as a
    stand-alone display object using addChild() it is not being hosted
    in the web page.
    You have 2 options:
    1. Modify the SWF code (if possible) to remove the
    ExternalInterface requirement. You can write code in your AIR
    application javascript to subscribe directly to events from the SWF
    using addListener() and call functions directly on the SWF object
    (Flash/Actionscript is not my primary development environment... so
    if I have gotten the terminology wrong I apologize, but I HAVE
    written a flash application that worked as I describe). My SWF
    actually works embedded in HTML or not using the code "if
    (ExternalInterface.available) {
    ExternalInterface.addCallback("setIsPlaying", setIsPlaying ); }"
    2) Somehow add a HTMLLoader in a new child window (with
    transparent = false) to the stage as a new child. I have not yet
    figured out exactly how to do this, so If anyone can provide
    information on how to do this, I too would be appreciative.

  • Smart objects not updating.

    hi, i'm currently stuck with and issue that's ruining my workflow and slowing me down.
    the basic job is to photograph lamps and replace the background. (see hallmarklighting.com)
    i usually do so by editing the original photo and cut it out with the pen tool, ending up with several layers of adjustments and whatnot. i take those layers and insert them into a smart object of a template file i made for the background, from there it's just a matter of saving the various output files (print/web/psd).
    the issue is that just recently when i save the smart object, it doesn't update, the progress bar stops at about 75%. the program doesn't freeze nor does the computer. the layers are saved in the smart object, but it won't show up in the main file, preventing me from saving out the final image. it started last  week. i have discovered if i flatten the image of the smart object, it works as it should. I'd be fine with this solution if i wasn't constantly asked to rework files for advertising materials and whatnot.
    if anyone has a suggestion as to what could be causing this or how to fix it please let me know.
    system info:
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x64
    Operating System: Mac OS 10.8.5
    System architecture: Intel CPU Family:6, Model:26, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2800 MHz
    Built-in memory: 10240 MB
    Free memory: 7966 MB
    Memory available to Photoshop: 9299 MB
    Memory used by Photoshop: 90 %
    Image tile size: 128K
    Image cache levels: 4

    Is using Layer > Smart Objects > Replace Contents not an option?
    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by pressing command-alt-shift/ctrl-alt-shift while starting Photoshop until the appropriate dialog appears after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)

  • Flash player not updating to 11.7.700.191 help please

    anyone know why this isnt updating?

    I don't work on the installer, so I'm guessing here.  If you've already selected an update preference, it would make sense to not prompt you again.  We *should* prompt you on a fresh install, or after running the Uninstaller, as you would not have a defined preference in either case.
    You can also toggle the update notification preference at any time from Control Panel > Flash Player > Advanced.
    You can choose between "Always Allow Adobe to install updates", in which case we only notify you when there's a feature-bearing dot release (on the Release channel).  We call this a "loud" release when we talk about it on the team.
    If you choose "Notify me to install updates", you'll always get that prompt.  If you choose "Never check for updates", you won't get notifications or updates.
    For Beta Channel, we never do "loud" releases.  Once a week, we send out a build of the latest branch that's ready to go.  Right now we're shipping betas of the next Flash Player 11.7 service update while we wrap up the feature work on Flash Player 11.8.  As soon as that's done, we'll start pushing out 11.8 builds.

Maybe you are looking for

  • Universal App: no Application Insights for Windows Phone 8.1 project

    I just created an universal app and installed the Application Insights Tools for Visual Studio extension. It was easy to add AI for the Windows 8.1 project. Unfortunately there is no "Add Application Insights Telemetry to project..." command for the

  • Family share not appearing on 2 gen apple tv

    my sister has a 2 gen apple tv and the family share content does not appear. how do i fix that.

  • Iphone won't power on

    I just bought a used IPhone 2 days ago and everything was working fine. Today it went into sleep mode with 35% battery remaining. An hour later I pressed the home button and nothing happened. Then I tried the hold button and nothing. I plugged in the

  • What is best devl environment

    Hi All I inherited a punch of code in an ear file. The ear file contains many jar files (each handles some modules) and 1 war file The users currently run the ear file in a Geronimo server I don't have Geronimo for development but I use eclipse and T

  • Secondary method in desion step

    Hi   , i m using desion step  for  approvals and also using secondary  method to display the  so order to the user . wokflow is working fine , but my secondary method is not calling . Please.help in this regard . Regards . kiran