Convert applescript studio project to objective c

I have a complete Studio project … but I’ve reached a bottleneck in that I now need the same app to be multi-tasking … and as you know Applescript is not capable of multi-tasking.

So, C++ to the rescue … do I have to completely trash all the applescript code and completely start over, or is alot of the applescript reusable and at the same time making the resulting app multi-tasking??

Thanks in advance …

To the best of my knowledge, if you’re interfacing with different Applications, the APIs for those apps must support Objective-C. Otherwise, you definitely must re-use your ApplesScripts, by calling them from your Objective-C code. This has worked ok for me in the past, but I don’t know of any way of passing values back and forth between the two.