thewilson
Joined: 28 Aug 2008 Posts: 18
|
| Posted: Fri Aug 29, 2008 - 8:14 pm Post subject: not at a mac right now |
|
|
I'm using an applescript and javascript backend to a widget I'm working on. One of the tasks is gathering data from an excel worksheet and some web sites. I have setup and successfully gathered the data from the websites but since I'm writing the function on windows cant test it. If I refrain from activating excel should dashboard remain active?
| Code: |
on getValue(arange)
tell application "excel"
try
set myvalue to formula of range(arange)
on error
set myvalue to "Error debug me"
end try
end tell
return myvalue
end getValue
|
I'm pretty sure it will but since I searched so hard for this and never found any results this may serve for others. |
|