Adding watermark to flash SWF movie

Please can someone advise how I may add a watermark to my
Flash movie.
I have created a watermark that will cover the whole video
view but it will not be so dark that it can not be viewed, i have
it in black and white and set the background of the image to
transparent, using mircosoft photo editor. then saved this as a PNG
file.
i have added it to a new layer, but can not seem to view
both, its just one of the other. how do i add a watermark?
thanks

there is no "watermark" feature - it doesnt exist - you can
easily make one as described in other
replies - if you are having trouble with colors and contrast,
generally it is goo dpractice to make
the watermark 50% alpha or provide a drop shadow to help its
visibility.
Chris Georgenes
Animator
http://www.mudbubble.com
http://www.keyframer.com
Adobe Community Expert
*\^^/*
(OO)
<---->
not very clever wrote:
> Please can someone advise how I may add a watermark to
my Flash movie.
>
> I have created a watermark that will cover the whole
video view but it will
> not be so dark that it can not be viewed, i have it in
black and white and set
> the background of the image to transparent, using
mircosoft photo editor. then
> saved this as a PNG file.
>
> i have added it to a new layer, but can not seem to view
both, its just one of
> the other. how do i add a watermark?
>
> thanks
>
>
>

Similar Messages

  • Flash .SWF movie turns red

    When I run a Flash .SWF file, it runs fine for a while then
    the whole movie turns completly red and you can't see anything. I
    am running Win XP SP2 with Internet Explorer 7 Browser.
    Any Ideas on how to correct this?

    Though this is not an extreme task to achieve, I'm not aware of any "you don't need to program anything" kinds of templates that allow you to quickly sequence a series of SWF files. But, I understand this kind of requirement if you aren't an AS3 programmer yourself (or maybe you are, and you just want to save time, which we all do!). Many times it can be worth paying $40 for some template/component versus taking the time ourselves (1 hour, someteims dozens of hours).
    If this were programmed from scratch, it would be a combination of these concepts (sorry, no code here):
    The Loader class to load in your other AS3 SWF files
    Using an ENTER_FRAME event (in your application, not in the SWFs, which I'll assume you don't want to edit) to know when a SWF has reached the last frame, at which point you unload the current SWF and load a new SWF.
    An array that lists out your SWF files.
    Detection of when the final file has completed.
    In addition, possible some UI controls that would:
    Allow for the pausing/playing the current SWF (which would only control their main timeline; dealing with nested MovieClips with their own timelines would require add'l work).
    Allow for the instant skipping to the Next or Previous SWF file.
    Allow for the Restarting of the presentation when the final SWF has completed (or the option ability to loop to the 1st SWF at this point)
    The end result would be your template, that could be made fully reusable by coupling it with a really small XML file:
    The XML would become your list of SWF files
    This could also control which UI controls you have available
    Hopefully this gives you a general (abstract) sense of things you'd need to program (or find somebody to program...at which point the'll have their own take on how they'd do this).

  • Flash swf movie as cast member Director 11.5 problem (VerifyError - ReferenceError)

    Hi,
    Designed an interface in Illustrator (CS5), copy pasted most of it in Flash (CS5). Program works fine...until I use it inside a Director environment.
    I do this because we use many basic functions inside our system which use Director.
    The error I get inside Director is this, this I get when I push the play button in the example window..
    -- VerifyError: Error #1033
    -- ReferenceError: Error #1065
    -- VerifyError: Error #1033
    -- ReferenceError: Error #1065
    -- ReferenceError: Error #1065
    ...much more of this last line..
    Hope someone can help me out,
    Kind regards,
    Marcel

    Thanks for your reply, Sean. Because of my deadline, I've had to go ahead with the project using a work around for now (movies segmented at 10 minutes), but I will put together a demo movie this weekend once its done. I am still very eager to solve this issue, not just because I will be running into it again very soon, but also because I love/hate a mystery.
    I suspect the issue is that some part of Director is only registering 9000 frames of the video file, so while it can play past the 9000 frame mark, any lingo executed that refers beyond 9000 resets the movie to the beginning. I have a strong feeling that the fact that both the framecount method and the property inspector report all movie clips to contain 9000, even though NONE of them contain that many frames (some more, some less), has a lot to do with this.
    The video is flash video (SWF), btw. 
    Interesting Note: These clips are all 15fps. When I bring in 30fps clips, property inspector (incorrectly) reports them all as having 18000 frames. Buh.
    Joshua

  • Flash swf movie player with chaptering

    Hi guys, I'm looking for an off the shelf paid flash player (or free if available) that will allow me to play SWF's (not FLV's or videos).
    I have 5 .swf animations (1.swf, 2.swf, 3.swf, 4.swf, 5.swf).
    I would like to have a player that if i click play, will play through the 5 animations one after the other seamlessley - however i may wish to skip through chapters (each .swf will be a chapter) by clicking ahead on a playhead or by selecting a chapter title from a drop down.
    The chapters need to be seperate swf's because they will used individually aswell as as one piece.
    So in effect I really simply want a player to watch all my flash movies concurrently with the ability to click ahead in the player and have it load the relevant .swf if need be!
    Any suggestions?

    Though this is not an extreme task to achieve, I'm not aware of any "you don't need to program anything" kinds of templates that allow you to quickly sequence a series of SWF files. But, I understand this kind of requirement if you aren't an AS3 programmer yourself (or maybe you are, and you just want to save time, which we all do!). Many times it can be worth paying $40 for some template/component versus taking the time ourselves (1 hour, someteims dozens of hours).
    If this were programmed from scratch, it would be a combination of these concepts (sorry, no code here):
    The Loader class to load in your other AS3 SWF files
    Using an ENTER_FRAME event (in your application, not in the SWFs, which I'll assume you don't want to edit) to know when a SWF has reached the last frame, at which point you unload the current SWF and load a new SWF.
    An array that lists out your SWF files.
    Detection of when the final file has completed.
    In addition, possible some UI controls that would:
    Allow for the pausing/playing the current SWF (which would only control their main timeline; dealing with nested MovieClips with their own timelines would require add'l work).
    Allow for the instant skipping to the Next or Previous SWF file.
    Allow for the Restarting of the presentation when the final SWF has completed (or the option ability to loop to the 1st SWF at this point)
    The end result would be your template, that could be made fully reusable by coupling it with a really small XML file:
    The XML would become your list of SWF files
    This could also control which UI controls you have available
    Hopefully this gives you a general (abstract) sense of things you'd need to program (or find somebody to program...at which point the'll have their own take on how they'd do this).

  • Templates and Flash .SWF movie files

    OKAY seriously i am ready to throw this computer throught the
    wall, After googling and searching this forum up and down I still
    can find an answer that actually works , I have a Template file
    that updates 3 other html files and i can not get the swf flash
    movie to show up on the page, and for those of you smarty pants,
    * Yes I have the scripts folder
    * Yes I have the AC_RunActiveContent.js file present inside
    that folder and i also threw it on the root just in case
    * Yes the source files for the flash movie on my root
    * Yes it shows up in design view on all of the pages linked
    to the template
    <!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" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <table width="100%" border="0" cellpadding="0">
    <tr>
    <th height="101" colspan="3" scope="row"><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','1000','height','100','title','Title','src','../Flash_TopTitle','quality','high','plug inspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash','movie','../Flash_TopTitle'
    ); //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="1000" height="100" title="Title">
    <param name="movie" value="../Flash_TopTitle.swf" />
    <param name="quality" value="high" />
    <embed src="../Flash_TopTitle.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="1000"
    height="100"></embed>
    </object></noscript></th>
    </tr>
    <tr>
    <th height="23" colspan="3"
    scope="row"> </th>
    </tr>
    <tr>
    <th width="22%" height="759"
    scope="row"> </th>
    <td width="60%"> </td>
    <td width="18%"> </td>
    </tr>
    <tr>
    <th scope="row"> </th>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    </body>
    </html>
    Here is the code to one of the linked pages to my template
    <!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"><!--
    InstanceBegin template="/Templates/MainTemplate.dwt"
    codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Hammocks Community School</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" --><!--
    InstanceEndEditable -->
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <table width="100%" border="0" cellpadding="0">
    <tr>
    <th height="101" colspan="3" scope="row"><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','1000','height','100','title','Title','src','../Flash_TopTitle','quality','high','plug inspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash','movie','../Flash_TopTitle'
    ); //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="1000" height="100" title="Title">
    <param name="movie" value="Flash_TopTitle.swf" />
    <param name="quality" value="high" />
    <embed src="Flash_TopTitle.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="1000"
    height="100"></embed>
    </object></noscript></th>
    </tr>
    <tr>
    <th height="23" colspan="3"
    scope="row"> </th>
    </tr>
    <tr>
    <th width="22%" height="759"
    scope="row"> </th>
    <td width="60%"> </td>
    <td width="18%"> </td>
    </tr>
    <tr>
    <th scope="row"> </th>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    </body>
    <!-- InstanceEnd --></html>
    Thank you so much for you time guys, please respond if you
    know whats up this is really killing me!!!!!

    make the path Site Root relative.
    either insert it again, and change the pulldown in the
    "browse to file"
    dialog box; or hand edit the code as follows:
    >
    d/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../Flash_TopTitle'
    change end to '/Flash_TopTitle' );
    <param name="movie" value="../Flash_TopTitle.swf" />
    change to
    <param name="movie" value="/Flash_TopTitle.swf" />
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • URL, email links in Flash swf files shows up in search engine

    Hi, can you please help? I post this problem a while ago.
    My problem is: I developed a website in Flash 8 on the Mac.
    The Flash swf file is displayed via Dreamweaver doc. When I do a
    search and, when the site is found in Google, all the links used in
    the Flash swf file appears in the snippets below the main title. I
    would like to know where I'm going wrong, and how can I prevent
    Google from displaying the URL and email details.
    Do I need to use a preloaded, or do I need to put the Flash
    swf movie file in a table in Dreamwever.
    Many thanks,
    Blue_Mac

    >I don't know how this is happening then. Search engine
    spiders don't
    >read through compiled files like Flash.
    Thanks, this is reassuring. Although it seems to have done
    just that.
    The following action script is where the details are coming
    from. I've used the name 'whatever" as an example. I don't mind the
    URLs on view as much as I mind my email address because of security
    issues.
    on (release) {
    //Goto Webpage Behavior
    getURL("mailto:[email protected]","_blank");
    //End Behavior
    I'll check my files again to see if I've miss anything out -
    I have done this so many times already.
    Regards,
    Blue_Mac

  • Flash Player not showing SWF movie

    Hi Everyone-
    First off thank you for anyone that is willing to send advise my way.
    I am using Windows 7 - Indesign CS5
    I have created a SWF movie exported from Flash with playback component.
    I have imported that SWF into Indesign CS5 and created an interactive SWF with a SWF movie embedded.
    This SWF works beautifully on my machine and others that have access to the same server - however when I remove the file with Resources foldes to another machine/ location the SWF movie will not display. It DOES display the playback component (looping continuously)  but NO SWF movie.
    My guess is that I am missing a file in the Resources folder but I am clueless as to what additional file I could be missing.
    Thanks for your help!

    Thanks! I posted my issue there first......no one has an answer as of yet.

  • Accessing movie clip from flash swf file

    I have the situation where in flash i created a simple
    animated movie clip with few stop() commands on timeline. Movie
    clip consists of simple animatio played on roll over and on roll
    out which is controlled using actionscript. I loaded movie clip
    into flash using [embed] tag but actionscript code is stripped,
    there is no stop() action so movie clip loops continously. I guess
    that's normal behaviour for embedded flash swf files but i would
    like to know is there a way to still achieve that? Can i load swf
    some other way with its actionscript and then control movie clip
    from flex?

    You need the FLA's to open in Flash.
    You could download the free trial of a flash decompiler
    (www.sothink.com). The free trial won't give you actionscript, but
    it will give you all of the art in the swf.

  • Swf movie starts before preloader is finished

    Hi,
    I tried to implement a simple preloader for an existing swf movie. I've created a new flash document and added the Loader as well as a ProgressBar component. In the action script of the key frame 1, I implemented the following:
    import mx.controls.ProgressBar;
    loader.contentPath = "myMovie.swf";
    pBar.setStyle("themeColor", "0xF49417");
    pBar.setStyle("color","0x3D566F");
    pBar.labelPlacement = "bottom";
    pBar.label = "LOADING %3%%"
    pBar.scaleY = 150;
    pBar.conversion = 1024;
    pBar.source = loader;
    pBar.mode = "polled";
    loader.load();
    The problem is now that the movie starts playing (i.e. its sound) before the progress bar is completely finished. This usually happens around 80%. How can I avoid that the movie starts before the progress bar reaches 100%?
    Thanks,
    Patrik

    Thanks for your replay! I added an empty keyframe to the first scene of the existing flash movie with a stop() action in it. Additionally, I modified the preloader with an action listener that is called in case the movie is loaded completely. The action script of the preloader does now look like follows (without sytle settings):
    import mx.controls.ProgressBar;
    loader.contentPath = "myMovie.swf";
    var pbListener:Object = new Object();
    pbListener.complete = function(evt_obj:Object) {
    trace("movie loaded");
    play();
    pBar.addEventListener("complete", pbListener);
    pBar.source = loader;
    pBar.mode = "polled";
    loader.load();
    It seems now that this play() does not reference to the swf movie (myMovie.swf) with the stop in the first frame since the movie does not start playing after its loaded. How do I reference the play action to the loaded movie?
    Thanks,
    Patrik

  • Two flash swf playing

    Hello All
    I have a strange problem when I publish my flash file I get the HTML code when I put this in my document, it plays the flash swf file in two places one above the other. One centered where it belongs and the other above it and to the left. It happens when I put this code in. Any Ideas? thanks I put this code in between the <head> and </head>
    thanks
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
        var version;
        var axo;
        var e;
        // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
        try {
            // version will be set for 7.X or greater players
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
            version = axo.GetVariable("$version");
        } catch (e) {
        if (!version)
            try {
                // version will be set for 6.X players only
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                // installed player is some revision of 6.0
                // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                // so we have to be careful.
                // default to the first public version
                version = "WIN 6,0,21,0";
                // throws if AllowScripAccess does not exist (introduced in 6.0r47)       
                axo.AllowScriptAccess = "always";
                // safe to call for 6.0r47 or greater
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 4.X or 5.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 3.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = "WIN 3,0,18,0";
            } catch (e) {
        if (!version)
            try {
                // version will be set for 2.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                version = "WIN 2,0,0,11";
            } catch (e) {
                version = -1;
        return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
        // NS/Opera version >= 3 check for Flash plugin in plugin array
        var flashVer = -1;
        if (navigator.plugins != null && navigator.plugins.length > 0) {
            if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                var descArray = flashDescription.split(" ");
                var tempArrayMajor = descArray[2].split(".");           
                var versionMajor = tempArrayMajor[0];
                var versionMinor = tempArrayMajor[1];
                var versionRevision = descArray[3];
                if (versionRevision == "") {
                    versionRevision = descArray[4];
                if (versionRevision[0] == "d") {
                    versionRevision = versionRevision.substring(1);
                } else if (versionRevision[0] == "r") {
                    versionRevision = versionRevision.substring(1);
                    if (versionRevision.indexOf("d") > 0) {
                        versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
        // MSN/WebTV 2.6 supports Flash 4
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
        // WebTV 2.5 supports Flash 3
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
        // older WebTV supports Flash 2
        else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
        else if ( isIE && isWin && !isOpera ) {
            flashVer = ControlVersion();
        return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
        versionStr = GetSwfVer();
        if (versionStr == -1 ) {
            return false;
        } else if (versionStr != 0) {
            if(isIE && isWin && !isOpera) {
                // Given "WIN 2,0,0,11"
                tempArray         = versionStr.split(" ");     // ["WIN", "2,0,0,11"]
                tempString        = tempArray[1];            // "2,0,0,11"
                versionArray      = tempString.split(",");    // ['2', '0', '0', '11']
            } else {
                versionArray      = versionStr.split(".");
            var versionMajor      = versionArray[0];
            var versionMinor      = versionArray[1];
            var versionRevision   = versionArray[2];
                // is the major.revision >= requested major.revision AND the minor version >= requested minor
            if (versionMajor > parseFloat(reqMajorVer)) {
                return true;
            } else if (versionMajor == parseFloat(reqMajorVer)) {
                if (versionMinor > parseFloat(reqMinorVer))
                    return true;
                else if (versionMinor == parseFloat(reqMinorVer)) {
                    if (versionRevision >= parseFloat(reqRevision))
                        return true;
            return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){   
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":   
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    thanks

    Here is the code that goes to the first table. If you put both sets of code together it will be from the start to the second table. I can add this code to the html file with no problem I only have a problem when the other code is added. I also have a problem sometimes using <noscript> </noscript>
    So in all this code I do not see where the flash swf file is being call twice. any Ideas.
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!--
    99
    -->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0',
            'width', '766',
            'height', '350',
            'src', '3868-1',
            'quality', 'high',
            'pluginspage', 'http://www.adobe.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'window',
            'devicefont', 'false',
            'id', '3868-1',
            'bgcolor', '#ffffff',
            'name', '3868-1',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', '3868-1',
            'salign', ''
            ); //end AC code
    </script>
    <table width="766" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="766" height="350" id="3868-1" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="3868-1.swf" />
        <param name="quality" value="high" />
        <param name="bgcolor" value="#ffffff" />   
        <embed src="3868-1.swf" quality="high" bgcolor="#ffffff" width="766" height="350" name="3868-1" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>
    </noscript>
        </td>
      </tr>
    </table

  • RH 7 - How can I get .swf movies to work inside CHM output on Windows 7

    Hi RHelpers,
    I'm using RoboHelp Html (RH 7, latest patch) on my Win 7 64-bit machine to provide a HtmlHelp (CHM) output.
    Now that we're close to releasing, I've been doing some testing, and I've noticed that my SWF movie files do not play inside of Windows 7 when viewing them inside of the CHM file. It keeps asking to install the Adobe Flash Player. But I've already clicked Yes several times to that message, and it still doesn't play the file. I've even manually downloaded and installed it as an administrator, restarted my system and still no go. It just shows a red X in the container where the movie should be playing.
    However, viewing the same topic inside of RH's preview window (or inside a browser) seems to work fine. Also, I've copied and pasted the problem CHM onto a virtual machine running 32-bit Vista, and the movies display fine there. This tells me it's something to do with how how compiled files are handled in 64-bit environments.
    Has anyone else experienced this? Any solutions out there?

    I see the answer here:
    http://forums.adobe.com/thread/781427?tstart=2
    Also I verified that our software does use the 32-bit hh.exe so I'm only seeing this when running the help by itself, outside of our software. That's good news.

  • 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.

  • Can an swf movie be opened on a specific frame?

    When I call up an Flash-generated swf movie in its own
    browser window via a navigation bar button, it always open on its
    first frame. Is there a way to tell the browser in conjunction with
    the getURL command to open at a specific frame other than frame 1?
    I can't find an Actionscript code sample that allows this while
    using getURL. Or is there some other way -- e.g. appending the swf
    file with frame number in its HTML page in some way, using
    Javascript, FSCommand, etc?
    Jody

    Maybe this will help
    http://www.adobe.com/devnet/flash/articles/deep_linking.html

  • It's possible to open an Flash Lite movie locally from the browser

    Hi there,
    I'm trying to open an swf movie (Flash Lite) in the Nokia
    s603rd Browser like this "file:///e:\documents\movie.swf" and it
    gives a msg error "Web memory full. Close some applications and try
    again".
    I open an html file in the same way and works fine -
    "file:///e:\documents\page.html".
    If I request the swf file from an HTTP server it works fine.
    Can anyone explain wy localy the Web browser cannot open a
    local swf file?
    Fernando

    I would think you can bring the .mov into the timeline and make your split and add your pictures. You will have to adjust the audio obviously.
    Good luck.

  • 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.

Maybe you are looking for