Questions tagged [bixbystudio]

189 questions
0
votes
1 answer

Bixby authorization access_token too long

I'm working on a bixby capsule. I have the following authorization.bxb authorization{ user { oauth2-authorization-code (Sample Provider) { client-id ("BixbyCapsule") client-secret-key ("key") authorize-endpoint…
0
votes
1 answer

Validates if with string for number

// Hey, I have a question about a validation within an action.bxb, where I want bixby to replan with an "if (a string)" specifies for a number. // But when I try to put the condition, it gives the following error: WARN 'x === six' is non-boolean…
0
votes
1 answer

How to get the detailed street name of current location?

By following the examples on https://bixbydevelopers.com/dev/docs/dev-guide/developers/library.geo I can get a viv.geo.GeoPoint, but it contains only longitude and latitude, how do I get more detailed info such as street name? input (myPoint) { …
0
votes
1 answer

how to text-overflow ellipsis none in paragraph by bixby

I want to show all without omitting the text in paragraph. How do I do it? click image ↓ enter image description here
박동석
  • 99
  • 6
0
votes
1 answer

how to conversation template click input another value in bixby

I want the template text to be [item], but the value I'm actually sending is thrown as a different value. for example conversation-drivers { conversation-driver { template (text : itemName, ClickRealValue : itemVal) <--- I want…
박동석
  • 99
  • 6
0
votes
3 answers

How to conditional statements in action output in Bixby

Hi I want to go to another action by putting a conditional statement in the action output. What should I do? For example action (~~) { description (Validate items passed from javascript) collect { input (~~) { type (~~) min (~~)…
박동석
  • 99
  • 6
0
votes
1 answer

Bixby: I'm looking for a way to make alert or notification by Bixby

I am making a System which uses Bluetooth. But Bixby does not have Bluetooth API. So My plan was using Android Application and it catches notification then, send data by BlueTooth. But I recognize there is no Notification API in Bixby too. So... Is…
0
votes
1 answer

Bixby: hands free List-of navigation not working for single item

I have used hands-free list-of navigation in my capsule where I select a single item from multiple items to get the detailed information using voice command ("select one, choose second, etc"). But If I have a single item only, I am unable to give a…
Rahul Gupta
  • 972
  • 11
  • 29
0
votes
1 answer

Hands free navigation for input-view form element

I am using form element number input to enter a quantity and used the submit button ("Go") to go to the next page when the submit button is clicked. But on giving voice command "Go", the page doesn't go to the next page. why? Any solution to this.…
Rahul Gupta
  • 972
  • 11
  • 29
0
votes
1 answer

Bixby: unable to select single ticket detail using list-of navigation

I am using the Bixby list-of navigation to show multiple tickets and select tickets to show details of that ticket using ordinal-selection-patterns. But if I have only a single ticket and I want to show the detail page of that ticket directly. But I…
Rahul Gupta
  • 972
  • 11
  • 29
0
votes
1 answer

How do I get the user's neighborhood or city from $user.currentLocation?

I'm wondering if maybe some one can help me figure this out. How do I get the user's neighborhood (or city) from $user.currentLocation? I've been trying various things, and looked at the docs, especially…
sarkon
  • 187
  • 2
  • 8
0
votes
1 answer

How can add a new voice assistant (other Country) on Bixby

Can anyone help? I'm in doubt how to add the voice assistant Francisca (Brazil) in Bixby Studio. If this is possible, can you help me? I appreciate all the help.
0
votes
3 answers

How to share a capsule revision ID with another person with different samsung accounts?

I am trying to share a capsule that I have built with another person who isn't a collaborator of the capsule on Bixby Developer Center, nor is my Samsung account connected to their device. When they try to test the capsule, it shows this error…
namhkoh
  • 49
  • 6
0
votes
1 answer

sending tcp package by pressing samsung bixby button

I have an app on my phone which has one button: Toggle Light. This app tells my raspberry to toggle the light in my room. This part works. (btw. the app is written in xamarin) Until yet I always just used the bixby button to open my app and then I…
Javes
  • 3
  • 2
0
votes
1 answer

NL training without input

I'm a beginner at developing using bixby, and I was trying to create and modify the sample Dice capsule that they have on their github. I wanted to add an extra feature of snake-eyes to it, which basically is an extra boolean concept which is true…