Questions tagged [bixbystudio]
189 questions
2
votes
1 answer
Is it possible to dynamically add Conversation Drivers using items in a list?
I'd like to dynamically add some Conversation Drivers using items in a list, there may be 0 or more items up to 6.
A for-each loop is currently not allowed in the conversation-drivers block so I have resorted to using 'if' statements and selecting…

Jennybou
- 19
- 1
2
votes
1 answer
Bixby - Pass user input from once action to other
I am trying to implement to read user input from one action and to read in other screen, like:
user: xx
Bixby: who's there?
user: yyy
Bixby: yyy who?
I am able to read user input yyy but unable to pass in different actions to…

Sikander
- 654
- 1
- 7
- 21
2
votes
1 answer
Can't access unique identifier for Bixby using code from docs
To access a unique identifier for Bixby, I'm trying to access the contactId field within the contact library (which is also viv.self I think?). I tried using the code snippet found in the docs here, but I'm getting some errors.
Code Snippet…

Matthew Barker
- 638
- 9
- 13
2
votes
1 answer
Bixby NL and Conversation Driver with an enum type
I have an "Smoking Status" input-view matching a enum type, in which I am accepting a selection-of as well as a few conversation drivers asking whether or not the user smokes. I'm having a little trouble getting my capsule to recognize an input…

Chris W
- 63
- 5
2
votes
2 answers
Bixby: Is there a way to mock profile data in the Bixby Studio simulator? Such as Email, Phone, etc (viv.self)
I'd like to test out some of the viv.self functionality but I'm only seeing the ability to change Geo/Time/Etc. Is there a way to mock other profile data?

Chris W
- 63
- 5
2
votes
2 answers
deprecated items in Bixby viv
I am working in the latest version of the Bixby IDE ( Version 6.2.0-rc.5484 )
I have downloaded at the example.spaceResorts from git hub (https://github.com/bixbydevelopers/space-resorts)
I compile and get 29 warnings that are all deprecated…

jennie
- 45
- 3
1
vote
1 answer
ERROR This version of viv.geo contains errors, upgrade required in bixby
I created a function that shows the current location in text using viv.geo.
Version 9.27.9 worked fine before, but now it shows an error.
The 9.27.9 version is also available on the bixby developers homepage.
How can i fix it???

박동석
- 99
- 6
1
vote
1 answer
Can I make Bixby to play a music in Bixby Studio?
One of my favorite commands for Bixby is to play a song. Then, Bixby plays music using 'Melon' app that I set as the default player. Melon is a music streaming service like Spotify, so it plays songs not downloading music files.
Recently I'm working…

Donghoon Kang
- 13
- 7
1
vote
1 answer
How to remove the margin in section in bixby
This is a situation where sectioning is absolutely necessary.
I want to remove the margin between sections.
how do i do?
testview.view.bxb ↓
layout{
section{
content{
compound-card{
content{
…

박동석
- 99
- 6
1
vote
2 answers
How to put array items in the conversation-driver template as a loop in bixby
i try to this code ↓
result-view.view.bxb
conversation-drivers {
if (size(arrayItem) > 0) { //arrayItem : item1, item2, item3
conversation-driver {
template-macro (arrayItemTempl){
param (arrayItem){
…

박동석
- 99
- 6
1
vote
1 answer
Is there a replacement for Bixby JavaScript API module textLib?
The Bixby Import and search template uses a library module textLib which throws an error due to the library having been deprecated. The template uses a javascript file named "transaction_util.js" that requires the library via var textLib =…

Hackbrew
- 349
- 1
- 10
- 23
1
vote
2 answers
Bixby: want to implement stop watch in my capsule
I want to display a stopwatch(timer) for my capsule.
So, is there any way from which I can show timer in my view page which will get refreshed every second.
I am not understanding where to start. How will time get refreshed?
Any help on this.

Rahul Gupta
- 972
- 11
- 29
1
vote
1 answer
Bixby: unable to implement custom button for my capsule
I want a custom button for my capsule in Bixby.
I have tried using the conversation-driver. Using conversion-driver, I am able to make a button but I have to pass some input data to the respective goal. For that, I am unable to define goals and set…

Rahul Gupta
- 972
- 11
- 29
1
vote
1 answer
Is there documentation regarding specific time frames when using Bixby DateTimeExpressions from viv.time library?
For instance, when training the utterance "this afternoon" is there clear documentation regarding how the library understands it?

namhkoh
- 49
- 6
1
vote
1 answer
Bixby: unable to implement login facility for my capsule
As per the document I have to use oAuth 2.0 for the login implementation. I am very new to oAuth and unable to understand the concept. I would like login with my own API, No third party login facility. For example: If I have abcd website and it has…

Rahul Gupta
- 972
- 11
- 29