Adobe/Macromedia Director

Dear All,

I would like to integrate TurboActivate with my Adobe Director movie. Has anyone here done anything similar using LINGO or JAVASCRIPT?

Thank you

Yes, you can use TurboActivate with Adobe Director. You'll have to use a plugin that allows you to call dlls from your script. There are a few such plugins out there. I believe one of them is free.

Thank you for the prompt reply... I did find DLLBinder xtra from Minds Eye Visualization but still having problem integrating the routine into my director movie:---------------------------------- g_strDllName=the moviePath & "TurboActivate.dll" nErr=0 ProductVersionGUID = "75a9a07855800758e0a299.12100794" -- RETURN VALUE strRetValFormat="r" lstRetValList=[] -- INPUTS strInputArgFormat="s64" lstInputArgList=[ProductVersionGUID] --name of DLL API function to be invoked strFnName="IsActivated" --call the mevDllBinderExamples.dll API nErr=mevCallDllFun( \ g_strDllName, \ strFnName, \ strInputArgFormat, \ lstInputArgList, \ strRetValFormat, \ lstRetValList)---------------------For example using the code above just to check if my application is activated I seem to get a return value of 7 which makes no sense. For the life of me I cannot figure out how to get the return value of the API function. Any help from anyone highly appreciated.