VoiceAttack
Profiles, Commands and Plugins => Plugin Discussions => Topic started by: wiksa on March 17, 2024, 03:28:55 PM
-
Hello,
I am developing a plugin that should automatically switch profiles. I tried the two ways to do it according to the documentation.
With a string :
vaProxy.SwitchTo("My Profile");
With the Guid method. I got the guid from the expanded vap file :
Guid profile = new Guid("b7bb5371841347689100b236559f66cc");
vaProxy.SwitchTo(profile);
None of them work. What am I missing ?
-
I found the solution and it was easy...
vaProxy.Profile.SwitchTo("My Profile");
The answer was a few post below... sorry for that.