MM.event has no properties

I am getting the dreaded "MM.event has no properties" error warning, and Dreamweaver CS3 will not copy or paste.
I'm using Dreamweaver CS3 9.0, on a MacBook Pro running OS X 10.5.6. I have 4 gigs of RAM. (Fireworks CS3 is working fine.)
I can't reinstall, by the way, because my organization is out of our office due to renovations, and the software box that has CS3 in it has gone into cold storage until our office is reopened.
If someone can help me, I'd really appreciate it, because I've got a job that needs to get done in the next couple of days, and not having copy/paste is a huge pain in the ***.
Thanks.

I appreciate the pointer to the Adobe info, but none of this worked.
I'm going to have to buy another copy of Dreamweaver, because I just don't have time to figure out how to fix this.
By the way, if anyone from Adobe is reading this, I have a VERY low opinion of your customer support. Too bad -- this is the way companies damage their reputations, in some cases in ways that can't easily be fixed. Just ask Dell. . . .

Similar Messages

  • TypeError: MM.Event has no properties

    I am trying ot cut and paste html code from one page to
    another but I keep getting the following error:
    While executing get CurrentValue in AddressURL, The following
    JavaScript error(s) occured:
    MM.event has no properties
    How do I go about fixing this problem.

    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=dd550772
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "reggiemac" <[email protected]> wrote in
    message
    news:emvfdr$6kq$[email protected]..
    >I am trying ot cut and paste html code from one page to
    another but I keep
    > getting the following error:
    >
    > While executing get CurrentValue in AddressURL, The
    following JavaScript
    > error(s) occured:
    >
    > MM.event has no properties
    >
    > How do I go about fixing this problem.
    >

  • FABridge.flash has no properties

    I'm in the process of building a controller swf application
    that I can embed in html type applications (like jsf) and then use
    the controller to communicate between a flex application and
    "launched" jsf applications. I'm using the FABridge to
    facilitate the comunication betweem the html based
    application and the swf controller.
    All appears to work fine the first time, but on subsquent
    invocations I get a type error : FABridge.flash has no properties.
    This happens in firefox and Internet Explorer.
    Here's the chain of events:
    1) Start by Flex launcher applicaton
    2) Launch a simple htmp app that has my swfcontroller
    embedded in it.
    3) the swf controller initializes and fetches login
    credentials from the Launcher in step1.
    4) the simple htmp app displays the login credentials.
    5) I close the htmp page launched in step 2
    6) Launch again, get the tyype error: FABridge.flash has no
    properties
    Any help would be appreciated.
    Thanks
    Jim Kohn

    I have similar experience. Not sure how is the bridge object
    created/initialized. I tried something like this in the mxml:
    <fab:FABridge xmlns:fab="bridge.*" bridgeName="myBridge"
    />
    and this failed as well:
    var flexApp = FABridge.myBridge.root();
    The Javascript exception appears to indicate that the bridge
    object was not initialized.
    Any help from the community to resolve this is highly
    appreciated. Thanks.
    FYI, am using the IE6 + Flash Player 9. Had similar issue
    with Firefox 2.0.0.1.
    Thanks.
    FYI, this is the full HTML:
    <!-- saved from url=(0014)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title></title>
    <script src="AC_OETags.js"
    language="javascript"></script>
    <style>
    body { margin: 0px; overflow:hidden }
    </style>
    <script language="JavaScript" type="text/javascript"
    src="bridge/FABridge.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 9;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // -->
    var flexApp = FABridge.myBridge.root();
    var chart = flexApp.getPanel().getChildByName("chart");
    var dp = [];
    for(var i=0; i < 30; i++) {
    dp.push( {apples: Math.random()*100, oranges:
    Math.random()*100} );
    chart.setDataProvider(dp);
    </script>
    </head>
    <body scroll="no">
    <script language="JavaScript" type="text/javascript"
    src="history.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to
    start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values defined in globals
    var hasRequestedVersion =
    DetectFlashVer(requiredMajorVersion, requiredMinorVersion,
    requiredRevision);
    // Check to see if a player with Flash Product Install is
    available and the version does not meet the requirements for
    playback
    if ( hasProductInstall && !hasRequestedVersion ) {
    // MMdoctitle is the stored document.title value used by the
    installation process to close the window that started the process
    // This is necessary in order to close browser windows that
    are still utilizing the older version of the player after
    installation has completed
    // DO NOT MODIFY THE FOLLOWING FOUR LINES
    // Location visited after installation is complete if
    installation is required
    var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
    var MMredirectURL = window.location;
    document.title = document.title.slice(0, 47) + " - Flash
    Player Installation";
    var MMdoctitle = document.title;
    AC_FL_RunContent(
    "src", "playerProductInstall",
    "FlashVars",
    "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"" ,
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "testPrj1",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "testPrj1",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.adobe.com/go/getflashplayer"
    } else if (hasRequestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
    AC_FL_RunContent(
    "src", "testPrj1",
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "testPrj1",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "testPrj1",
    "flashvars",'historyUrl=history.htm%3F&lconid=' + lc_id
    + '%3F&bridgeName=myBridge'+'',
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.adobe.com/go/getflashplayer"
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be
    placed here. '
    + 'This content requires the Adobe Flash Player. '
    + '<a href=http://www.adobe.com/go/getflash/>Get
    Flash</a>';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    id="testPrj1" width="100%" height="100%"
    codebase="
    http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
    <param name="movie" value="testPrj1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#869ca7" />
    <param name="flashvars" value="bridgeName=myBridge"/>
    <param name="allowScriptAccess" value="sameDomain" />
    <embed src="testPrj1.swf" quality="high"
    bgcolor="#869ca7"
    width="100%" height="100%" name="testPrj1" align="middle"
    play="true"
    loop="false"
    quality="high"
    allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.adobe.com/go/getflashplayer">
    </embed>
    </object>
    </noscript>
    <iframe name="_history" src="history.htm" frameborder="0"
    scrolling="no" width="22" height="0"></iframe>
    </body>
    </html>

  • ActiveDocument has no properties

    Hello all,
    I have a conundrum that I've run into a road block with.
    I have a bqy that was originally created without a dashboard. Then one of our contractors created a round tab dashboard via the DS. And a follow-up contractor modified the code manually since he wasn't comfortable with the studio.
    I had to "start over" from the original bqy without a dashboard. I successfully did that. And uploaded and ran the file as a job on the workspace. It process completely but when it attempts to finish it fails. And it processes in the IR client perfectly. But now I'm noticing that when it's saved, "Script(1):ActiveDocument has no properties" is written to the console.
    The conundrum is that 1) this doesn't happen when the/a first bqy is open and then closed after any modification; 2) this doesn't happen if we choose "No" when prompted to save, only in the last eighth of a second after choosing yes, prior to close; 3) this doesn't happen for files which do not have dashboards (of course).
    To test the latter, I also saved an unchanged copy of the "Sample_fr_esm.bqy" and closed it. Same console write. So I would presume that rules out any coding created during the rebuild of the prior document.
    Has anyone experienced this before? Does anyone have any idea what's happening? And more importantly, the prescribed solution.

    I believe that I may be "on it's trail". The error, that is...
    I opened the custom file and exported the script. All seemed fine.
    So I back tracked through the events and once again deleted all code in each. Confirmed, same result.
    But one thing that I noticed was that both, the custom dashboard and the sample file provided with the install [Sample_ja_esm.bqy and other languages], all had script which pointed to the "Home" section on open. So I checked the OnActivate for that section. When I saved the file with the OnDeactivate script [ActiveDocument.Qiq_clsGlobals.Qiq_base_Frame_OnDeActivate(this)], commented out.
    The previous console write with the ActiveDocument error did not appear.
    I see "Qiq_clsGlobals" in the tree. But not "Qiq_base_Frame"
    It seems like this is part of the template's creation.
    The OnActivate code is [if (ActiveDocument.Qiq_blnTemplateInitialized){ ActiveDocument.Qiq_clsGlobals.Qiq_base_Frame_OnActivate(this)}
    Does anyone have any ideas or whether this code is needed in for debugging or further scripting?
    Thanks

  • ECC 50 DI Installation error-FJS-00003  TypeError: f has no properties

    Dear Experts,
    Earlier we had local installtion of ECC50 (DEV/TEST and PRD-CI) with SQL2000 DB, WIN2K3 EE OS.
    We want to install one new application server i.e. PRD-Dialog Instance, so we have kept all the systems on domain (changed from Local to Domain).
    We performed below activities to put all systems on same Domain.
    1. Down the systems
    2. Changed Domain
    3. Created SAP users SAP<sid> and sapservice<sid> on DC with Global&local admin rights
    4. Changed owner of both SAP services with newly created domain SAP user SAPSERVICE<sid>
    5. Updated Host file entries
    6. started Servers with Domain user <sid>adm , it is up and running.
    Now we logged in with new application server with <sid>adm domain user and started Dialog instance installation thru sapinst.
    After inserting installation drive, in next step it throws below error.
    INFO[E] 2008-01-28 16:07:16
    File system export (share) saploc does not exist.
    ERROR 2008-01-28 16:07:21
    FJS-00003  TypeError: f has no properties (in script InstallationScript_159, line 9500: ???)
    Please revert back with valuable inputs.
    Is there any steps missing to perform?
    Regards,
    Rakesh.

    Hello Manoj,
    Thank for your reply. I have installed JDK 1.4.2_12 version with JAVA_HOME env rightly set in the path as without which, i wouldnt have even gotten the installation master screen(Gui).
    Any other workaround do u see?

  • How to avoid the event has been repeated many times in the background

    Application, the main screen is divided into two containers:left and  right container,
    The right side of the container is divided into two containers:top and  bottom container,
    There is a button in the left container.
    Click the button, the container at lower right will using ModuleManager  load Module,  The following container load of the right of the screen  has been monitoring the container above the action.
    Problem:
    When you click the button repeatedly to load the container in the lower  right, it will create multiple instances, and can not be freed  immediately. When the above container do an action or event, there are  multiple instances of monitoring exist.
    The background will be repeat the action or event many times.
    How to avoid the event has been repeated many times in the background?
    Thanks

    Flex harUI
    multiple instances of a mxml, maybe ?

  • Document array has no properties

    Why doesn't DW8 like document arrays assigned to variables?
    Using the syntax,
    formInput = document.getElementsByTagName("input")
    Returns an error saying "formInput has no properties."
    Here's the full example:
    var dom = dw.getDocumentDOM();
    // get the current document's SKU_Condition meta tag
    var skuCondMeta = dom.getElementsByTagName("meta");
    for ( counter = 0; counter < skuCondMeta.length;
    counter++)
    if (skuCondMeta[counter].name == "SKU_Condition") // so far
    so good
    // get dom of the extension html form and assign the sku
    cond to the input field value
    /* why doesn't this code work?
    var formInput = document.getElementsByTagName("input");
    for ( iter = 0; iter < formInput.length; iter++)
    if (formInput[iter].name == "sku_cond")
    formInput[iter].value = skuCondMeta[counter].content;
    /* instead, I have to do this */
    for ( iter = 0; iter <
    document.getElementsByTagName("input").length; iter++)
    if (document.getElementsByTagName("input")[iter].name ==
    "sku_cond")
    document.getElementsByTagName("input")[iter].value =
    skuCondMeta[counter].content;
    Thanks for the help!
    -Scott

    I'm trying to use a calendar in my jsp pages. The code
    of that calendar is in a js file and is writen in
    JavaScript. I call the function from a html tag:
    <input type="text" name="date" id="date">
    Click
    here to enter a date
    In the js file there is a function
    show_calendar(textfieldname, dir)
    and lines
    var txtboxObj = textfieldname;
    and
    document.getElementById(txtboxObj).value =
    getdate(d,m,y);
    My problem now is that when I use Netscape 7.01 the
    calendar is not passing data to the input field in the
    parent window and I get the message:
    Error: document.getElementById(txtboxObj) has no
    properties
    In IE it is working with no problems.Obviously a JS problem. Go to a Javascript forum. You will be more likely to find people who know.

  • IPhoto Events has restored every photo I have ever deleted. How can I get rid of them?

    I have been away from my Mac for 3 weeks and I log into iPhoto today to find that every Event has restored all my previously deleted photos - this means tens of thousands of photos in total and would take weeks to go though and delete again. Is there some way of deleting them? Thanks!

    Restore from your back up.

  • 'TypeError: dw.getDocumentDOM() has no properties' message keeps coming up in dreamweaver? Help?

    Using Dreamweaver CS5.5 on a Mac.
    My error message:
    While executing DW_WordWrap checked in toolbars.xml, the following JavaScript error(s) occurred:
    TypeError: dw.getDocumentDOM() has no properties.
    Any help on what I can do to fix this??

    Try steps 4 and 12 here.
    http://helpx.adobe.com/dreamweaver/kb/troubleshoot-javascript-errors-dreamweaver-cs4.html# main_Troubleshooting_steps

  • Javascript: 'has no properties' error

    Stumped by javascript once again. Can anyone see why I'm
    getting a 'mybuton
    has no properties' error in this script:
    javascript:
    var mybutton = document.getElementById('lnkBtn_delete');
    var oldonclickfunction = mybutton.onClick; //old postback
    method
    mybutton.onClick=function() {
    if(confirm('Are you sure you want to delete this record?'))
    {oldonclickfunction();}
    else{ return false;}
    HTML:
    <a id="lnkBtn_delete"
    href="javascript:__doPostBack('lnkBtn_delete','')">
    <img
    src="/assets/admin_interfaces/assets/icon_dbDelete.gif"
    border="0">Delete This Bio
    </a>
    I'm hoping this is just a javascript issue, but do note that
    this is an
    ASP.net app as well, so, it might have to do with the
    postback function as
    well.
    -Darrel

    darrel wrote:
    > Stumped by javascript once again. Can anyone see why I'm
    getting a 'mybuton
    > has no properties' error in this script:
    "mybuton", typo?
    >
    > javascript:
    >
    > var mybutton = document.getElementById('lnkBtn_delete');
    > var oldonclickfunction = mybutton.onClick; //old
    postback method
    > mybutton.onClick=function() {
    > if(confirm('Are you sure you want to delete this
    record?'))
    > {oldonclickfunction();}
    > else{ return false;}
    > }
    What are you trying to do here?
    mybutton doesn't exist until 'lnkBtn_delete' is loaded onto
    the page.
    __doPostBack(), function definition?
    You have a URL?
    Mick
    >
    > HTML:
    >
    > <a id="lnkBtn_delete"
    href="javascript:__doPostBack('lnkBtn_delete','')">
    > <img
    src="/assets/admin_interfaces/assets/icon_dbDelete.gif"
    > border="0">Delete This Bio
    > </a>
    >
    > I'm hoping this is just a javascript issue, but do note
    that this is an
    > ASP.net app as well, so, it might have to do with the
    postback function as
    > well.
    >
    > -Darrel
    >
    >

  • TypeError: matches has no properties

    Encountered this when trying to export CSS and Images.  What does it mean?  See attached for your referrence.
    Thanks in advance!

    Well it's not fireworks, but google led me here... same issue with Dreamweaver, getting, "Translate error: TypeError: matches has no properties". I googled that phrase, and found this, saw it was unanswered and thought that my addition may help someone do the problem solving. Maybe it is a similiar issue do to the fact they are both image editing packages... they are both Adobe... So it makes me wonder what is the commonality in this? I'm not using any custom web fonts. Hmmmmmm. The link to the file I'm working on is: americanjunkieaz.com/index2.html. Any help is appreciatedc and sorry to cross app post; but it seemed relevant do the the commonalities afore mentioned. Thanks.

  • TypeError :  air has no properties

    Hi guy!
    I tried to use trace function of air object
    My html file is :
    <html>
    <head>
    <title>Sandbox Bridge Test</title>
    <script type="text/javascript" src="AIRAliases.js"></script>
    <script type="text/javascript">           
                function doLoad() {
                try {             
                  air.trace("Coucou");
                 catch (e)
                 {alert(e)}
            </script>
    </head>
    <body onload="doLoad();">
    <h3>Application Sandbox Content</h3>
    <hr />
    </body>
    </html>
    But the eval function prints "TypeError :  air has no properties", what's wrong ?

    Have you included the AIRAliases.js file in the same directory as the HTML file? They should both be in the main application directory (or a subdirectory).

  • TypeError: s has no properties

    Hello Everyone
    I have FlashChat with Voice running. Ever since I run the
    voice chat, my server just randomly freezes and stops responding.
    This seems to happen when the voice chat gets 3 or more users. So I
    checked the log and it was giving this error
    Sending error message: C:\Program Files\Macromedia\Flash
    Media Server 2\scriptlib\components\connectionlight.asc: line 100:
    TypeError: s has no properties
    Sending error message: Failed to execute method (ping).
    What does that mean? How can I fix this problem?
    Thanks

    I get the same problem. The only thing I could do is keep hitting space bar (to close the message) while also trying to switch to another open tab by clicking on it.
    If you can get the tab open inbetween the message box flashing up, then it will go away

  • TypeError: str has no properties

    Whenever I try and export to CSS my Fireworks page containing a TextField form either HTML or Advanced HTML Common Library I get and error:
    TypeError: str has no properties.
    Im using Fireworks CS4.
    any help or suggestions would be greatly appreciated.

    i think i may have found the problem. i installed the HTML Enhanced Common Library after i did my CS4 install. i followed the instructions and renamed my CssLayers.htt to old_CssLayers.htt and then installed the new CssLayers.htt in the CS4 Update file that i downloaded. i completed the remaining steps in the installation.
    however, i went back and replaced the new CssLayers.htt that i donwloaded with my original CssLayers.htt that i had saved as old_CssLayers.htt and the problem appears to have gone away.
    my question now is how do i add the HTML Enhanced Common Library to my current Fireworks CS4 which is 10.0.3.011 ??
    thanks

  • GetData(): rows has no properties

    Hello,
    I've got the following code:
    function Update(id) {
    var observer = new Object;
    var rows = null;
    var chat = new
    Spry.Data.XMLDataSet("/xmldataset.php?liste=x&id=" + id,
    "/data/field", {useCache:false});
    observer.onDataChanged = function(dataSet, data) {
    rows = chat.getData();
    chat.addObserver(observer);
    chat.loadData();
    for (i = 0; i < rows.length; i++) {
    document.GetElementById('xyz').innerHtml += '<span>' +
    rows
    ['field'] + '</span><br />';
    but I alway get the error:
    rows has no properties (for (i = 0; i < rows.length;
    i++)). What wrong? Thanks for your help

    I was having problems with this and I need to add an observer
    to the data set to call getData once the data is loaded. Try this:
    var chat = null;
    var rows = null;
    function Update(id)
    chat = new
    Spry.Data.XMLDataSet("/xmldataset.php?liste=x&id=" + id,
    "/data/field", {useCache:false});
    chat.addObserver(isDataLoaded);
    chat.loadData();
    function isDataLoaded(notificationType, dataSet, data)
    if (notificationType == 'onPostLoad')
    rows = chat.getData();
    showData();
    else if (notificationType == 'onLoadError')
    alert('Error loading data.');
    function showData()
    for (i=0;i<rows.length;i++)
    document.GetElementById('xyz').innerHtml += '<span>' +
    rows
    .field + '</span><br />';

Maybe you are looking for

  • Is there a way of downloading DVDs onto my IPod without burnig it?

    I want to put my DVDS onto my ipod, but through itunes rather than burning it, as i know that you can do it with music. Is this possible? (legaly) Or will i have to buy it?

  • Apple Mobile Device Service not installed

    I have not been able to install the Apple Mobile Device Service, so iTunes is not recognizing my iPod. I have uninstalled iTunes several times, including manual deletion of all directories (after making backups of the library files). The service just

  • Acrobat Pro XI V11.0.2 - Word 2010 to PDF conversion fails to generate header text

    Hello, Following the recent update to V11.0.2, the Acrobat PDF converter for Word 2010 fails to generate the output document correctly. It misses out the text box part of the Word header. However, using Acrobat XI via the "Print to PDF printer" appea

  • 10.4.8 connect to XP Pro (SP2) problem error-50

    I hit cmd-K in Finder, entered smb://ip.ip.ip.ip. After awhile, a box pops up telling me "unexpected error occured -50" (or something like that, its in Chinese). It used to work fine before I resinstalled the PC. I am quite sure I've covered all the

  • Case structure help

    Rusty with labview and need help. Each value (13 total) from an array is selected one at a time to form part of a command which is sent to test equipment. The first frame of the stacked sequence structure should execute all of the array values then m