Hi there; new guy, trying to put a space before every character that is superior.
Can anyone tell me why the script below isn’t working?
tell application “QuarkXPress™ 4.11”
activate
tell story 1 of every text box of document 1
try --Put a space before all superior text–
copy " " to before (every text style range whose style contains {superior})
end try
end tell
end tell
And where would I find a list of how AppleScript refers to invisible characters, like spaces, tabs, soft returns, etc.?