In hope this info may still be of help:
For reference, the stop-on-error behavior you're seeing is
intrinsic to AppleScript, and not related to either TextWrangler
or the prior poster's question. :-)
Thus, in order to prevent your script from stopping on errors,
you'll need to wrap each command within a 'try' block as
detailed here:
try Statements | AppleScript Language Guide
<
https://developer.apple.com/library/mac/documentation/AppleScript/Conceptual/AppleScriptLangGuide/reference/ASLR_control_statements.html#//apple_ref/doc/uid/TP40000983-CH6g-128973>
so your script would then look something like this:
====
tell application "Terminal"
try
do shell script "rm -r ~/Desktop/*"
delay 1 --pause for a sec
end try
try
do shell script "rm -r ~/Documents/*"
delay 1 --pause for a sec
end try
[ ... etc ... ]
====
[PS: Since you just want your script to keep running and don't
need to perform any alternate actions if an error occurs, you
can omit the optional 'on error' statements.]
Regards,
Patrick Woolsey
==
Bare Bones Software, Inc. <
http://www.barebones.com/>