2

When I dispatch an action, like getQuiz, Bixby will show "Searching for Quizs" before it finds the quiz. How do I customize this text?

2 Answers2

2

Use a progress dialog e.g. do something like this:

dialog (Progress) {
  match: viv.weather.SolarNoon {
    from-output: viv.weather.GetSolarNoon (this)
  }
  choose (Random) {
    template (Performing solar calculations...)
    template (Consulting my analemma...)
  }
}
rogerkibbe
  • 358
  • 2
  • 10
0

If you don't want to have any progress dialogs, you can use the type (Calculation) for the action.

dogethis
  • 519
  • 6
  • 15