Run Script Error
Run Script Error
- Subject: Run Script Error
- From: email@hidden
- Date: Sat, 6 Mar 2004 21:37:04 EST
I am trying to run a script from inside of a script and get an error message.
This is the sript:
tell application "Microsoft Excel"
Activate
set RowNum to Row of ActiveCell
set ColNum to Column of ActiveCell
set FormulaR1C1 of ActiveCell to "Home Phone"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
set FormulaR1C1 of ActiveCell to "Home phoneb(bla) bla-blah"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
end tell
run script "OS X Boot:DOCUMENTS:AppleScripts:PerTaxScripts:PerCheckNum"
When I run the script, I get an error message "A identifier can't go after
this identifier" and the final line (run script, etc.) is highlighted. The
PerCheckNum script runs fine when I run it by itself from within the script
editor.
What am I doing wrong?
Thanks in advance,
Tom Carlson
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.