Advertisement
mirceaciu

basic kodi action

Jul 7th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. def onAction(self, action):
  2.         if action == ACTION_PREVIOUS_MENU:
  3.             while self.iterate:
  4.                 if self.contor <= 24:
  5.                     self.textbox.scroll(self.contor)
  6.                     time.sleep(1)
  7.                 else:
  8.                     self.iterate = False
  9.                     self.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement