VoiceAttack

Profiles, Commands and Plugins => Plugin Discussions => Topic started by: wiksa on March 17, 2024, 03:28:55 PM

Title: I can't switch profiles
Post 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 :

Code: [Select]
vaProxy.SwitchTo("My Profile");
With the Guid method. I got the guid from the expanded vap file :

Code: [Select]
Guid profile = new Guid("b7bb5371841347689100b236559f66cc");
vaProxy.SwitchTo(profile);

None of them work. What am I missing ?


Title: Re: I can't switch profiles
Post by: wiksa on March 17, 2024, 03:49:17 PM
I found the solution and it was easy...

Code: [Select]
vaProxy.Profile.SwitchTo("My Profile");
The answer was a few post below... sorry for that.