Subj : Re: Use org.mozilla.javascript.tools.debugger in application which To : netscape.public.mozilla.jseng From : Igor Bukanov Date : Tue May 25 2004 03:29 pm Merten Schumann wrote: > I do start the debugger in a Runable and it appears. > It shows my first script and another window appears with the console > when the first script is done. If you do not need the console window which also capture System.err and System.out, then you can copy the source of org.mozilla.javascript.tools.debugger.Main.main into your application and remove console initialization calls there. It may also help to resolve the second issue. Regards, Igor > > But then it seems my application will not continue to work. I was able > to break when my first script was to be executed, but then my > application sits there and no further things seem to happen ... What the > program does is to execute a test frame using Junit. Maybe some > threading issues with JUnit or so. Ok, I think I have to investigate > things here, maybe I can find out via my Java Debugger where my > application sits around ... .