Error: muse undefined

I am mostly done building my new site in Muse. It is a terrific program. Best web design I have ever used. And I have used many.
Anyway, my industry is not too advanced. Believe it or not, according to my logs, there are still many visits to my site from IE6 and earlier. I built my current site years ago using only MS Frontpage.
So in addition to the menu/CSS based pages, I am also building pages with no menus or objects. Images and text only. I brought it up in IE6 on Windows 98, and it works, but I am seeing the error "muse undefined." I am sure vistors can live with it as it doesn't seem to interfere. But is there any way to get rid of it?
For reference, this is my new temp site:  http://cooleywire.businesscatalyst.com/
this is the 'low-res' version I am building: http://cooleywire.businesscatalyst.com/main.html
Can anyone help me? Or offer tips on how to build a more old-school compatible page? I would like to keep the entire site in Muse without having to go back to Frontpage etc. In addition, is there any script I can easily insert that would automatically forward users on older systems to the compatible page?
Thanks,
Jimmy

Hi JKurtBrown,
You seem to have some invalid HTML in a few of your custom HTML fields that is causing issues with the rest of the page. In many of the places where you have tables, you seem to have copy/pasted from a different source, but you are missing closing </div> tags for some of your code. Cleaning these up and closing these divs should allow your page to work without issue. If you need help narrowing down where the issues are, you can use the W3C Validator and it should be able to tell you where your issues are. The ones that say "No Closing Tag" are the ones you'll want to go through and fix first, as often times those can cause a lot of other issues.
Hope that helps,
Andrew

Similar Messages

  • Error message, "undefined is not an object" when exporting book to Digital Editions

    I have created a book file complete with a TOC and but cannot export to Digital Editions. I keep getting the error message, "undefined is not an object." I've attempted to create new book files in several different ways, but continue to get the same error. Any help would be greatly appreciated.
    Tricia

    HI!
    I'm getting the same message error with reference to the check on TOC just before exporting in digital editions. Yes I tried in many ways but I'm working on a MAC and I cannot change the computer because of fonts. Is there anyway to clean the cash memory of InDesign? Thanks!!!

  • In Adobe Creative Cloud, I go to Apps and I get the error message undefined and I cannot download anything, I am using windows 7 64 bit.

    I am using Adobe Creative Cloud, I go into Apps and I get the error message undefined.  I cannot download anything.  I try to refresh application, nothing.  I can even see what I downloaded previously.  I am using windows 7, 64 bit. 
    This worked fine for me for until this morning. 

    I am on an hp experiencing a similar issue e.g., Creative cloud download error 'undefined'. On an hp. screengrab attached.

  • Error 1180 : undefined method stop and gotoAndStop

    Error 1180 : undefined method stop and gotoAndStop
    i don't know why
    Here ,, it's my code is file [.as] and i use as3
    package {
              import flash.display.*;
              import flash.events.*;
              import flash.text.*;
              import flash.utils.Timer;
              import flash.media.Sound;
        import flash.media.SoundChannel;
              import flash.net.URLRequest;
              public class MemoryGame extends Sprite {
                        static const numLights:uint = 5;
                        private var lights:Array; // list of light objects
                        private var playOrder:Array; // growing sequence
                        private var repeatOrder:Array;
                        // timers
                        private var lightTimer:Timer;
                        private var offTimer:Timer;
                        var gameMode:String; // play or replay
                        var currentSelection:MovieClip = null;
                        var soundList:Array = new Array(); // hold sounds
                        public function MemoryGame() {
                                  //soundBG.load(new URLRequest("soundBG.mp3"));
                                  //soundBG.addEventListener(Event.COMPLETE,loadSoungBgComplete);
                                  stop();
                                  StartBtn.addEventListener(MouseEvent.CLICK, clickStart);
                                  function clickStart(e:MouseEvent){
                                            gotoAndStop("startPage");
                                  // load the sounds
                                  soundList = new Array();
                                  for(var i:uint=1;i<=5;i++) {
                                            var thisSound:Sound = new Sound();
                                            var req:URLRequest = new URLRequest("note"+i+".mp3");
                                            thisSound.load(req);
                                            soundList.push(thisSound);
                                  // make lights
                                  lights = new Array();
                                  for(i=0;i<numLights;i++) {
                                            var thisLight:Light = new Light();
                                            thisLight.lightColors.gotoAndStop(i+1); // show proper frame
                                            thisLight.x = i*90+100; // position
                                            thisLight.y = 175;
                                            thisLight.lightNum = i; // remember light number
                                            lights.push(thisLight); // add to array of lights
                                            addChild(thisLight); // add to screen
                                            thisLight.addEventListener(MouseEvent.CLICK,clickLight); // listen for clicks
                                            thisLight.buttonMode = true;
                                  // reset sequence, do first turn
                                  playOrder = new Array();
                                  gameMode = "play";
                                  nextTurn();
                        // add one to the sequence and start
                        public function nextTurn() {
                                  // add new light to sequence
                                  var r:uint = Math.floor(Math.random()*numLights);
                                  playOrder.push(r);
                                  // show text
                                  textMessage.text = "Watch and Listen.";
                                  textScore.text = "Sequence Length: "+playOrder.length;
                                  // set up timers to show sequence
                                  lightTimer = new Timer(1000,playOrder.length+1);
                                  lightTimer.addEventListener(TimerEvent.TIMER,lightSequence);
                                  // start timer
                                  lightTimer.start();
                        // play next in sequence
                        public function lightSequence(event:TimerEvent) {
                                  // where are we in the sequence
                                  var playStep:uint = event.currentTarget.currentCount-1;
                                  if (playStep < playOrder.length) { // not last time
                                            lightOn(playOrder[playStep]);
                                  } else { // sequence over
                                            startPlayerRepeat();
                        // start player repetion
                        public function startPlayerRepeat() {
                                  currentSelection = null;
                                  textMessage.text = "Repeat.";
                                  gameMode = "replay";
                                  repeatOrder = playOrder.concat();
                        // turn on light and set timer to turn it off
                        public function lightOn(newLight) {
                                  soundList[newLight].play(); // play sound
                                  currentSelection = lights[newLight];
                                  currentSelection.gotoAndStop(2); // turn on light
                                  offTimer = new Timer(500,1); // remember to turn it off
                                  offTimer.addEventListener(TimerEvent.TIMER_COMPLETE,lightOff);
                                  offTimer.start();
                        // turn off light if it is still on
                        public function lightOff(event:TimerEvent) {
                                  if (currentSelection != null) {
                                            currentSelection.gotoAndStop(1);
                                            currentSelection = null;
                                            offTimer.stop();
                        // receive mouse clicks on lights
                        public function clickLight(event:MouseEvent) {
                                  // prevent mouse clicks while showing sequence
                                  if (gameMode != "replay") return;
                                  // turn off light if it hasn't gone off by itself
                                  lightOff(null);
                                  // correct match
                                  if (event.currentTarget.lightNum == repeatOrder.shift()) {
                                            lightOn(event.currentTarget.lightNum);
                                            // check to see if sequence is over
                                            if (repeatOrder.length == 0) {
                                                      nextTurn();
                                  // got it wrong
                                  } else {
                                            textMessage.text = "Game Over!";
                                            gameMode = "gameover";
    and i don't push any code
    at fla file
    why i got that help me plss
    that is my homework and i must send it today TT

    can you write how to use ?
    i write
    "import the flash.display.MovieClip; "
    still error ahhh
    i try to change extends MovieClip instead Spirt
    and not error stop(); and gotoAndStop Already
    but
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at MemoryGame/nextTurn()
              at MemoryGame/clickStart()
    i got thissssssss TT
    import flash.display.Sprite;
    import flash.events.*;
    import flash.text.*;
    import flash.utils.Timer;
    import flash.media.Sound;
    import flash.media.SoundChannel;
    import flash.net.URLRequest;
    import flash.display.MovieClip;
    that i import

  • "ERROR An undefined exception has occurred in the plugin"

    Hi,
    We are not able to access one of our Business Object Web server ( using IBM web Sphere) thur web browser.
    While checking the log in the server i find the error message " ERROR     An undefined exception has occurred in the plugin" please can anyone explain about the error massage. Thank you.
    Regards,
    Sunil

    I can see the following message in a log " *assert failure: (.\authhandler.cpp:171). (false : no message)* " for more description about the issue...
    Sunil

  • Compiler(iropt) error: connect_labelrefs: undefined label L77000157

    after compiling with:
    cc -xopenmp -xO3 tema3.c
    im getting the following error:
    compiler(iropt) error: connect_labelrefs: undefined label L77000157
    cc: iropt failed for tema3.c
    I guess its some kind of bug...Can someone tell what does the error mean and if theres a workaround?
    also the program works on debian linux using intonecc

    You have run into an internal compiler error in the optimizing phase. The bug has probably already been fixed in a patch. Get the latest patches for your compiler version here:
    http://wwws.sun.com/software/products/studio/patches/index.html
    If you are using the C compiler, get the C compiler patch and the "common compiler components (code generator) patches.
    For a temporary workaound, try compiling at the lower optimization level -xO2, or without optimization (no -xO option).

  • I get Messages error "An undefined AIM socket error has occurred."

    For the last two days every time I try to connect to AIM in messages I get this error "An undefined AIM socket error has occurred."
    I have quit the app, changed servers, trashed the Prefs but none of these have cured the problem.
    Any suggestions please.

    After reinstalling Little Snitch (as an update) and answering its Allow questions with 'Allow', Messages has logged in.

  • Receive error "bobj undefined" after deploying Web app to Win 2008 server

    Developed Asp 2 app in a Windows 2003 server environment with VS 2005 and an upgraded full version of Crystal Reports 2008.
    Installed full version of Crystal Reports 2008 on Windows server 2008.
    Copied Web app over to Windows 2008 server.
    App comes up fine until I attempt to display a report where I receive the bobj undefined error.
    Searched the forums and found that the majority of the problems are caused by the Aspnet_Client folder not being copied to c:\inetpub\wwwroot folder.
    The folder already exists and is populated. Just to be sure I copied the aspnet_client folder from the development environment over to Windows 2008.  Still get error.
    Installed vs2005 on Windows 2008 and applied all the necessary patches. Opened the Web app project and ran within VS 2005. Get same error "bobj undefined".
    Checked versions in Web.config for app as well as assembly entries in c:\windows\assemblies, c:\Windows\Microsoft .NET\Framework\v2.0.50727\ASP.NETClientFiles and all reflect the correct version 12.

    Well it appears that the problem is fixed. The issue was tha aspnet_client folder was indeed copied to c:\inetpub\wwwroot folder but the folder did not show up under the default Web site as a virtual directory in the IIS Service Manager.
    I created the virtual directory aspnet_client and pointed it to c:\inetpub\wwwroot\aspnet_client folder and now my reports render without error.
    I will try deploying the app to another VMWare Windows 2008 server and see if this will work. I don't want to have VS 2005 installed on the production system so I need to be sure that I only require the installation of the full version of Crystal Reports 2008. I am assuming the Crystal Reports runtime will also be installed.
    Installed full version of Crystal Reports 2008.
    Created virtual directory aspnet_client
    Copied ASP app over
    Reports now work.
    It appears that the Crystal Reports 2008 install can't create the virual directory aspnet_client on IIS7.
    Regards
      Paul

  • Kiethly 2400 Error 113 "Undefined Header"

    Hello,
       I am currently using a Keithley 2400 both as a current source and as a measuring device.  The program I am running is based on the Keithly 24xx drivers  (http://sine.ni.com/apps/utf8/niid_web_display.dow​nload_page?p_id_guid=25B255F3AA83660EE0440003BA7CC​D71). 
    The program works perfectly for about 30 seconds of data collection, then shows Error 113 Undefined Header, then begins to work again after a brief interruption.  The error will then appear randomly after that.  Does anyone know what is causing this error and how to stop it?  My code can be found attached to the message
    I ran NI SPY and the following was highlighted red: >
    697.  viWaitOnEvent (GPIB0::16::INSTR (0x02D08828), IO_COMPLETION, 0, 0, 0x00000000)
    > Process ID: 0x00000874         Thread ID: 0x00000D10
    > Start Time: 15:31:10.343       Call Duration 00:00:00.000
    > Status: 0xBFFF0015 (VI_ERROR_TMO)
    from 697 to 708
    The lines before it were:
    695.  VISA Write ("GPIB0::16::INSTR", ":ARM:COUN 1;:TRIG:COU...")
    Process ID: 0x00000874         Thread ID: 0x00000FA4
    Start Time: 15:31:10.328       Call Duration 00:00:00.000
    Status: 0 (VI_SUCCESS)
     696.  VISA Write ("GPIB0::16::INSTR", "ARMOUR IMM;:ARM:TIM...")
    Process ID: 0x00000874         Thread ID: 0x00000FA4
    Start Time: 15:31:10.328       Call Duration 00:00:00.015
    Status: 0 (VI_SUCCESS)
    the lines after it were:
     709.  viWaitOnEvent (GPIB0::16::INSTR (0x02D08828), IO_COMPLETION, 0, IO_COMPLETION, 0x02DA2878)
    Process ID: 0x00000874         Thread ID: 0x00000D10
    Start Time: 15:31:10.343       Call Duration 00:00:00.000
    Status: 0 (VI_SUCCESS)
    710.  Completing viWriteAsync (GPIB0::16::INSTR (0x02D08828), 0x04045CD1, "ARMOUR IMM;:ARM:TIM...", 65)
    Process ID: 0x00000874         Thread ID: 0x00000D10
    Start Time: 15:31:10.343       Call Duration 00:00:00.000
    Status: 0 (VI_SUCCESS)
    Attachments:
    Source_Current_Meas_Volt_Single_Read.vi ‏68 KB

    The error occurs when the VI code is at the "read single" point of the VI. When I watch the sub VI's, the progression is that under the read single VI, it occurs at the read multiple points VI, and under that VI with error 1073807339 at the Fetch Measurements VI, and under that VI it occurs, with the same error code 1073807339 at the VISA Read and the Property Node.  I have attached the spy file with just my program open, and with the Fetch program open. 
    Attachments:
    Capture.spy ‏265 KB
    capture with fetch subvi runnning.spy ‏265 KB

  • Solaris link error - cout undefined symbol

    I am using the Forte 6 C++ compiler, but instead of using the built-in roguewave STL library I am using STLPort 4.5.1 for performance reasons. If I compile my application using the roguewave STL it links ok, but when I use the STLPort I received an undefined symbol for cout.
    Ideas how I can get around this?
    Thanks,
    Sean

    Are you sure you posted the entire output of the linker? It doesn't look like you have.
    The error you posted is:
    Undefined first referenced
    symbol in file
    ISymbolTable::__
    It then goes on to state that the file that needs this symbol (the file that first references this missing symbol) is /lib/cxx//libMyBusinessObjects.so.
    Now, what I don't get is the symbol itself. what is ISymbolTable::__ ? That's just plain whacky.
    Is libMyBusinessObjects.so your library?
    Anyhow, to fix these types of errors, it is typically an issue of adding another lib or .o to you link list in the Makefile. But, first, you have to make sense of the symbol that is "missing".
    If you provide more data, it might help in resolving this...
    -- jrj

  • ERRORS Muse not menus working, JSON, can't open old files

    Using 2014.4CC
    I built out a site, went to save an upload to BC.
    Midway thru upload, got a JSON error .. see screenshot below. It exited, reopened the file and happened again.
    Renamed the folder at ~/Library/Preferences/Adobe/Adobe Muse CC to force a refresh of prefs ... Muse would open, but no menus, can't open pages, exit, etc ...
    So I uninstalled Muse using the uninstaller in Apps folder, cleared the folders in ~/Library/Preferences/Adobe/Adobe Muse CC
    Reinstalled Muse from CC app ... opens, can create a new site, but open any old ones, the menus still don't work.
    How do i get a fresh install and open my older files again?

    All menus grayed out ... can't edit old files, can only create a new one ....
    What folders do i purge and install Muse? This all started with a JSON error above ... using late Muse app 2014.2

  • Image + 1180 error + possibly undefined method

    Below is a piece of code I've written and getting an "1180: Call to possibly undefined method test".
    <mx:Script>
    <![CDATA[
    public function testDC(): void {
        Alert.show("Testing");
    ]]>
    </mx:Script>
    <mx:Panel id='Test' title = 'Test' width = '100%' height = '100%' creationPolicy="all" backgroundColor="white" backgroundAlpha=".01">
    <mx:VBox label = 'Topology View' showEffect = '{wipe_left}' width='100%' height='100%'
    cornerRadius="5" paddingBottom="15" paddingLeft="5" paddingRight="5" paddingTop="15" clipContent="true">
                <adobe:SpringGraph id="springgraph" width="100%" height="95%" bottom="0" top="40"
                right="0" left="0" clipContent="true">
                <adobe:itemRenderer>
                <mx:Component>
                <mx:Image width="24" height="24"
                                    source="{(data.id==null)?'': (data.id.search('\\.') > 0) ? 'assets/icons/teacher.png' : 'assets/icons/student.png'}"
                                    toolTip="{data.data}" doubleClickEnabled="true" doubleClick="testDC()"/>
                </mx:Component>
                </adobe:itemRenderer>
    </adobe:SpringGraph>
    </mx:VBox>
    </mx:Panel>
    If I do not call the method, I don't get the error, but I need to perform some operations on the clicking the image.
    1. I've also tried to use icon, but with no success.
    2. I've tried to remove the <adobe:itemRenderer> and the <mx:Component> tags, in this case the images don't get loaded and the screen looks bad.
    Any help?

    I put the script tag within the image tag and it worked.

  • Error "EPCF Undefined" in URL Iview after upgrading portal from 7.0 to 7.3

    Hi All,
    We have upgraded our portal from 7.0 to 7.3 recently. After upgrade when we are trying to open URL iviews(which will open a page in a sesparate window) it is giving some error in left bottom corner of browser. The error is as follows
    Message: 'EPCM' is undefined
    Line: 463
    Char: 1
    Code: 0
    URI: http://<host>:50100/irj/portal?NavigationTarget=navurl://25fd58cd6bc575491c6b9c692e5debd6&InitialNodeFirstLevel=true&windowId=WID1318828789495
    Please let me know the solution to solve this issue.
    Thanks & regards,
    Sandeep

    Hi sandeep ,
    Hence the problem was not there with previous versions where the .js files were simply not compressed by default.
    Solution :
    I believe switching off javascript compression is a suitable option in this case as the script files are usually cached by the browser as well and will not be transmitted every time.
    Kindly follow these steps:
    1. Enter the J2EE Config tool.
    2. drill down: Global Server Configuration->services->http
    3. on the right hand side, click on NeverCompressed
    4. on the bottom, add at the end: ,*.js
    5. Apply the changes
    6. restart the J2EE.
    After this clear the browser cache and then log onto the portal and check if the issue gets resolve
    I hope it will useful to you.
    Thanks@ Re grads
    G.srinu

  • JDeveloper 3.1 JSP Engine Run-Time error - "NLSFormat undefined"

    hi,
    I have a JSP/Bean page running through JDeveloper 3.1
    It has the "EditForm" bean with (among other fields) a date field in it.
    <jsp:useBean class="....EditForm" id = "f1">
    <%
    f1.initialize(.....);
    f1.setFormAction(.....);
    f1.addHiddenField("executeQuery","true");
    f1.addDateField("List Docs failed on","ReportDate1",null,null,null,null);
    f1.addSubmitButton("submit","Submit");
    f1.render();
    %>
    Scenario:
    When the JSP page is generated and i enter a date value like (08-SEP-00) and click on the "Submit" button, i get the following error.
    Error Name: "Run-Time Error: NLSformat is undefined"
    The relevant generated HTML line in the page which has the NLSformat in itis as follows:
    <INPUT TYPE="TEXT" NAME="ReportDate1" onchange="this.value = datecheck(this.value,NLSformat);checkForError(this,distribute)"
    Is NLSformat something to do with the datefield ? - I was reading thru the OTN docs, does NLSformat need to set up as a startup parameter in the 8i instance? - is that the way the JSP engine picks up the value/definition of the NLSformat variable? - I would really appreciate some replies on this issue.
    Thanks,
    Balaji
    null

    Hello,
    Even I am facing the same problem on windows 98. When I try to run my database servlet from Jdeveloper3.0 nothing happens.
    In browser .../.../webapprunner.html url gives similar error like the one Flavio is getting. Which version of Jdeveloper can I use on Win 98?
    Thanks
    null

  • Error 1010 undefined property

    really i should know why this is happening but my brain is is frozen!
    here it my code:
    stop();
    addEventListener(Event.ENTER_FRAME, loaderF);
    function loaderF(e:Event):void{
    var toLoad:Number = loaderInfo.bytesTotal;
    var loaded:Number = loaderInfo.bytesLoaded;
    var total:Number = loaded/toLoad;
    if(loaded == toLoad) {
      removeEventListener(Event.ENTER_FRAME, loaderF);
      gotoAndStop(2);
    } else {
      preloader_mc.preloaderFill_mc.scaleX = total;
      preloader_mc.percent_txt.text = Math.floor(total*100) + "%";
      preloader_mc.ofBytes_txt.text = loaded + "bytes";
      preloader_mc.totalBytes_txt.text = toLoad + "bytes";

    Is that the entire error message you get after you have selected the Permit Debugging option?  As is, it is telling you there is something in that function that is out of scope in some way (doesn't exist where that code executes, misnamed, etc).  I would have expected more info in the error message with the permit debugging enabled.
    Here's another tip, actually more than a tip, it's how to troubleshoot your code when things aren't working...  Use trace() commands to see what values things have and/or how far processing goes before things stop working.  In this case you are getting indications that something doesn't exist in the eyes of your code, so you need to trace each object to see what's coming up as undefined...
    addEventListener(Event.ENTER_FRAME, loaderF);
    function loaderF(e:Event):void{
    trace(loaderInfo.bytesTotal); // see if infoLoader exists
    var toLoad:Number = loaderInfo.bytesTotal;
    var loaded:Number = loaderInfo.bytesLoaded;
    var total:Number = loaded/toLoad;
    if(loaded == toLoad) {
      removeEventListener(Event.ENTER_FRAME, loaderF);
      gotoAndStop(2);
    } else {
         trace(preloader_mc); // then trace each object you assign values to
      preloader_mc.preloaderFill_mc.scaleX = total;
      preloader_mc.percent_txt.text = Math.floor(total*100) + "%";
      preloader_mc.ofBytes_txt.text = loaded + "bytes";
      preloader_mc.totalBytes_txt.text = toLoad + "bytes";

Maybe you are looking for

  • Item not being saved when item is in a jquery modal  dialog

    Hi all, I followed instructions found here : http://shijesh.wordpress.com/2010/04/10/jquery-modal-form-in-apex-4/ to create a jquery modal dialog, this is the code I added in html header : <link rel="stylesheet" href = "http://ajax.googleapis.com/aja

  • How can I get my purchased apps back?

    How can I get my purchased app back after ios5 update?  Not all of my purchased apps are listed under "purchased apps" in the app store.

  • Max size of a stringbuffer

    Hi, i would like to know if there is a limit for a Stringbuffer object. Regards, Euclides.

  • Compiling servlet with helper class

    Hello, I have to write a very large number of database queries and huge amount of code so I decided to make each helper *.class file for each table. Now I have a main servlet that should instantiate each of these helper classes and conduct DB operati

  • Why can't I see airport extreme or express on computer

    Why won't airport extreme (part of a time capsule) respind when I turn it on after being off for a few days? Airport express too.