Virtual Agent: Change "Show me everything" button

Ivan Delchev
Giga Contributor

Hello,

Is it possible to see how this "Show me everything" button works. I can see that this is calling it: vaSystem.sendTopicPickerControl. But there is no documentation about this method and all vaSystem methods at all. Is it possible to check all vaSystem methods.

Another question is if I can find somewhere all vaVars variables.

Thank you!
Ivan

6 REPLIES 6

You may use the overloaded function of 

vaSystem.sendTopicPickerControl(string agentChatMessage, string showMeEverythingText);
 
Unfortunately, this is not officially documented anywhere. Mind boggling as to why not. And if you parse null as the first parameter, it spits it out as a string. Or, if you use an empty string, you get an empty chat message.

Muralidharan BS
Mega Sage
Mega Sage

HI Ivan and @yundlu316 

If you are looking to change the text of "show me everything", create a UI message with the key value and add your message like below,

find_real_file.png

 

If you are looking to replace the before text of "show me everything", you can create a UI message and call it. 

 var greetingMessage = gs.getMessage('ShowMe  nonsystem')
    vaSystem.sendTopicPickerControl(greetingMessage);

 

If you are looking to replace the first line (static) you can update the ui messsage - "Hi, I'm your Virtual Agent"

 

Result:

find_real_file.png

Thanks,