Can you correct my unfunction my script?

Hi, everyone
I made a script for add a continued at end of paragraph but unfunction, call you please help to fix it?
var myDialog = app.dialogs.add({name:"add continueds",canCancel:true});
with(myDialog){
    with(dialogColumns.add()){
        with(dialogRows.add()){
           var mySelection = dropdowns.add({stringList:["Continued", "continued", "Cont'd","cont'd"], selectedIndex:0});
if (myDialog.show() == true)
main();
function main(){
var myObject;
var myCheckSelection = false;
if(app.documents.length > 0){
  if(app.selection.length > 0){
   switch(app.selection[0].constructor.name){
    case "InsertionPoint":
    case "Character":
    case "Word":
    case "TextStyleRange":
    case "Line":
    case "Paragraph":
    case "TextColumn":
    case "Text":
    case "Cell":
    case "Column":
    case "Row":
    case "Table":
     myObject = app.selection[0];
     if(myObject != "None")
else{
  alert("No documents are open. Please open a document and try again.");
function addContinueds(){
    if (mySelection.selectedIndex == 0){
   app.findGrepPreferences.findWhat = "(.)\\r";
   app.changeGrepPreferences.changeTo = "$1 (Continued)\\r";
   app.selection[0].changeGrep();
   app.findGrepPreferences = app.changeGrepPreferences = null;
    if (mySelection.selectedIndex == 1){
   app.findGrepPreferences.findWhat = "(.)\\r";
   app.changeGrepPreferences.changeTo = "$1 (continued)\\r";
   app.selection[0].changeGrep();
   app.findGrepPreferences = app.changeGrepPreferences = null;
   if (mySelection.selectedIndex == 2){
   app.findGrepPreferences.findWhat = "(.)\\r";
   app.changeGrepPreferences.changeTo = "$1 (Cont'd)\\r";
   app.selection[0].changeGrep();
   app.findGrepPreferences = app.changeGrepPreferences = null;
  if (mySelection.selectedIndex == 3){
   app.findGrepPreferences.findWhat = "(.)\\r";
   app.changeGrepPreferences.changeTo = "$1 (cont'd)\\r";
   app.selection[0].changeGrep();
   app.findGrepPreferences = app.changeGrepPreferences = null;
John

Hi, Jarek
I change it into this format (for in case of find-change two or more items) but not work: ---- why?
var
  mySelected = Number( app.extractLabel("mDialog") ),     //     previous selection's set
  myDialog = app.dialogs.add({name:"add continueds",canCancel:true});
  if ( isNaN( mySelected ) ) mySelected = 0;
  with(myDialog){
       with(dialogColumns.add()){
            with(dialogRows.add()){
                 var
                 mySelection = dropdowns.add({stringList:["01   Continued", "02   continued", "03   Cont'd","04   cont'd"], selectedIndex: mySelected});
if (myDialog.show() == true)
    main();
myDialog.destroy();
function main(){
  mySelected = app.insertLabel( "mDialog", String(mySelection.selectedIndex) );     //     to remember selection's set
  if(app.selection.length && app.selection[0].hasOwnProperty ("contents") ) addContinueds(); 
  else alert("Wrong selection. Please try again.");
function addContinueds() { 
  app.findGrepPreferences = app.changeGrepPreferences = null;
  switch (mySelection.selectedIndex){
       case 1:
  app.findGrepPreferences.findWhat = "(.)\\r";
  app.selection[0].changeGrep();
  app.changeGrepPreferences.changeTo = "$1 (continued)\\r";
  app.findGrepPreferences = app.changeGrepPreferences = null;
            break;
       case 2:
  app.findGrepPreferences.findWhat = "(.)\\r";
  app.selection[0].changeGrep();
  app.changeGrepPreferences.changeTo = "$1 (Cont'd)\\r";
  app.findGrepPreferences = app.changeGrepPreferences = null;
            break;
       case 3:
  app.findGrepPreferences.findWhat = "(.)\\r";
  app.selection[0].changeGrep();
  app.changeGrepPreferences.changeTo = "$1 (cont'd)\\r";
  app.findGrepPreferences = app.changeGrepPreferences = null;
            break;
    default:
  app.findGrepPreferences.findWhat = "(.)\\r";
  app.selection[0].changeGrep();
  app.changeGrepPreferences.changeTo = "$1 (Continued)\\r";
  app.findGrepPreferences = app.changeGrepPreferences = null;
            break;

Similar Messages

  • TS1135 how can you correct just a few words on the text in the flap of a iPhoto book? do you have to rewrite it all?

    How can you correct just a few words in the text on the flap of iphoto book?

    Select it and change it - exactly like you edit any text on yoru Mac
    LN

  • Can you do this in Bridge scripting?

    I'm game to learn Bridge scripting if it can do what I want, but I have no idea how I even get started in learning what can and can't be done from Bridge scripting. So, here are a couple questions. If someone can give me some guidance on whether it can be done, I'll dive in and figure out how.
    I'm interested in adding a new view to Bridge that would filter out original files when there is an edited copy in the same directory with a common root name. I'd like to only show the edited copy and not the root name. In other cases, I'd like to select only the latest version.
    Is it possible to use the Bridge scripting to make a new menu item that would select only the latest copy of an image? I'd write my own logic in JavaScript to examine the filenames and decide which images should be selected.
    Also, is it possible to create new views in Bridge so that I could view only the latest version of an image? Again, I'd write my own logic in JavaScript to device which images should be displayed.
    --John

    I've wondered about Version Cue since it came out. It appears that you have to buy the whole suite in order to get it and that it's not available separately or just with Photoshop CS2. Is that correct?
    I am a photo hobbiest and the suite is out of my price range (if I was going to spend that kind of money for my hobby, I'd spend it on a lens or towards another camera body), particularly when Adobe's policy for upgrades when you own the suite is that you have to upgrade the whole suite every time, not just a component.
    If you know of a good, in-depth writeup that covers the version cue features, I haven't been able to find one.
    Thanks for the info directing me at a custom browse scheme. I'll read about that and see how feasible it would be to present a "poor man's latest version display". I had in mind that the naming scheme would be pretty easy. I think the only rule that I'd have to follow in my edited versions is to preserve the original root name in the edited versions. If there were multiple edited versions, I'd pick the one with the later time/date.
    I'm off to read some more about how to get started with this. I'm glad this forum exists.
    --John

  • Could you correct this 4-lines-script please?

    Hi guys!
    I've some troubles with this script...
    [CODE]
    tell application "iTunes"
    set some_items to the selection
    do shell script "chmod a-w " & quoted form of POSIX path of (some_items as alias)
    end tell
    [CODE]
    Where is the fatal error? (In Finder it works succesfully..)
    Tks in advance..:))

    You can directly edit a file in AppleScript, for example:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;">
    set someLyrics to "blah blah blah
    blah blah blah"
    set theFile to (path to desktop as text) & "test.txt"
    set fileRef to (open for access file theFile with write permission) --fileRef is used to reference the file
    write ((current date) as text) to fileRef
    write return to fileRef
    write someLyrics to fileRef
    close access fileRef --be sure to close the file </pre>
    If you want to append to an existing file, you need to write beyond the existing contents (eof=end of file):
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;">
    set someLyrics to "blah blah blah
    blah blah blah"
    set theFile to (path to desktop as text) & "test.txt"
    set fileRef to (open for access file theFile with write permission) --fileRef is used to reference the file
    write ((current date) as text) to fileRef starting at eof
    write return to fileRef starting at eof
    write someLyrics to fileRef starting at eof
    close access fileRef --be sure to close the file </pre>
    There's quite a bit more to this subject, but if you need to ask further questions I would encourage you to post these separately to get the widest audience / quickest response.

  • There is a CSS error with Mozilla Thimble currently - showing a big white box over the code area. Can you correct this?

    I guess this is a question for mozilla dev.

    It will be better if you submit a bug with how to reproduce. Submit a bug here: https://bugzilla.mozilla.org/enter_bug.cgi

  • Can you hide a layers using scripting?

    I have a very complex graphic with many elements and I would like to find a way to hide layers based on a list.  In the documentation that there is a way to tell if a layer is hidden, but didn't see anything about a way to actually to control the hide/unhide property.  Is this possible?
    Thanks!

    Thanks Larry,
    The script came back with an error on this line:
    var ilayer = doc.layers("AuthorLine")
    Error message was:
    "Layers() is not a function."
    (If it matters, I am using Adobe Illustrator CS5.1.   I'm not sure if the functions are substantially different.)
    Tom

  • Can you use components in the Script area?

    I really would like to implement the linkbutton in my functions.

    public function mainFunction():void{
                    var cache:int = 0;
                while(myCanvas.numChildren > 0){
                    myCanvas.removeChildAt(0);
                while(myCanvas.rawChildren.numChildren > 0){
                    myCanvas.rawChildren.removeChildAt(0); 
                    //text format for links 
                        //text format end 
                    if(amt_cnt.count == 1){ 
                        amt_cnt.end = amt_cnt.endCache; 
                        amt_cnt.start = amt_cnt.startCache; 
                        //set the text 
                        var myButton:LinkButton = new LinkButton(); 
                        myButton.label = "Can't find your answer? Need more help?"; 
                        myButton.x = 275; 
                        myButton.y = 200; 
                        myCanvas.addChild(myButton); 
                        myButton.addEventListener(MouseEvent.CLICK, moreHelp); 
                    }else{ 
                        amt_cnt.end = amt_cnt.endCache; 
                        amt_cnt.start = amt_cnt.startCache; 
                        var myButton1:LinkButton = new LinkButton(); 
                        myButton1.label = "Can't find your answer? There are more answers."; 
                        myButton1.x = 275; 
                        myButton1.y = 200; 
                        myCanvas.addChild(myButton1); 
                        myButton1.addEventListener(MouseEvent.CLICK, moreQuestions); 
    well it doesnt have to be in a forloop...

  • Can you use html text in flash cc html5 project type?

    I'm attempting to dynamically change font color of various words inside a dynamic text field.
    I have tried both these lines of code below. have you dont this can you correct my code please?
    I'm using flash cc and html5 project type. This was possible in previous versions of flash.
    this.Logger.Log_File.htmlText = "<font color='#000000' size='-1'>"+MyGreatNumber+" "+"</font><BR>"+this.Logger.Log_File.htmlText;
    this.Logger.Log_File.htmlText = "<p style="color:#ff0000">"+MyGreatNumber+"</p><br>"+this.Logger.Log_File.htmlText;

    from the easeljs docs: Please note that Text does not support HTML text, and can only display one font style at a time. To use multiple font styles, you will need to create multiple text instances, and position them manually.
    to resolve, edit text in the js file where it's relatively easy to even use rtl text.

  • Can you point me to FrameScript samples that do some or all of the following?  Or maybe even write the script for me for $$$? :-)

    Hi,
    I'm brand new to writing FrameScript.  I'm looking for example scripts that I can piece together or perhaps you can give me a quote for your cost to write the script for me.  Here is a description of basically what needs doing.  We have .book files than contain say a cover.fm, multiple  chapter.fms, and possibly multiple appendix.fms.  (They actually contain more  types, but I can expand the script for that.)  I don't think here is a  consistent way to automatically determine which .fms are of which type, so I was  thinking of popping up a dialog box that showed the files in the book and asked  the user to identify which files were of which type.  This asking could be done  all at once, or it could iteratively ask for the first type then run all the  processing then ask for the second type, etc, etc.
    The processing of each file goes like  this:
    1) Delete the paragraph and character catalog  contents
    2) Import all formats, including the new paragraph and  character catalogs from correct template file (chapter.fm, appendix.fm,  etc)
    3) Remap the old paragraph and character tags to the  new ones, preferably based on an internal predefined, hard-coded table, but  possibly using the "use a remapping table that is in another .fm file" method.   It's just that the latter method requires the user to open two more .fms in  addition to the several other template files they'll already (correct?) have to  have open.
    4) Report to the user all tags that are in their file  that are not in the new catalogs
    Can you point me to pieces?  Write the whole thing?  Recommend someone who can?
    Thanks,
    Dave

    Dave, if you haven't yet check it out, do visit the Framescript users group, here:
        http://groups.yahoo.com/group/framescript-users/
    There are several folks who do contract FS work who post their contact info as part of that group (I believe there's a webring also). Also,  Rick Quatro has a good e-book "Crash Course" about learning FrameScript (although the book refers to an earlier version, almost all of the concepts are still applicable to the current versions of FS and FM) , check it out at
    http://www.frameexpert.com
    Sheila

  • Paste in place to next Master unfunction, can you fix it?

    Hi, everyone
    I got this script, which copy from:
    Paste In Place to Specify Master Page
    I change it into:
    var myDialog = app.dialogs.add({name:"Copy Select item to next Master",canCancel:true});
    with(myDialog){
        with(dialogColumns.add()){
        staticTexts.add({staticLabel:"Select a Master you want to copy to"});
            with(dialogRows.add()){
               var mySelection = dropdowns.add({stringList:["Master A", "Master B","Master C", "Master D", "Master E","Master F", "Master G"], selectedIndex:0});
    if (myDialog.show() == true)
    function main(){
      if("Copy to next Master");
          copy_to_next_master(); 
    function copy_to_next_master() { 
        if (mySelection.selectedIndex == 0){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[0] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  A");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[1] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  B");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[2] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  C");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[3] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  D");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[4] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  E");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[5] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master  F");
        if (mySelection.selectedIndex == 1){
    var nSel = app.selection.length;   
    for ( var i = 1; i < app.documents.length; i++) {   
            var nextDoc = app.documents[i];   
            if (!nSel) { alert( "Nothing selected!" ); exit(); } 
            for ( var n = 0; n < nSel; n++ ) { 
                var curSel = app.selection[n]; 
                curSel.duplicate( nextDoc.masterSpreads[6] ); 
    alert("Done.\rWhat you select are pasted in place to next documents' Master G");
    but unfunction, can you fix it?
    thanks
    Teetan

    Hi,
    Modifying your code - notice that function main() suppose to be
    1. defined and
    2. called
    Compare it to this code:
    #target  indesign
    var
      myDialog = app.dialogs.add({name:"Copy Selected item(s) to chosen Master",canCancel:true}),
      mStringList = ["Master A", "Master B","Master C", "Master D", "Master E","Master F", "Master G"];
    with(myDialog){
      with(dialogColumns.add()){
      staticTexts.add({staticLabel:"Select a Master you want to copy to"});
      with(dialogRows.add()){
      var mySelection = dropdowns.add({stringList:mStringList, selectedIndex:0});
    main();
    function main(){
      if (!app.documents.length || !app.selection.length)
      alert( "Nothing selected!" );
      exit();
      if (myDialog.show() == true)
      copy_to_next_master();
    function copy_to_next_master() {
    var
      mChoice = mySelection.selectedIndex,
      mMsg = "Done.\rWhat you select is pasted in place to next documents - " + mStringList[mChoice],
      nSel = app.selection.length,
      mDone = false,
      i,n,nextDoc,curSel;  
    for ( i = 1; i < app.documents.length; i++) {  
      nextDoc = app.documents[i];  
      targetMaster = nextDoc.masterSpreads[mChoice];
      if (!targetMaster.isValid) {
      mMsg += "\rCan't detect " + mStringList[mChoice] + " in a doc: " + nextDoc.name;
      continue;
      mDone = true;
      for ( n = 0; n < nSel; n++ ) {
      curSel = app.selection[n];
      curSel.duplicate( nextDoc.masterSpreads[mChoice] );
    mDone ? alert(mMsg) : alert("Nothing copied");
    Jarek

  • Can you give a document link for script logic for NW version7??

    Hi all,
        who can give a document link for script logic for nw version7??
        thanks in advance!!

    Hi Sheldon,
    I read through your "HOW to...Custom BADI for replicating Destination_App...." and it was great. However, Can this call also be used with WHEN/ENDWHEN statements? In the MS version, when using Destination_App, I was also able to map source accounts into the correct destination accounts as well as source E type dim to desination E type dim with the following script (the mapping to destination ID was stored as properties within the source dimensions).
    *INCLUDE SYSTEM_CONSTANTS.LGL     
    *SELECT(%OPACCT%, "[ID]", "OPACCOUNT", " [TRF_FPA] = 'Y'")
    *SKIP_DIM = COSTCTR
    *ADD_DIM = BRANDS
    *RENAME_DIM OPAccount = Account_F
    *RENAME_DIM CATEGORY = CATEGORY_F
    *RENAME_DIM ENTITY = MARKET
    *RENAME_DIM DATASRC = DATATYPE
    *XDIM_MEMBERSET ENTITY = %ENTITY_SET%
    *XDIM_MEMBERSET CATEGORY = %CATEGORY_SET%
    *XDIM_MEMBERSET TIME = %TIME_SET%     
    *XDIM_MEMBERSET OPACCOUNT = %OPACCT%
    *DESTINATION_APP = FPA
    *CLEAR_DESTINATION
    *DESTINATION OPACCOUNT = %OPACCT%
    *DESTINATION TIME = %TIME_SET%
    *DESTINATION CATEGORY = %CATEGORY_SET%
    *DESTINATION CURRENCY = LC,USD
    *WHEN ENTITY
    *IS %ENTITY_SET%
    *REC(ENTITY=COSTCTR.FPA_MKT,OPAccount=OPAccount.Consol_FPA)     
    *ENDWHEN     
    *COMMIT
    I have tried the following code in the NW version, and it won't validate. Do you know if there's a way to achieve this?
    *XDIM_MEMBERSET CATEGORY<>ACTUAL
    *XDIM_MEMBERSET ACCOUNTHR =BASE_ANNL_SAL,BONUS,BENEFITS_TAX
    *XDIM_MEMBERSET CURRENCY=LC
    *START_BADI DAPP
    DESTINATION_APP=CC_PLAN
    RENAME_DIM="ACCOUNTHR=ACCOUNTCC"
    WRITE=OFF
    *END_BADI
    *WHEN ACCOUNTHR
    *IS "BASE_ANNL_SAL","BONUS","BENEFITS_TAX"
    *REC(ACCOUNTCC=ACCOUNTHR.CCPLANACCT)     
    *ENDWHEN
    Regards,
    Karen

  • How do I stop this A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionMana

    What is causing this warning when I open firefox and how do I correct it? > A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:623 <
    == This happened ==
    A few times a week

    I do not have the Ask toolbar and I get the Unresponsive Script message everyday.

  • Where would I start searching for someone to contact regarding this CONSTANT message? "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. "

    This is a cut and paste of the repetitive message that shows during every web session I have, repeatedly .
    "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: file:///C:/Program%20Files%20(x86)/Mozilla%20Firefox/extensions/%7B635abd67-4fe9-1b23-4f01-e679fa7484c1%7D/components/nsYahooFileIO.js:26".
    I am going to go nuts if I don't fix this soon, please help!

    The most likely cause is a problem with Java on your system - older and/or messed up Java installations seems to cause this issue sometimes.
    To fix:
    Step 1: Try installing latest Java version. Check your Firefox/system browser plugins from this page, and install latest version: [http://www.mozilla.com/en-US/plugincheck/ Mozilla Plugin Check Page] (also works for most other browsers)
    If latest Java (currently "Java(TM) Platform SE 6 U20 - Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers") does not fix the problem, you may have more versions installed on your system causing problems for each other. This leads us to -
    Step 2: Uninstall those you can from Control Panel -> Add/Remove programs. To make sure it is properly cleaned out, see [https://support.mozilla.com/en-US/forum/1/595817#threadId608043 these excellent tips from noah_sumo] to clean out Java completely, then install latest version again from the [http://www.java.com/en/download/manual.jsp Java.com download page].
    If you ''still'' get this error, you may have Norton or another security program which can also in some cases cause this issue. That takes us to:
    Step 3: Configure security program correctly.
    For Norton 360 see [[Configuring Norton 360]].
    For Norton Internet Security, see [[Configuring Norton Internet Security]].
    For other firewall programs, see [[Firewalls]].
    If none of these steps solves the problem, please provide any detail you can think of that may be related and let us know, and we will try to find other solutions to get this solved.

  • Several times every day I get the following message or something very similar, what can I do? A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Scrip

    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsBlocklistService.js:648
    == This happened ==
    Every time Firefox opened
    == It just started about 2 weeks ago but is now happening every day

    The most likely cause is a problem with Java on your system - older and/or messed up Java installations seems to cause this issue sometimes.
    To fix:
    Step 1: Try installing latest Java version. Check your Firefox/system browser plugins from this page, and install latest version: [http://www.mozilla.com/en-US/plugincheck/ Mozilla Plugin Check Page] (also works for most other browsers)
    If latest Java (currently "Java(TM) Platform SE 6 U20 - Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers") does not fix the problem, you may have more versions installed on your system causing problems for each other. This leads us to -
    Step 2: Uninstall those you can from Control Panel -> Add/Remove programs. To make sure it is properly cleaned out, see [https://support.mozilla.com/en-US/forum/1/595817#threadId608043 these excellent tips from noah_sumo] to clean out Java completely, then install latest version again from the [http://www.java.com/en/download/manual.jsp Java.com download page].
    If you ''still'' get this error, you may have Norton or another security program which can also in some cases cause this issue. That takes us to:
    Step 3: Configure security program correctly.
    For Norton 360 see [[Configuring Norton 360]].
    For Norton Internet Security, see [[Configuring Norton Internet Security]].
    For other firewall programs, see [[Firewalls]].
    If none of these steps solves the problem, please provide any detail you can think of that may be related and let us know, and we will try to find other solutions to get this solved.

  • When I first load Firefox, it comes up with an error message about "script". Can you help me?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/846741]]</blockquote>
    I just double click on the Icon, and it seems it takes forever to load.
    After this action, an error message comes up with a statement that it is trying to read some sort of script. Next it tells me to press continue to go ahead. At this time, it loads up normally. Can you help?

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for