Trouble!
My script to eliminate more than one tab in a row:
tell application "QuarkXPress"
activate
do script {tabKiller}
end tell
script tabKiller
tell document 1 of application "QuarkXPress"
activate
try
tell current box
tell story 1
set every text where it is (tab & tab) to tab
end tell
end tell
end try
end tell
end script
I’m running it on a box I have selected, and its deleting chunks of text.
I’m scared. Why would it do this?