IngresarRegistrarme

Rocketbot Forum

Rocketbot Forum Logo Rocketbot Forum Logo

Rocketbot Forum Navigation

  • Academy Rocketbot
  • Tutoriales
  • Documentación
Search
Realiza una Pregunta

Mobile menu

Close
  • Home
  • Popular
  • Categorías
  • Tags
  • Preguntas
    • Nuevas Preguntas
    • Más votadas
    • Más visitadas
    • Más respondidas
  • Academy Rocketbot
  • Tutoriales
  • Documentación

Bender

Ask Bender
15 Followers
0 Preguntas
  • About
  • Questions
  • Questions
  • Questions
  • Questions
  • Polls
  • Polls
  • Polls
  • Polls
  • Answers
  • Answers
  • Answers
  • Answers
  • Best Answers
  • Best Answers
  • Best Answers
  • Best Answers
  • Followed
  • Followed
  • Followed
  • Followed
  • Favorites
  • Favorites
  • Favorites
  • Favorites
  • Groups
  • Groups
  • Groups
  • Groups
  1. Asked: julio 8, 2021En: Ejecución

    Send data to nested Bots in Rocketbot

    Bender
    Bender
    Added an answer on julio 8, 2021 at 4:00 pm

    Hi nik, Just use the parent variable in the child bot. In the command you want to use it, you only have to call it between braces, for example: {var} *You must not create the variable in the child bot, otherwise, it will use its own and not the parent's one.

    Hi nik,

    Just use the parent variable in the child bot.

    In the command you want to use it, you only have to call it between braces, for example: {var}

    *You must not create the variable in the child bot, otherwise, it will use its own and not the parent’s one.

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  2. Asked: julio 6, 2021En: Certificaciones

    conexión a BD

    Bender
    Bender
    Added an answer on julio 6, 2021 at 4:43 pm

    Hola abner rivera, El video del menú de Mysql del curso y el de Youtube son iguales, es la misma configuración, si te refieres a los otros videos de las otras Bases de datos, no es problema para la certificación, puedes utilizar la que te sea más cómoda de trabajar ;). Saludos!

    Hola abner rivera,

    El video del menú de Mysql del curso y el de Youtube son iguales, es la misma configuración, si te refieres a los otros videos de las otras Bases de datos, no es problema para la certificación, puedes utilizar la que te sea más cómoda de trabajar ;).

    Saludos!

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  3. Asked: junio 30, 2021En: Ejecución

    Como configurar la virtualización?

    Bender
    Bender
    Added an answer on julio 1, 2021 at 3:16 pm

    Hola Jonny, Uno de los requisitos para trabajar con Virtualización es que la pantalla no se bloquee, te dejo un link donde puedes revisar cómo configurarlo: https://docs.rocketbot.co/?p=158

    Hola Jonny,

    Uno de los requisitos para trabajar con Virtualización es que la pantalla no se bloquee, te dejo un link donde puedes revisar cómo configurarlo:

    https://docs.rocketbot.co/?p=158

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  4. Asked: junio 24, 2021En: Ejecución

    Notificación a Whatsapp

    Bender
    Bender
    Added an answer on junio 29, 2021 at 2:39 pm

    Hola Reomir, Si puedes, no hay módulo específico de Whatsapp pero si desde el bot puedes utilizar whatsapp web y enviar mensajes al final de proceso o en el momento en que desees.

    Hola Reomir,

    Si puedes, no hay módulo específico de Whatsapp pero si desde el bot puedes utilizar whatsapp web y enviar mensajes al final de proceso o en el momento en que desees.

    See less
      • 2
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  5. Asked: junio 29, 2021En: Ejecución

    How to run python scripts with new libraries

    Bender
    Bender
    Added an answer on junio 29, 2021 at 1:20 pm

    Hello Nik, To install any library, you must go from the Terminal to the Rocketbot libs path, ex (C:/Rocketbot/modules/libs) and there install the library, like this: pip install libraryName -t . (including the dot)

    Hello Nik,

    To install any library, you must go from the Terminal to the Rocketbot libs path, ex (C:/Rocketbot/modules/libs) and there install the library, like this: pip install libraryName -t . (including the dot)

    See less
      • 2
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  6. Sorry it is a private answer.

  7. Asked: junio 24, 2021En: Academy

    Return Data to Father Bot

    Bender
    Bender
    Added an answer on junio 25, 2021 at 7:53 pm

    Hi Nik, Yes, I attach a description of this command. Return Data This command is useful for sending information to a Parent robot. The parent robot must call the child robot with the rocket.start() instruction. Example: We have a parent robot, which contains a variable {res} which will be where we wRead more

    Hi Nik,

    Yes, I attach a description of this command.

    Return Data
    This command is useful for sending information to a Parent robot. The parent robot must call the child robot with the rocket.start() instruction.

    Example:
    We have a parent robot, which contains a variable {res} which will be where we will receive the response from the robot called Return_Info

     

    In the child robot (Return_Info) we will have the Return Data command with the following example data:

    We can send any type of information, string, booleans, dictionaries, lists, etc.
    When the parent executes the child, it will receive the information in its {res} variable.

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  8. Asked: junio 24, 2021En: Academy

    Return Data to Father Bot

    Bender
    Bender
    Added an answer on junio 24, 2021 at 1:51 pm

    Hello Anonymous, To return the data to the parent, you must use the Set Variable command, in the "Data" input you must enter the child’s variable (the value you want to share, in double quotes if it's a string) and in the other input you must enter the father’s variable (where you want to store theRead more

    Hello Anonymous,

    To return the data to the parent, you must use the Set Variable command, in the «Data» input you must enter the child’s variable (the value you want to share, in double quotes if it’s a string) and in the other input you must enter the father’s variable (where you want to store the value).

    ex:

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  9. Asked: junio 16, 2021En: Comandos

    Error de permisos de acceso al socket en Windows

    Bender
    Bender
    Added an answer on junio 24, 2021 at 2:22 am

    Hola clopez, Intenta cambiando en el Panel de Control -> Región -> Administrativo -> Cambiar configuración regional del sistema, y ahí marcando usar unicode UTF-8  

    Hola clopez,

    Intenta cambiando en el Panel de Control -> Región -> Administrativo -> Cambiar configuración regional del sistema, y ahí marcando usar unicode UTF-8

     

    
    See less
    									
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
  10. Asked: junio 17, 2021En: Módulos

    Error enviar teclas

    Bender
    Bender
    Replied to answer on junio 23, 2021 at 2:17 pm

    Entonces no tienes el módulo actualizado, en la línea 749 debieses tener un if special is None:, actualízalo por favor.

    Entonces no tienes el módulo actualizado, en la línea 749 debieses tener un if special is None:, actualízalo por favor.

    See less
      • 0
    • Compartir
      Compartir
      • Compartir en Facebook
      • Compartir en Twitter
      • Compartir en LinkedIn
      • Compartir en WhatsApp
1 … 10 11 12 13 14 … 25

Sidebar

Realizar Pregunta

Stats

  • Preguntas : 1k
  • Respuestas : 2k
  • Posts : 0
  • Comentarios : 0
  • Mejores Respuestas : 163
  • Usuarios : 5k
  • Populares
  • Comentarios
  • Tags

Users

Explore

  • Home
  • Popular
  • Categorías
  • Tags
  • Preguntas
    • Nuevas Preguntas
    • Más votadas
    • Más visitadas
    • Más respondidas

Footer

rocketbot white

Rocketbot SpA | Todos los derechos reservados 2018 - 2020

© 2020 Discy. All Rights Reserved
With Love by 2code.

es_ES
en_US es_ES