Ask a Question related to Macromedia Flash Player, Design and Development.

  1. #1

    Default Javascript error

    Hi,

    I recently downloaded the Photo Album 2 extension and each time I try to use
    it and get a Javascript error message that it cannot load.

    I'm using it in DM8 but the same error occurs in DMX2004. I've tried
    reinstalling it but it still wont work.

    Any ideas would be appreciated.

    Thanks

    David

    borochov Guest

  2. Similar Questions and Discussions

    1. Error with Javascript
      Hello, is there anyone that can assist me with this problem, it has been a month or two now and no one has answered me...this matter is important to...
    2. JavaScript error(s)
      Error Message- While executing Browse_Action_Edit command in cctoolbars.xml the following JavaScript error(s) occurred: exception throw in native...
    3. Yet another Javascript error....
      I have no extensions installed. Here is the culprit. I get this constantly, any ideas how to get rid of this?? I have Win 98, mx 6.1 The...
    4. Another Javascript error
      Can someone troubleshoot this page, and let me know what the javascript error means? It is on Line 70 character 2. This is in the middle of the...
    5. New JavaScript Error
      I have been using MX pretty much since it came out and it has suddenly developed a new error message. Whenever I try to update files based on any...
  3. #2

    Default Re: Javascript error

    Hi,

    I get a JavaScript error too. I've posted it
    [url]http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=190&thre[/url]
    adid=1065705&enterthread=y

    Am not sure if its similar to your error msg.

    tabasco1 Guest

  4. #3

    Default Javascript error

    This script basically determines what version of flash player you are using,
    this code works with IE browser. Similar code can be found in msdn website.
    [url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/behaviors/ref[/url]
    erence/methods/getcomponentversion.asp .
    This attached code works with all versions of flash player except from version
    8. I am not sure if its a bug.

    <HTML xmlns:IE>
    <HEAD>
    <STYLE>
    @media all {
    IE\:clientCaps {behavior:url(#default#clientcaps)}
    }
    </STYLE>
    </HEAD>

    <BODY>
    <IE:clientCaps ID="oClientCaps" />

    <SCRIPT>


    var id1="{D27CDB6E-AE6D-11CF-96B8-444553540000}"; // id for macromedia flash
    //Check if component is installed.
    var flash1 = oClientCaps.isComponentInstalled(id1,
    "ComponentID");
    alert("Macromedia flash installed :" + flash1);

    //Get the version no of the component.
    var flash2 = oClientCaps.getComponentVersion(id1,
    "ComponentID");
    alert("Version Number of flash :" + flash2);
    </SCRIPT>

    Test
    </BODY>

    ganand28 Guest

  5. #4

    Default Javascript error

    When I try to copy or paste text in Contribute I get this error:
    "While executing DWMenu_Edit_Cut command in ccmenus.xml, the
    followingJavascript error(s) occured:
    TypeError: MM.event has no properties:

    cbpayne Guest

  6. #5

    Default Javascript Error

    The attached line of javascript yields a "Permission denied" error when I
    cancel or publish an edited page containing this script. This line is part of
    breadcrumb function which works without error in both IE and Mozilla. Why does
    Contribute generate this error?

    var crumbs = location.pathname.split('/');

    thombr Guest

  7. #6

    Default Re: Javascript Error

    Still not sure what causes the error in Contribute, but here's my solution
    (which is better coding practice anyway): wrap the code in a try...catch block.




    function breadcrumbs(indexPage)
    {
    try
    {
    var crumbs = location.pathname.split('/');

    if(crumbs)
    {
    var path = '/';
    var output = '<a href="/home.aspx">Home</a> &gt; ';

    if(indexPage) crumbs.length--;

    for(i = 1; i < crumbs.length - 1; i++)
    {
    path += crumbs[i] + '/';
    output += '<a href="' + path + '">' + crumbs[i] + '</a> &gt; ';
    }
    output += document.title;
    document.write(output);
    }
    }
    catch(e){}
    }

    thombr Guest

  8. #7

    Default JavaScript Error

    I get the following error in Dreamweaver when ever I open a cfm file
    with a recordset:

    "JavaScript error while loading Recordset.htm: Unable to open script
    file "C:\Program Files\Macromedia\Dreamweaver 8\Configuration\Server
    Behaviors\ColdFusion\Field Types.js"
    (error 2).

    the path to the file is correct. this error just started happening.
    anyone know what I can do?

    thanks

    fifi Guest

  9. #8

    Default Javascript Error

    Hi,

    I have recently made a change to a webpage and am trying to publish it
    but when I try to publish it I get the following error and then
    Contribute closes...

    While Executing Edit_Action_Publish command in cctoolbars.xml, the
    following Javascript error(s) occured:
    Exception thrown in native function.

    I would be grateful for any advice

    Regards

    Si
    simmysmith@googlemail.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139