Questions tagged [bixbystudio]

189 questions
0
votes
1 answer

Can't use for ... of in bixby studio?

I understand that bixby studio supports es6. so I used for of when writing the loop but I got the following error ERROR missing ; after for-loop initializer Please let me know what is wrong. // email if (contactInfo.emailInfos) { for…
hyeon62
  • 30
  • 6
0
votes
4 answers

Need to force Bixby to interpret -- in speech as pause not minus

I have text output that contains "--John Doe" to indicate that the source of the quotation is John Doe. Bixby is reading it as "minus John Doe". I want to read it as "pause John Doe". I have enclosed the speech() in tags. dialog (Result) { match:…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
0
votes
2 answers

Implementing voice control next / previous / pause / resume with audioPlayer

I've built an audioPlayer Capsule that retrieves and plays a playlist of audio from a remote endpoint. In the simulator and on my Galaxy s9, I can invoke the Capsule & play audio. I can also use the navigation controls to skip forward / go back.…
nealrs
  • 435
  • 1
  • 5
  • 19
0
votes
1 answer

why is this Bixby layout failing to render?

Bixby failing to display paragraph text from object despite instruction to do so. I am trying to adapt the bixby basic transactional capsule which sells shirts to sell content packs. layout-macro-def (pack-details) { params { param (pack) { …
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
0
votes
1 answer

What training do I need for Date Input Views?

What kind of training do I need to get https://bixbydevelopers.com/dev/docs/reference/type/input-view.render.date-picker working with voice input? I have the following view for selecting a Birthday. input-view { match:Birthday render{ …
0
votes
1 answer

Post request Http call with data as Array of Objects from JS(Bixby capsule endpoint) to PHP server

When I'm sending the post request with JS ,Its sending success response.But table not updating.Only one of below postman request works and updates. I'm having following http call in js. JS code var url = "my url"; var obj = { 'wid': 4001, 'sc':…
Abhishek Sarkar
  • 167
  • 1
  • 9
0
votes
1 answer

Controlling the Back Button after Navigation Punchout

I have been trying to control the back button behavior on how far back it goes to the capsule after leaving the navigation punchout command. Such as, after pressing the back button on the website that was punchout, it takes me back two layout…
Otter B
  • 43
  • 5
0
votes
3 answers

how to search for text in json array

Need to search JSON array for text string. The facts/joke module in Bixby currently searches by tags rather than full text. I want to modify the filter function to search the full text field. At present, the filter function looks like…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
0
votes
1 answer

How can I implement this punch out from Bixby to Android App?

In my Bixby capsule I'm offering the user to open my Android app to handle more complex tasks. For this I'm constructing an intent when the user taps on on-click of a cell-card, which looks like this: cell-card { [slot1, slot2, etc...] on-click…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
0
votes
0 answers

Connection Issues via Testing Capsule

I am currently developing a capsule for Bixby and was trying to test the capsule on some S8 and S9 devices. Every time I give in a vocal/keyboard input for the capsule to operate on, the result is always the same message: "Oh, there was a…
Otter B
  • 43
  • 5
0
votes
1 answer

how to make Bixby treat user vocabulary terms as equivalent

I have the concept of a "Pack" in my product which is a collection or bundle of content that a user can purchase. I would like to make Bixby treat the terms "pack", "collection", and "bundle" as equivalent while within my capsule, so that saying…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
0
votes
2 answers

What does confusion points: matches stand by?

I am trying to train utterances and whenever I am giving value to enum type concept it tells me confusion point matches. What does it meany by confusion point matches?
0
votes
1 answer

Forget second input in action when prompt for first input is responsed

I have my code in following structure: action(app){ //two inputs in this action 1.InvocationName 2.MenuOptionValue //(Action1,Action2,Action3) //output Selected Menu Option operation } I am new to Bixby , I have following Two Questions: 1.When…
Abhishek Sarkar
  • 167
  • 1
  • 9
0
votes
2 answers

Access voice style the user has set for Bixby (e.g. Stephanie/John/...)

For my capsule I need the information if the user has set Bixby to talk to them in a male or a female voice, because it will influence what my response looks like using SSML. Is there a way for me to find out what voice style the user has set? To be…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
0
votes
1 answer

Bixby: Audio player concept

I am showing artist to user and following up by asking if user wanted to listen the song of this artist. Endpoint action-endpoint (PlayArtist) { accepted-inputs (artist_id) // here too yellow line (Missing required input `artistToPlay`) …
Rahul Gupta
  • 972
  • 11
  • 29