Welcome to the Indigo Rose Software discussion forums! You will need to sign up for a forum account and login before you can post. Need help? View the Forum FAQ.
Announcement
Collapse
No announcement yet.
C++ with Autoplay Media Studio ! [How to use a different programming language]
Hey guys ! I was wondering if there is any possible way where I could use C++ coding instead of LUA into my AMS project ?
How can I use C++ in AMS ?
You could develop a DLL and call it with AMS' native functions for DLL invocation or use MemoryEx and interface with the DLL. You could also write a plugin or Lua module, which allows you to translate functionality from a low level language like C++ (or C, PureBasic, even ASM) to Lua. Lua provides a lot of functionality for extending and modifying the language. For an AMS plugin you can use the Indigo Rose Plugin SDK. When you want to extend Lua, you need just the Lua includes (C/C++)
If all that fails, you could use MemoryEx and write functionality in Assembly (fASM) run-time
Comment