How to parse values between AppleScript and Word (for MAC) VBA? I mean send values to AppleScript from Word VBA and likewise send back values to VBA.
The idea is that a value (string) will be parsed to AppleScript. That will process the value and parse back the output value to Word VBA. The parsed back value have to be an array.
For example,
Dim arrStr() As String
arrStr() = MacScript("<code here>")
?