Folks can anyone tell me how to disable the JAWS new autoStart event. And, then 
how to re-enable it. I may be calling this event by the wrong name but it is 
the function that if JAWS crashes  JAWS will automatically re-start.


In the script below JAWS will crash and then re-start in JAWS 16. Using same 
script in JAWS 12 it does work.  Please see see script for testing below and if 
anyone has any ideas for me please let me know.
I thank you.

Note, I have put this to FS and I am told to go back to basics of Scripting and 
that my variables are wrong and I need to use the LET . I am also told it is an 
infinite loop thus JAWS crashes.

However, LET was dropped in JAWS 11 and this loop works in JAWS 12 and if one 
reduces the numbers you will find it does work in JAWS 16. However, with the 
current numbers of which I ned JAWS crashes, I believe, due to the new 
autoStart event. Just a guess.

Put script in wordpad and attach a key

var int i,
int loopR,
int loopC,
int year,
int colNum,
int multiplier


                while loopR < 21
                                
;IniWriteString(ExtraScreenTitle,inttostring(loopR + multiplier), "Account #" + 
inttostring(loopR ) + "|0" + inttostring(loopR +6) +"|26|", extrafieldpath)
                                delay(2)

                                year = 2015
                                loopC = 1
                                colNum = 39
                                while loopC < 13
                                                
;IniWriteString(ExtraScreenTitle,inttostring(loopR + loopC + multiplier), 
inttostring(year) + " for account #" + inttostring(loopR ) + "|0" + 
inttostring(loopR +6) + "|" + inttostring(colNum) + "|", extrafieldpath)
                                                delay(2)
                                                colNum = colNum + 3
                                                loopC = loopC + 1
                                                year  = year  - 1
                                EndWhile

                                saystring(inttostring(loopR) + " completed")
                                loopR = loopR + 1
                                multiplier = multiplier + 12

                EndWhile
                saystring("FULL TEST completed")

robin
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/

Reply via email to