Article ID: 115815
Article Last Modified on 11/17/2003
tell application "Microsoft FoxPro"
Do Script "SET DEFAULT TO .\tutorial "
end tell
The \t will be interpreted as a horizontal TAB character that will cause
the command to fail without an error message. To correct this problem, the
syntax of the AppleScript script should be:
tell application "Microsoft FoxPro"
Do Script "SET DEFAULT TO .\\tutorial"
end tell
Depending on what character follows the backslash, three results could
occur:
Additional query words: VFoxMac FoxMac 2.50 Apple Script back slash
Keywords: KB115815