Access to Event Macros through Scripting API

Hi!

Is it possible to access to Event Macros through FMOD Studio scripting api?

The closest thing that I could find by myself is studio.window.browserCurrent().mixer.masterBus.dump(), but seems that only pitch property correctly updated when I change it in studio tool. maxInstances and instanceStealing are always 65 and 0 respectevly, and there is no Priority property at all.

Thanks!

Hello!

The settings you are looking for are under automatableProperties.

var event = studio.window.browserCurrent();
event.automatableProperties.dopplerScale = 500;

Richard, thanks a lot!