DW1 99 Report post Posted July 26, 2007 In IE 'internet options' > Advanced > Under "Browsing" There is an option called "Disable script debugging (Internet Explorer)" and "Disable script debugging (Other)". Changing the "Disable script debugging (Other)" to 'checked' will stop my JIT debugger from coming up in my script. Is this a reg key somewhere? anybody know? Thanks AutoIt3 Online Help Share this post Link to post Share on other sites
mikehunt114 0 Report post Posted July 26, 2007 Use RegMon to see if/what registry changes are made. IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font] Share this post Link to post Share on other sites
DW1 99 Report post Posted July 26, 2007 (edited) I used "What Changed" and found that these will solve my JIT problem RegWrite( "HKEY_USERS\S-1-5-21-1242909238-215958010-794563710-284610\Software\Microsoft\Internet Explorer\Main", "Disable Script Debugger", "REG_SZ", "yes" ) RegWrite( "HKEY_USERS\S-1-5-21-1242909238-215958010-794563710-284610\Software\Microsoft\Internet Explorer\Main", "DisableScriptDebuggerIE", "REG_SZ", "yes" ) Thanks mike EDIT: Will this be the same on every computer? Or is there a dynamic way to call the KEY? EDIT2: Nevermind I found em... Thanks anyhow EDIT3: To Disable The Debugger For your script: RegWrite( "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Disable Script Debugger", "REG_SZ", "yes" )oÝ÷ ØZ+ F®¶se&Vuw&FRgV÷C´´Uô5U%$TåEõU4U"b3#µ6ögGv&Rb3#´Ö7&÷6ögBb3#´çFW&æWBWÆ÷&W"b3#´ÖâgV÷C²ÂgV÷C´F6&ÆU67&DFV'VvvW$RgV÷C²ÂgV÷Cµ$Tuõ5¢gV÷C²ÂgV÷C·W2gV÷C² Edited July 26, 2007 by danwilli AutoIt3 Online Help Share this post Link to post Share on other sites