Error in Internet Explorer with Muse

I have an error in Internet Explorer and cannot seem to find the resolve in your Q&A databases. It is: museJSAssert: Error calling selector function:Error: Invalid argument; I have gone thru this website for answers (looked at the code thru a code editor and any broken links as per mentioned in posted discussions)... This site is live right now, it works in Safari, Chrome and Firefox. NEED HELP ASAP PLEASE!
I have periods instead of dashes in the phone numbers... could this be it? OR some of the page links are not active yet... I am guessing at this point as I am relatively new to web/muse design. Any help would be fantastic! Thank you very much! Oh, the website address is www.rubarb.ca (yes, that is spelled correctly)... THANKS AGAIN!

I've just run into this error as well. It only occurs when you have loaded your SWF into cache and you refresh the page. This error does not occur if the user opens a new tab and visits the site (even if the cache has that SWF). Right now, I am stumped on how to resolve this issue without the help of Adobe. There is a critical site launch that depends on BitmapData to work properly.
Adobe, I will also be posting this in your bug system.

Similar Messages

  • I just replaced Internet Explorer with Firefox. I usa Outlook for my email. When I try to go to a link from an email a long thin message appears which says in part: "error occurred sending command to application"

    I just replaced Internet Explorer with Firefox. I usa Outlook for my email. When I try to go to a link from an email a long thin message appears which says in part: "error occurred sending command to application"

    Try:
    *http://kb.mozillazine.org/Windows_error_opening_Internet_shortcut_or_local_HTML_file_-_Firefox

  • SpyrData.js Unknown error in Internet Explorer

    Hello my most learned friends!
    I am having a problem in Internet Explorer with a page I'm
    developing. I'm using SpryData.js to import some XML data for a
    photo gallery. It works fine in Safari and Firefox 2 but displays
    nothing but an unknown error message at line 1178 in SpryData.js
    which is:
    if (!hasSpryContent)
    // Clear the region.
    rgn.innerHTML = ""; <--- line 1178
    Is there a way around this?
    Thanks.
    - Peter

    I found
    this
    post on the forum relating to sprydata.js and it got me
    thinking . . . maybe I've got a tag or an element that doesn't have
    an innerHTML. So I hunted for this tag like I hunt for my inner
    child and I found the problem.
    <script type="text/javascript"
    SPRYREGION:DETAILSREGION="DSDATA"> //emphasis mine
    Somewhere in the production cycle me inner child must have
    put that "spry:region" in by mistake. Sorry to raise a fuss. I
    learned something from this - let the adults do the coding and
    leave the inner children with the design.

  • Spry Validation Error in Internet Explorer

    Hi,
    I have a PHP form with Spry Validation for Textfields and Selction.
    The init part in the HTML form looks like this:
          var spryradioanrede = new Spry.Widget.ValidationRadio("spryradioanrede", {isRequired:true, validateOn:["change,blur"]});
           var sprytextfieldvorname = new Spry.Widget.ValidationTextField("sprytextfieldvorname", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldnachname = new Spry.Widget.ValidationTextField("sprytextfieldnachname", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldstrasse = new Spry.Widget.ValidationTextField("sprytextfieldstrasse", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldhausnummer = new Spry.Widget.ValidationTextField("sprytextfieldhausnummer", "none", {  validateOn:["change,blur"]});
           var sprytextfieldplz = new Spry.Widget.ValidationTextField("sprytextfieldplz", "none", {useCharacterMasking:true, pattern:"00000", validateOn:["change,blur"]});
           var sprytextfieldort = new Spry.Widget.ValidationTextField("sprytextfieldort", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldemail = new Spry.Widget.ValidationTextField("sprytextfieldemail", "email", { validateOn:["change,blur"]});
           var sprytextfieldvorwahl = new Spry.Widget.ValidationTextField("sprytextfieldvorwahl", "none", {validation:isNumeric,isRequired:false,  validateOn:["change,blur"]});
           var sprytextfieldrufnummer = new Spry.Widget.ValidationTextField("sprytextfieldrufnummer", "none", {validation:isNumeric, isRequired:false,  validateOn:["change,blur"]});
           var sprytextfieldausweisnummer = new Spry.Widget.ValidationTextField("sprytextfieldausweisnummer", "none", {validation:isValididentitycard,  validateOn:["blur"]});
           var sprytextfieldstaatsangehoerigkeit = new Spry.Widget.ValidationTextField("sprytextfieldstaatsangehoerigkeit", "none", {isRequired:true,  validateOn:["change,blur"]});             
           var spryselectfieldtag = new Spry.Widget.ValidationSelect("spryselectfieldtag", {isRequired:true, validateOn:["change,blur"]});
           var spryselectfieldmonat = new Spry.Widget.ValidationSelect("spryselectfieldmonat", {isRequired:true, validateOn:["change,blur"]});
           var spryselectfieldjahr = new Spry.Widget.ValidationSelect("spryselectfieldjahr", {isRequired:true, validateOn:["change,blur"]});
    When loading the page an error in Internet Explorer 8 occures:
    Error Details from IE:
    Benutzer-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Zeitstempel: Mon, 31 Aug 2009 08:54:38 UTC
    Meldung: 'this.input.defaultValue' ist Null oder kein Objekt
    Zeile: 1734
    Zeichen: 2
    Code: 0
    URI: http://.../SpryAssets/SpryValidationTextField.js
    When loading the page the first time it's not a big problem. But when the users enters some unvalid data the page lodes again and in the onload section from the body the function validateall is startet.
    function validateall()    {
                    status = 0;
                    status += spryradioanrede.validate();
                    status += sprytextfieldvorname.validate();
                    status += sprytextfieldnachname.validate();
                    status += sprytextfieldstrasse.validate();
                    status += sprytextfieldstrasse.validate();
                    status += sprytextfieldplz.validate();
                    status += sprytextfieldort.validate();
                    status += sprytextfieldemail.validate()
                    status += sprytextfieldvorwahl.validate();
                    status += sprytextfieldrufnummer.validate();
                    status += sprytextfieldausweisnummer.validate();
                    status += sprytextfieldstaatsangehoerigkeit.validate();
                    status += spryselectfieldtag.validate();
                    status += spryselectfieldmonat.validate();
                    status += spryselectfieldjahr.validate();
                    if (status < 15) {
                        return 0;
                    } else {
                        return 1;
    The error occurs again and the validation is not yet done. Which means, that the fields with problems will not be marked. When entering the field afterward and changing or blur everything works ok and the field is marked in red. Only the onload is not working.
    Any ideas, what the problem is?
    Thank
    Michael

    It seems to be an Error in Spry,
    Open the SpryValidationTextField.js
    find:
    Spry.Widget.ValidationTextField.prototype.reset = function() {
         this.removeHint();
         this.oldValue = this.input.defaultValue;
         this.resetClasses();
         if (Spry.is.ie) {
              //this will fire the onpropertychange event right after the className changed on the container element
              //IE6 will not fire the first onpropertychange on an input type text after a onreset handler if inside that handler the className of one of the elements inside the form has been changed
              //to reproduce: change the className of one of the elements inside the form from within the onreset handler; then the onpropertychange does not fire the first time
              this.input.forceFireFirstOnPropertyChange = true;
              this.input.removeAttribute("forceFireFirstOnPropertyChange");
         var self = this;
         setTimeout(function() {self.putHint();}, 10);
    and replace with:
    Spry.Widget.ValidationTextField.prototype.reset = function() {
         this.removeHint();
         this.oldValue = this.input && this.input.defaultValue ? this.input.defaultValue : "";
         this.resetClasses();
         if (Spry.is.ie) {
              //this will fire the onpropertychange event right after the className changed on the container element
              //IE6 will not fire the first onpropertychange on an input type text after a onreset handler if inside that handler the className of one of the elements inside the form has been changed
              //to reproduce: change the className of one of the elements inside the form from within the onreset handler; then the onpropertychange does not fire the first time
              this.input.forceFireFirstOnPropertyChange = true;
              this.input.removeAttribute("forceFireFirstOnPropertyChange");
         var self = this;
         setTimeout(function() {self.putHint();}, 10);
    To see if it helps

  • Error in Internet Explorer when loading from cache

    Hello all,
    I have this error in internet explorer when it's loading the swf from cache
    "ArgumentError: Error #2015: Invalid BitmapData.
        at flash.display::BitmapData()"
    If you have a solution for me I will appreciate.
    Thanks

    I've just run into this error as well. It only occurs when you have loaded your SWF into cache and you refresh the page. This error does not occur if the user opens a new tab and visits the site (even if the cache has that SWF). Right now, I am stumped on how to resolve this issue without the help of Adobe. There is a critical site launch that depends on BitmapData to work properly.
    Adobe, I will also be posting this in your bug system.

  • I get an "unable to connect" message yet I can connect and use Internet Explorer with no problem. I tried updating to Firefox4 and still get the same message. What do I do?

    I get an "unable to connect" message yet I can connect and use Internet Explorer with no problem. I tried updating to Firefox4 and still get the same message. What do I do?

    JungleTaxi Cabbie wrote:
    Csound1: iCloud: Configuring Mail with Mac OS X v10.6 or iOS 4
    Enter your Incoming Mail Server, User Name, and Password using the following settings:
    Incoming Mail Server: mail.me.com
    User Name: Your iCloud email address (excluding @me.com)
    Password: Your password
    Last Modified: Jun 27, 2013
    Maybe you should test these things before calling people out, because these settings do function perfectly well.
    iCloud is not supported on Snow Leopard or lower, why bother to mention it?
    The OP has an iCloud account, and that can not be opened without Lion or Mountain Lion (on a Mac), IOS5 or 6 (on an iPhone/iPad)
    The document I linked to is Apples documentation for iCloud on current devices,I don't care whether you believe that you know better than they do, but it will affect the people who follow your advice as it won't work
    JungleTaxi Cabbie wrote:
    Also, if you're not running Lion or Mountain Lion, there is no "Mail, Contacts & Calendars" prefpane.
    I never said that there was, perhaps you imagined it.

  • I am receiving an error message in Internet Explorer - Adobe Muse

    Hi
    I am receiving annoying error messages in Internet Explorer. How can I fix this?
    The website is currently live. View here: http://josephapartments.com
    to see error messages, view it in Internet Explorer.
    If needed, I can send you my muse file.
    - Jacqueline

    First, go back into the CPTX source file and check that LMS reporting is indeed turned on and that it is set to SCORM etc.
    If that is OK.  Republish and use the Zip option in the Captivate Publish dialog settings to zip the file.  Don't zip it yourself.
    If your LMS still rejects this zip file, upload to SCORM Cloud and see if it rejects it too.

  • When in firefox, I get a message that says no version of windows media player is supported. When I euse internet explorer with the same website, no error occurs. Why?

    I am working in the H&R Block website. When I get ready to take a test in their system, I get that error message described above. If I exit Firefox and use internet explorer instead there is no problem.

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does your device connect without that message now?

  • Search hover panel not showing up in Internet Explorer with custom master page

    The hover panel is not showing up in internet explorer.  I am using a custom master page and it works no problem in the other browsers.  When I fire up the debugger there is an error message when i hover over a search result item:
    I tried debugging the JavaScript but i am not sure what is going on with it.  
    Am I missing reference or something done like that?  It has to be something simple because I have been scratching my head for a while on this.  
    Any ideas?  
    Brad Wight

    Have you tried rendering the site in IE Compatability Mode?  Compatability Mode solves a lot of problems in this area because older versions of IE had a unique interpretation of HTML code.
    Start here: 
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-8
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Problems in IE -internet explorer- with Adobe web fonts embedded in EDGE compositions

    Hi again friends,
    For simplifying the problem: Im trying to create compositions, just some animated texts over video, using adobe web fonts in Edge. In this case using muse to insert them.
    Everything works fine, but after uploading the result compositions, they always work fine in Chrome or Mozilla, but they dont work always fine in Explorer (tested in diferent versions and OSs).
    Frustratingly, sometimes IE display the fonts correctly, some other times changes the font to arial or similar...
    Frustrating example: Two instances of the same composition (only text moving over mp4 video) and sometimes one work fine and the other is changed to arial, some other times both ok, some other both arial.... its crazy.. just refresh, and it changes!!
    If I create a page with only one composition (text over video) it works fine 90-95% of the times in IE. just refreshing... and after some good attempts.. the arial font apperar smiling to me!!!!!
    Any suggestion?
    What can I do?
    Checked with diferent systems using latest versions of Edge and Muse in my job, only in Windows systems.
    Sorry for my english, I hope is well explained...

    Hi,
    I have prepared for you a basic composition where the problem ALWAYS appear:
    The page uses 2 compositions created in edge, inserted in a Muse project via .oam file (note that publishing directly to web structure, the problems occurs too)
    1.- The upper element of the page is one composition with only ANIMATED TEXTS over a simple MP4 VIDEO BACKGROUND. The used font is -Fredoka One-
    This first  composition is inserted in the Muse Master page
    In the Muse index main page are the other 2 elements:
    2.- Above the first composition there is another Edge composition, that contains 4 video backgrounds with a title over each one. The font of each main title is -Fredoka One- too.
    3.-In the bottom there is inserted THE SAME composition than in the upper side of the page.
    Yuo can see it in http://www.comunicracia.es/
    As you can see, everything is OK using Chrome or Mozilla, BUT PLEASE TAKE A LOOK USING INTERNET EXPLORER.
    Using IE I can see every combination of problems with the font, BUT never the 3 elements Fine!!! (The tittles font is replaced by Arial frustratingly without any rule)
    (My experience FYI) In this composition I have prepared for you,  the bottom composition is usually (90%times) OK, the upper composition is usually (95%times) BAD, and the middle composition usually (70%times) BAD.
    If I publish only the first composition in the page, it works fine in IE 95% of the times.
    Pleeease, its frustrating..
    Any suggestion?
    What can I do??
    Thank you very very much in advance, my friends!
    All the best

  • Javascript error in Internet Explorer: status is null or not object

    Hi.
    I use Oracle AS MapViewer 1033p5_B081010, and show maps fine with firefox, but failure with Internet Explorer, and not show map.
    My error description in javascript is :
    Line: 1143
    Character: 1
    Error: 'status' is null or is not object
    Any Idea?
    Please I need a solution or help for solution.
    Regards,
    Marcelo A. Vasquez

    Hi Marcelo,
    it may be something in your java script code around line 1143 ('status' parameter?). IE seems not to like it. I would check this piece of code.
    Joao

  • Flash errors in internet explorer

    I'm a newbie in flash. I finished my degree about 3 months
    ago and have been learning Flash with Actionscript since.
    I am going crazy because no matter how hard I try, unexpected
    errors keep showing up in Internet Explorer. Mozilla Firefox works
    perfectly, almost the same as when I test the movies in Flash. I am
    considering making Flash development my career and need to know if
    the error is in my programming or if Internet Explorer is to blame.
    I am building a site for somebody right now, and I don't know how
    to explain the sudden image resizes, disappearing preloaders and
    other strange phenomena. My biggest problems are loaders constantly
    changing sizes and preloaders not appearing to indicate loading
    percentage.
    Should I tell people to download different browsers to view
    my Flash sites, or is there something I can do to make Internet
    Explorer work correctly?

    I recall these windows popping up in older versions of
    Internet Explorer and older versions of Flash Player. Im not sure
    which it depended on, but if you recently updated your Flash
    Player, then that is likely the cause. You can always use Firefox
    and download/install firebug extension and/or flashtracer
    extension.

  • Installing elements error msg, internet explorer 4 or greater needed, I have ie 11....

    Installing elements, error internet explorer 4 or greater needed, I have ie 11????

    Is this any help - http://forums.adobe.com/message/5757376.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • How to print multiple pages using Internet Explorer with af:showPrintablePageBehavior

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

    Hello,
    I am facing one issue with using af:showPrintablePageBehavior. I found similar posts and google pages, but unable to fix the issue. Most relevant post is,
    Print issues with af:showPrintablePageBehavior and Internet Explorer
    I have a page show in a af:popup. This page contain a Title in the top, af:outputText and a Print button below it. I have added af:showPrintablePageBehavior to Print button. I am using lots of data in the af:outputText. When I click on Print button, showPrintablePageBehavior is opening new browser window with multiple pages. But when I click on the Print Preview or Print, only first page is shown.
    I have tried the solution mentioned in above post but no luck.
        <f:verbatim>
            <style type="text/css">
                textarea {
                    width: 95%;
                    height: 350px;
                    overflow: auto;
                @agent ie {
                    af|document:maximized::printable {
                        position: static;
            </style>
      </f:verbatim>
      <af:panelStretchLayout bottomHeight="10%" startWidth="0%" endWidth="0%" topHeight="10%" inlineStyle="height: 100%; width: 100%">
      <f:facet name="top">
      <af:panelGroupLayout id="pnlGrpTitle"  layout="vertical" halign="center" inlineStyle="width: 100%;">
      <af:spacer id="titleSpacer" height="10px" />
      <af:label value="Title" inlineStyle="font-weight:bold; font-size: 16px; color:#000066; padding-left: 5px" id="dialogTitle" />
      <af:spacer id="titleSpacer2" height="20px" />
      </af:panelGroupLayout>
      </f:facet>
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="0" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelStretchLayout bottomHeight="0" topHeight="25" startWidth="0" endWidth="0">
      <f:facet name="center">
      <af:panelGroupLayout id="pnlTextArea" layout="scroll">
      <af:outputText binding="#{mybean.tfdArea}" escape="false" id="tfdArea" />
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      </af:panelStretchLayout>
      </f:facet>
      <f:facet name="bottom">
      <af:panelGroupLayout id="pnlGrpBottom" layout="vertical" halign="center" inlineStyle="width: 100%">
      <af:commandToolbarButton id="cbPrint" shortDesc="Print" icon="/images/print.png" inlineStyle="width: 40%" >
      <!--af:clientListener method="self.print" type="action"/-->
      <af:showPrintablePageBehavior />
      </af:commandToolbarButton>
      </af:panelGroupLayout>
      </f:facet>
      </af:panelStretchLayout>
    Any idea how to fix it?
    - Sujay

  • How do I stop Firefox from updating Internet Explorer with my bookmarks?

    I upgraded Mozilla Firefox recently and must have agreed to merge bookmarks. All my bookmarks now appear in Internet Explorer also. Any changes affect explorer. I can't figure out how to stop. I can disable on the explorer end but not Firefox.

    I do not fully understand what you are trying to explain.
    Firefox certainly does not ordinarily update or change your IE favourites.
    (You are able to export Firefox bookmarks in a suitable {HTML} format though)
    Firefox bookmarks are not the same as IE's favourites. You are able to import the HTML favourites from IE. Firefox then converts these to the required Firefox formats and keeps the bookmarks to itself.
    Unless possibly you have some utility that exports the Firefox bookmarks and over writes the IE files ?
    Or maybe you are just reading HTML files and folders with Firefox instead of using Firefox bookmarks.
    Have a quick read of these articles and post bask with more information about what is happening.
    See
    * [[How to use bookmarks to save and organize your favorite websites]]
    * [[Use bookmark folders to organize your bookmarks]]
    * [[Import Internet Explorer Favorites from another computer]]
    *[[Import Bookmarks from Internet Explorer]]
    * [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]

Maybe you are looking for