This simple tip will place the popup window out of sight initially, and then once the page has loaded in the popup, and found whether there are errors or not, it will either move the window to a visible location, or show a message and close the window. This is not intended for RapidSpellWebMultiple usage. 1. Set RapidSpellWebLauncher.WindowY = 2000 (note negatives are not allowed). 2. In the popup page add this script to the head section <script> <% RapidSpellWeb1.CheckerEngine.Check(Request.Params["TextToCheck"]); if(RapidSpellWeb1.CheckerEngine.NextBadWord()!=null){ %>window.moveTo(100, 100);<% } else { %> alert("No Errors."); close(); <% } %> </script> assuming that your control is named RapidSpellWeb1. |