deleted long markup script debugger

Several eons ago in the early days of developing this form, I got scripts in initialization and calculate events of several subforms. It's a monster of a form with subforms for 9 different types of change request, each with several hidden fields that become visible as the user answered various questions. When I first started, it was the only way that I could understand if the form ensure that appropriate subforms would still be visible when a user closed, then reopened.

I removed the initialization scripts when I discovered the preserve script changes the setting (duh... ). Several months ago, and there are several version.

However. the console still appears and flags of the objects that have been apparently referenced in these scripts initialization, but whose names have changed in the meantime. I checked the form several times to be course there are no scripts to initialize Renegades always LURKING in the background, and I'm confident, than it does nothing... that darn debugger jumps every time.

I guess that it won't be a problem for any form user who does not have the debugger active in their own instance of Acrobat, correct? Since I'm pretty much the only person here who comes even close to working with Acrobat in this way, I'm relatively confident, that it will never come to the top.

But I would like to find a way to get rid of it, and I have an insidious problem that there actually is some kind of problem behind the scenes that * will * come back to bite me while on the road. Can someone tell me how to debug the debugger, or alternatively, how to locate the scripts, it always seems to be somewhere?

MIL gracias!

When you the error in the debugger. Copy a string of the script that you have already removed.

Go to "XML Source" press ctrl + f (find). Paste the string you copied.

If you are looking for the script here, then remove from until the , I'll give you an example:

Take it away and it sholdn can't device in the debugger. If it's there, I don't really know that it can be.

Tags: Adobe LiveCycle

Similar Questions

  • Error: BT Yahoo is not available due to a long-running script. How can I remove it?

    Original title: a long-running script

    Why constantly to make the message-' BT Yahoo is not available due to a long-running script.

    How can I remove it?

    Why constantly to make the message-' BT Yahoo is not available due to a long-running script.

    How can I remove it?

    a. on the Tools menu, click Internet Options.

    b. on the Advanced tab, click to select the checkbox disable the script debugger .

    c. click OK

    Error message: "a script on this page slows down Internet Explorer runs slowly.
    http://support.Microsoft.com/kb/175500/en-us

    How to resolve script errors in Internet Explorer on Windows computers

    http://support.Microsoft.com/kb/308260

  • Long-running script

    How, or can I SET a "long-term script? I even bought one online registry cleaner that is just a waste of money, I guess that its malware?

    A few suggestions here:

    http://Windows.Microsoft.com/en-us/Windows/what-do-Internet-Explorer-script-errors#1TC=Windows-7 or http://support.microsoft.com/kb/308260

    How to ask a question:
    http://Support2.Microsoft.com/kb/555375

  • I frequently get a pop up that says "' web page addresses do not cause of long-running script." "

    * Original title: pop ups

    I frequently get a pop up that says "' web page addresses do not cause of long-running script." "  It's maddening.

    It's all web sites that do, or just a specific or both? If its just one or two sites, try them as 'compatibility mode' - http://windows.microsoft.com/en-US/internet-explorer/use-compatibility-view#ie=ie-11

    If this does not help, it occurs to these sites if you run IE (assuming you're using IE) "mode without modules? ( [Internet Explore (No. Add ons)])

    If still no joy, then see if anything in this article allows --- https://support.microsoft.com/en-us/kb/308260#cause it is a long read but has a few things to try for script errors in Internet Explorer.

    The default base heal - use another browser like Mozilla Firefox - https://www.mozilla.org/en-US/firefox/new/

  • Help with excel import and delete the page script

    Hello. I will try to make it as simple as possible. I have some data from excel (saved as delimited by tabs) that I need to import in a 5 PDF page. I use the script below to import, and it works fine. All import fields and records the individual (one for each record) PDF. However, I need to extend this functionality by removing some pages before it saves the document by looking at the different boxes. The code below is what I use to import the records.

    // specify the filename of the data file
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text file containing the data
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    var err = 0;
    var idx = 0;
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2) 
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf"); // saves the file
            idx++;
        }
    }
    

    As I said before you import works surprisingly well.

    My PDF consists of 5 pages (info-registration, p1 = Dir-contract = p0, p2 = contract ndarp-brand, p3 = takes-contract, p4 = agreement must be brand). My idea is that on the import of data, the script will look at a few check boxes and determine which contracts to remove on the PDF and then save. I wrote the syntax of which, in my view, what it should look like. I'm not a programmer and know just a little bit. I looked through the documentation and this is what I came with. I don't know how to combine to work. Here's the code I came up with that.

    var dir = this.getField("Associate Director"); // checkbox
    var aldir = this.getField("Alumni Director"); // checkbox
    
    var fac = this.getField("Facilitator"); // checkbox
    var alfac = this.getField("Alumni Facilitator"); // checkbox
    
    var oyb = this.getField("Optimize Your Brain"); //checkbox
    var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
    
    // Below are all the possible training options.
    if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:1, nEnd:2})
    }
    else (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:1, nEnd:2})
    }
    

    How to combine these two so that I can create a document temp import my data, check the boxes to check off and delete the appropriate pages and save the file and then go to the next record? I got the first part done. It imports large and has the right, but I don't know what to do next. Thanks for any help!

    Or y at - it another way to do this?


    Michael

    Wow. Ok. I had it works beautifully. There was a lot of trial and error. Because the script as it was would have, would open the original PDF, delete the pages needed, then save the file. While it would be to go to the next record is missing pages in PDF and bomb to open. I hunted and searched for a way to do this. I found "this.insertPages" in the documentation. Finally, what worked was so move the "save under" in the service and put it under every variation of check. So now when checking the boxes, he performs the check, removes the mandatory pages, stops, insertions of back in deleted pages from the original file, leave the service and finally goes to the next record.

    Here is my final script:

    // This code looks at an excel (tab delimited) file, imports the records into a PDF form 10 Pages long.
    // Then checks a series of checkboxes and deletes the pages that aren't associated with first page.
    // After it deletes these pages it reinserts the deleted pages so it can do the checks for the next record in the (tab delimited) file.
    
    // variables for importing excel data
    var err = 0;
    var idx = 0;
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    //Checking a bank of 6 checkboxes and determine which pages need to be deleted, save the file, and the insearch the deleted pages again.
    function seekandDestroy() {
        if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
    }
    
    // Imports records does the above function then go the next record, all the while doing error reporting.
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2)
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            var dir = this.getField("Associate Director"); // checkbox
            var aldir = this.getField("Alumni Associate Director"); // checkbox
            var fac = this.getField("Facilitator"); // checkbox
            var alfac = this.getField("Alumni Facilitator"); // checkbox
            var oyb = this.getField("Optimize Your Brain Site Coordinator"); //checkbox
            var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
            seekandDestroy(dir, aldir, fac, alfac, oyb, poyb); //performs the above function
            idx++; //goes to next record
        }
    }
    
  • Delete duplicated columns Script of Transformation

    Hello world

    I need a script to delete the column duplicated in the relational model

    can someone help me on this?

    Thanks in advance.

    Try this

    columnName = 'Column_1';
    tables = model.getTableSet().toArray();
    for (var t = 0; t
    

    Replace "Colonne_1" with your name in the column

  • How can I find the ForcedLineBreak to textframe and delete it with script?

    Jin

    I want to find some forcedlinebreak (and empty paragraphs) to textframe and delete them, how do I write script with VBScript?

    BTW, why don't the forced line break shows in the message box? See below.

    Thank you very much.

    1.jpg

    Hi David

    It works in CS3 Javascript you can convert in VBscript

    app.findTextPreferences = app.changeTextPreferences = null;
    app.findTextPreferences.findWhat = ' ^ n ";
    app.changeTextPreferences.changeTo = ' '; replacement of sapce
    app.activeDocument.changeText ();

    Thank you

    concerning

    a you are the

  • Deletion of path script

    I currently have a script that contains a line for the removal of all channels in a tif file:

    activeDocument.channels.removeAll)

    and it works very well.  I would like to add the necessary code to remove also all the pathnames in a file.  I tried to add the line: activeDocument.paths.removeAll () but I received an error message.

    Anyone know the correct way to do this?  Please notify.

    Thank you.

    John Horner wrote:

    Thanks a lot to you both for your responses.  It have incorporated your suggestions and the sript seems to work very well.

    I have a closer question: I noticed that in some of the scripts I have there is a semicolon at the end of most lines, but not all.  for example:

    activeDocument.flatten ();

    activeDocument.channels.removeAll)

    activeDocument.pathItems.removeAll ();

    Does make a difference one way or the other?

    Finally, I'm new to the Forum and I have seen think I couldn't give 1 right answer or 2 useful so I wasn't sure the correct protocol for situations where there are 2 correct solutions apparently.  but now, even if I have 2 correct solutions, he presents himself as only "may be answered.  is it possible to change this?  Please let me know if there is a good way to handle this on the forums.  Thanks again for everything.

    JH

    If you're flattening the document first, then the warning on the deletion of vector masks for the current layer does not apply to you, you're good to removeAll.

    From what I remember, adding the ';' at the end of each line is 'good' javascript and I believe was once required. Often, it does not matter from what I've seen (I am often lazy and forget or neglect to use it myself) as many scripts will work fine whether it is there or not. I think that it is always required in certain cases, even if I'm not completely sure of what they are.

    I don't know how the Adobe system uses points it is, don't know what to tell you about it.

  • "test has detected that your script debugger.

    Hello world. I am setting up a new test facility and the writing of my first sequence with an existing sequence of legacy code.

    When I run the sequence and stop on the call to the DLL and then enter in the dll and I get this error:

    test has detected that your debug script settings might require visual studio to block when attaching to the process of teststand to perform this step on.

    To correct this problem, open internet explorer, select Tools > Internet options > advanced, see navigation > kids debugging the scripts, click OK and restart your sequence is run.

    The message is vague and it is indermanent whether if I should 'enable' or 'disable' debugging the scripts so I tried both. Test bench, then crashes again, and I get the same error.

    Do I need to restart after each accident? I will try that next. Any ideas on how to make this error go away?

    Thank you for your help.

    Richard

    Hmm, I clicked on your profile and could not find a mermaid.

  • Responds very slowly. I get an error no longer - unresponsive Script / Message CAUSE: McAfee

    In the last week or so, my Thunderbird account began to go very slowly and displays a message at the top - is unresponsive.
    The program then hangs or I have to stop him going out.
    It worked well for the first two months, but for some reason that it started his.
    I'm not very computer and to my knowledge have not changed the settings on the computer.
    I used Mozilla since Netscape has been abandoned and did not have this kind of problem before. Firefox seems to work very well.
    Any help will be greatly appreciated.

    Sounds like a lot of McAfee antivirus

    See https://wiki.mozilla.org/Thunderbird: test: Antivirus_Related_Performance_Issues #Solutions_for_Antivirus_Software

  • Microsoft Script Debugger


    Sliman,

    Please send me an email to: myfirstname mylastname AT DOT or DOT com (no middle initials) and I'll send you another way to get to this download.

  • Script of long-term slow down my computer.

    OT: Long-running Script.

    I have a Windows 7 laptop. I get the message that I have a script of long-term slow down my computer. What exactly is that and how it stop?

    Could you give a little more detail please, if possible. For example when these pop-up messages? you're in a browser (Internet explorer?) when they occur, or do they appear just when you have nothing open on your desktop?

    IF they pop up when you use Internet Explorer, have a read of this to see if it gives indications - https://support.microsoft.com/en-us/kb/308260 (unfortunately, it's pretty long).

    Alternatively, you can try to disable the IE script debugger, but maybe it's more to hide the fault rather than fix, assuming it is useful at all.

    Open IE, tools, Internet Options, [Advanced] tab, click on "Disable Script debugging (IE) press OK, close IE and re - open it to see if its helped." There are also "Disable script debugging (other) to try to see if that helps." If they do not help, reset them.

    If this doesn't help not or if you need further assistance, please post back and someone will try to help.

  • scripts for long durations

    I continue to have a pop up box - when in various programs — that the readings for example - Facebook.com has stopped woring due to a long-running script - I can't find the script - but the music starts playing - looks like a game - I deleted all the games but it always keeps popping up - thank you for your help.

    Hello

    1. what browser you use on the computer?

    2 is this problem specific to all Web sites or all Web sites?

    If you are facing this problem when you use Internet Explorer, then try the following steps.

    To resolve this problem, use the following methods in the order in which they are presented. If method 1 does not resolve your problem, go to the next method.

    Method 1:

    I suggest you to run the fixit available at the following link:

    Troubleshoot Internet Explorer to IE quick, safe and stable

    http://support.Microsoft.com/mats/ie_performance_and_safety/en-us

    Method 2:

    Follow the steps in the following article:

    Tips for solving problems when Internet Explorer hangs or stops working

    http://Windows.Microsoft.com/en-us/Windows7/tips-for-solving-problems-with-Internet-Explorer

    Warning: him reset Internet Explorer settings feature might reset security settings or privacy settings that you have added to the list of Trusted Sites. Reset the Internet Explorer settings can also reset parental control settings. We recommend that you note these sites before you use the reset Internet Explorer settings.
    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

     

    Method 3:

    See the steps in troubleshooting mentioned in the following article:

    How to troubleshoot the script errors in Internet Explorer on Windows computers http://support.Microsoft.com/kb/308260

     

    For your reference:

    What should you do about Internet Explorer script errors?

    http://Windows.Microsoft.com/en-us/Windows7/what-should-you-do-about-Internet-Explorer-script-errors

    Response with more information to help you.

  • How to stop a script of long-run, or leave in the first place?

    How to stop a longrunning script to stop or start in the first place. It does in itself. I don't know what it is. The only reason for which we know that it is running is because from time to time, we get a box popping up to say something like "this can't start/work due to a long-running script. Is this something that is important for our computor or is she something harmful, or simply unnecessary?

    Hi Anna-KarinEdvardsson,

    1 did you change on your computer before the show?

    2 are. what scripts you referring?

    3. when exactly the script starts?

    I suggest you to set the computer to clean boot and check how it works.

    To configure the computer clean boot, follow the steps in the below link:

    How to perform a clean boot

    Note: After the installation of updates to the clean boot follow step: 7 article to reset your computer to normal startup.

  • an error has occurred in the script on this page. __________

    Line 30 Char: 3 error: library not regitsted Code: 0 URL - file

    ; How can C:/program%20Files/Dell%20Support%20Center/sscommon/inclss_shellinclude.js I solve this

    Your problem is probably not with Windows XP, but with the Dell Support Center software.

    You may contact Dell for assistance, but they like to sometimes just reinstall XP as a "solution" to the problems.

    You can uninstall the Center Support of Dell by using Add/Remove programs and get the latest version (32 or 64 bit) from here:

    http://www.Dell.com/content/topics/global.aspx/services/en/dsc_home?c=us&l=en

    If you are not sure what version to download, to do this, and we will help you discover:

    Click Start, run and enter in the box:

    Msinfo32

    Click on OK and when the system info summary appears, click on Edition, select all, copy, and then paste the information here.

    There will be some personal information (such as the user name and the name of the system), and anything that turns information private for you, simply delete the pasted information.

    If you see this message in Internet Explorer, you can also configure IE does not ask you if you want to debug a faulty script, someone else.

    Given that most of the people have no interest in debugging the scripts (unless you are a developer of a script and it's your script), I just do not get bored with things from Internet Explorer.  You can run through scripts that have problems in your regular WWW surfing too, so disable the IE script debugger is usually a good idea, no matter what you decide to do about your Dell Support Center.

    In Internet Explorer, click on tools, Internet Options, advanced, and check the box:

    Disable script debugging

    Restart your system and try the web page again to make sure that the fit sticks...

    Do, or do not. There is no test.

    I need YOUR voice and the points for helpful answers and propose responses. I'm saving for a pony!

Maybe you are looking for