示例#1
0
def alexa_player_move_down(slots):
    print('Player move down')
    sys.stdout.flush()

    kodi.PlayerMoveDown()
    answer = ""
    return build_alexa_response(answer)
示例#2
0
def alexa_player_zoom_in_move_down(slots):
    card_title = 'Player zoom in and move down'
    sys.stdout.flush()

    kodi.PlayerZoomIn()
    kodi.PlayerMoveDown()
    answer = ""
    return build_alexa_response(answer, card_title)
示例#3
0
def alexa_player_move_down(slots):
    card_title = 'Player move down'
    print card_title
    sys.stdout.flush()

    kodi.PlayerMoveDown()
    answer = ""
    return build_alexa_response(answer, card_title)
示例#4
0
def alexa_player_zoom_out_move_down(slots):
    print('Player zoom out and move down')
    sys.stdout.flush()

    kodi.PlayerZoomOut()
    kodi.PlayerMoveDown()
    answer = ""
    return build_alexa_response(answer)