Trying to delete widget code and stop Error message

I am a little new to CS4:  and receiving an validation error message  on a page about a accordion widget still being on my page and ppotential  problems at runtime.  I look and it is greyed out so i  am not able to remove(delete) the error offending line.  I had  originally removed the accordion widget on purpose but in the process of  removing everything else ( script, etc.) I think I did the removal in  the wrong  sequence or something.
Can anyone please give  me suggestions on how I might fully remove this widget error line so I  can clean up my code and ensure a clean run.
thx

here is the message  I receive when I open the page in CS4
This document contains javascript code of a widget that no longer exists.
If you don't remove the code, the browser might displayjavascript errors when loading the page.
would you like Dreamweaver to find all instances of this code for you???
widget:var Accordion1=newSpry.Widget.Accordion("cmp_panningcards")
then shows line inside code, but grayed out so I cannot delete....

Similar Messages

  • Itunes was working fine. Tries to install latest upgrade and get error message about an invalid character in the path "Program Files (x86)". PC, Win7, nothing else appears to be having same issue.

    Itunes was working fine. Tried to install latest upgrade and get error message about an invalid character in the path "Program Files (x86)". PC, Win7, nothing else appears to be having same issue. Program still works, simply cannor upgrade.

    Thanks b noir,
    I tried this solution without success. After FixIt ran and didn't find a problem, either in looking for issues with "software upgrade" or "iTunes" it kindly offered to help me uninstall iTunes. I had thought of this as a possibilty but it seems to me that if you do that you lose a lot of "non-native-to-Apple" information you might have entered. I did this once and recovery was painfull. Is there a way to uninstall iTunes without losing all of that sort of thing? Any help would be appreciated.

  • Im trying to activate my ipad and an error message'your ipad could not be activated because the activation server cannot be reached.Try connecting your ipad to itunes to activate it. can someone please help

    im trying to activate my ipad and an error message'your ipad cannot be activatewd because the activation server cannot be reached.
    How do I connect?

    You don't have access to a computer, some other options are...l
    Wait for a while and try again
    Try activating your iPad using another WiFi network
    Ask someone who does have a computer running iTunes for help.
    Take your iPad to an Apple Store and ask them for help.

  • TS3694 pls help my iphone 4 was on activation "required". i jailbroke it then it worked but some of the applications were crashing down,won't open. i tried a lot of tutorials and then error message 3194 came out. stucked in recovery mode,itunes logo. pls

    pls help my iphone 4 was on activation "required". i jailbroke it then it worked but some of the applications were crashing down,won't open. i tried a lot of tutorials and then error message 3194 came out. stucked in recovery mode,and then i use snowbreeze and then it worked!!!! but another problem came, i turned off my iphone then i switched it on again then it stucked in apple logo,.after doing some thing again 1604, 1600 bla bla bla came out..pls help me fix my iphone.

    no help for jailbroken phones here-it's not allowed. good luck.

  • Trying to install windows 7 and getting error message windows must be installed to a partition formatted as NTFS

    Trying to install windows 7 and getting error message Windows must be installed to a partition formatted as NTFS

    Welcome to Apple Support Communities
    Boot Camp Assistant creates a Windows partition in FAT32 to make the Windows XP installation easier.
    The problem is that Windows Vista, 7 and 8 require a NTFS partition, so the Windows installer gives this error. The only thing you have to do is to choose the BOOTCAMP partition in the installer and go to “Drive options (advanced)” > Format. Finally, install it

  • Trying to burn a cd and getting error message 4260  help?

    I am trying to burn a cd in ITunes and getting error message 4260   help please

    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • I am trying to download iOS 5.1 on my iPhone and iPad. Both times it tries connecting to the software update server and just hangs there. I've tried doing both over wifi and get error message. What do I do?

    I cannot download the ios 5.1. I'v tried doing it through itunes after downloading the latest itunes. It says that my phone and ipad both have new updates and tries to coonect to update software server. That is where it hangs up and just keeps trying to connect but never does. Then when I try to update my devices over wifi, it tries and thens gives me a download failed message after a few minutes. What do I do?

    This has solved loads of people who have this issue and have used an alternate DNS setting.  Below are instructions for both iPhone OTA and on you Mac
    If you are getting the error message "Unable to check for update" when you try an OTA (over the air update)
    Change DNS Servers
    Settings -> Wi-Fi
    Click the blue arrow on your connected network
    Delete everything in DNS and replace it with 208.67.222.222, 208.67.220.220
    Try again
    If this works, you will probably want to remove the WiFi network using "Forget This Network" and then reconnect to it to get your original DNS servers back. Alternatively, make a note of the original DNS servers before deleting them and replace it after you are done.
    If you are getting the error message "Unable to check for update" when you try through iTunes
    On your Mac
    Choose Apple menu > System Preferences, and then click Network.
    Select the network connection service you want to use (such as Wi-Fi or Ethernet, unless you named it something else) from the list, and then click Advanced.
    Click DNS, and then click Add at the bottom of the DNS Servers list. Enter the IPv4 address for the DNS server.
    You can use OpenDNS
    208.67.222.222
    208.67.220.220
    or
    You can Google Public DNS if you want
    8.8.8.8
    8.8.4.4
    I have actually repointed my routers DNS so all my devices now point to OpenDNS servers

  • I'm getting the message, "the supplied index is out of bounds." i have attached my code and the error message. can anyone help me? thanks.

    the title is self-explanatory. i'm VERY new to flash so i don't understand a lot of the lingo. can anyone give me a simple answer or, better yet, fix the code for me? i'm reading that it usually comes up when there's a child error but i'm not sure how to fix it.
    my code:
    var navBtnGlow:GlowFilter = new GlowFilter(0x000000, 0.5, 0, 15, 1, 2, true, false);
    navBAR_mc.addEventListener(MouseEvent.MOUSE_OVER, navOverF);
    navBAR_mc.addEventListener(MouseEvent.MOUSE_OUT, navOutF);
    function navOverF(event:MouseEvent):void{
    event.target.filters = [navBtnGlow];
    navBAR_mc.setChildIndex(event.target as MovieClip, 1);
    dropMenus_mc.gotoAndStop(navBAR_mc.getChildAt(1).name);
    trace("We are Rolled Over..." + navBAR_mc.getChildAt(1).name)
    function navOutF(event:MouseEvent):void{
    event.target.filters = [];
    the error message:
    RangeError: Error #2006: The supplied index is out of bounds.
    at flash.display::DisplayObjectContainer/setChildIndex()
    at bestPRIM_fla::MainTimeline/navOverF()
    thanks in advance!

    I'm trying to get my head around this, but here's my shot at it... you have an event listener assigned to navBAR_mc for a mouse over.  When the mouseover occurs, you have the following line:
    navBAR_mc.setChildIndex(event.target as MovieClip, 1);
    Since navBAR_mc is the event.target, it cannot be a child of itself, but I think that's what that line is trying (and failing) to process.
    So can you describe what you are trying to do.  I would expect that navBAR_mc holds buttons, but based on what I see, it is the button.

  • Itunes corrupt version error message.  tried to re-download itunes and same error message

    My itunes gives me an error message saying
    "This copy of iTunes is corrupted or is not installed correctly.  Please reinstall iTunes"
    I tried to download from their site, and when i try to install it, it says "thank you for downloading iTunes" but it is not on my computer, i cant find the file anywhere
    please help

    Let's try a repair install of iTunes first.
    Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", click "Change" and then click "Repair".
    Can you launch your iTunes now?

  • Tried to download a book and got error message

    This is the message.  It takes me to no solutions and only confirms my view that Adobe Digital Solutions is a rubbish programme that editors should avoid like the plague.
    Can anyone tell me how to solve this one.  Clearly Adobe are not interested
    Richard Chivers

    Hi Dominic,
    The message read:
    Unable to download
    Error getting license
    License server communication problem:
    E_ACT_NOT_READY
    After that it takes you nowhere.
    I tried several times to download the book but with the same result.
    Kind regards,
    Richard

  • ITunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide

    iTunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide from cloud - the files that do not upload show grayed out on my other devices.

    Have you confirmed that you successfull purged iTunes Match by also looking on an iOS device?  If so, keep in mind that Apple's servers may be experiencing a heavy load right now.  They just added about 19 countries to the service and I've read a few accounts this morning that suggests all's not running perfectly right now.

  • I previously downloaded the AI 30 day trial but was able to use it before the trial ran out I've since deleted it from my laptop (Windows 7 64 bit OS) How do I get it back? Trying to download AI again and getting error code 3 some thing to do with adminis

    I previously downloaded the AI 30 day trial but was able to use it before the trial ran out I've since deleted it from my laptop (Windows 7 64 bit OS) How do I get it back? Trying to download AI again and getting error code 3 some thing to do with administration permissions?

    If your intention is to use the trial again it will not reset if you reinstall.  It will remain in its ran out state.

  • I have been using CS6 for two years without incident.  Suddenly the Media Encoder stops working, showing APPCRASH and displaying error message about WatchFolder.dll - I tried uninstalling and re-installing to no avail - can anyone help

    I have been using CS6 for two years without incident.  Suddenly the Media Encoder stops working, showing APPCRASH and displaying error message about WatchFolder.dll - I tried uninstalling and re-installing to no avail - can anyone help?

    Hi Mylenium,
    Thanks for your response.
    Here is the error information showing up:
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: Adobe Media Encoder.exe
      Application Version: 6.0.0.382
      Application Timestamp: 4f62fcf1
      Fault Module Name: WatchFolder.dll
      Fault Module Version: 6.0.0.382
      Fault Module Timestamp: 4f62f37f
      Exception Code: c0000005
      Exception Offset: 0000000000007899
      OS Version: 6.1.7601.2.1.0.768.3
      Locale ID: 4105
      Additional Information 1: 9a62
      Additional Information 2: 9a620826d8ae4a2fa8b984b39290a503
      Additional Information 3: 1fb3
      Additional Information 4: 1fb304eee594288faeefbf1271b70d37
    I am using a PC Windows 7

  • Trying to register with ePrint and getting error code.Ajax submit failed: error = 403, Forbidden.

    Trying to register with ePrint and getting error code.Ajax submit failed: error = 403, Forbidden. I need help??

    To bypass this error attempt either a restart of your computer, or use an alernate broser such as firefox or chrome. If you already have another browser the latter may be the easier fix.
    Jon-W
    I work on behalf of HP
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    Click the KUDOS STAR on the left to say “Thanks” for helping!

  • Ihone 4s lost all contacts. I tried to restore from backup but the error message now says there is not enough room. I have deleted all the apps without making any more room on iphone. Why did contact disappear and how do I get them back?

    ihone 4s lost all contacts. I tried to restore from backup but the error message now says there is not enough room. I have deleted all the apps without making any more room on iphone. Why did contact disappear and how do I get them back?

    In the simplest sense, archiving a file means making a copy that you never change and never discard. You already know how to do that.
    iPhoto has built-in archival features, in the sense that it saves all versions of an image that you've modified. As long as you have adequate backups, you don't necessarily have any reason to archive an iPhoto library. If you want to delete images from the working library but still have access to them in case you change your mind, then you do need to archive those images. I don't have a specific suggestion as to how you should do that. You might post a question in the iPhoto forum.

Maybe you are looking for

  • Error with iTunes 7.1

    I just upgraded to 7.1 and when I try to get onto iTunes, this erroe message comes up: Problem with Shortcut: This action is only valid for products that are currently installed." what does this mean? better yet, can anybody help me fix it? thanks

  • Solaris 8 linker patch 109147-21 / 109148-21 breaks runtime linker

    The "Sun ONE Studio 8, Compiler Collection Early Access" release requires the installation of a linker patch (109147-21 sparc / 109148-21 x86). It seems that the solaris 8 linker patch breaks the runtime linker audit feature for multithreaded applica

  • OS X Lion flickering with artifacts

    Please help me! Trying to find a solution to the following problem: http://dl.dropbox.com/u/29366610/IMG_0083.m4v (video). In the 1024x768 problem remains, but the picture flickers much less common. Mac mini mid 2011, intel 3000 video. OS X Lion 10.7

  • Web service ip addres

    Hello guys, There is a way to get the ip address of a web service invoked in a bpel process? Thank you Andrea

  • I am getting a blank screen trying to shop for TV shows

    Has anyone encountered a problem with a blank screen instead of content being shown?