(self)
| 94 | super(MyApp, self).__init__(*args, static_file_path={'my_resources': res_path}) |
| 95 | |
| 96 | def display_time(self): |
| 97 | self.lblTime.set_text('Play time: ' + str(self.time_count)) |
| 98 | self.time_count += 1 |
| 99 | if not self.stop_flag: |
| 100 | threading.Timer(1, self.display_time).start() |
| 101 | |
| 102 | def main(self): |
| 103 | # the arguments are width - height - layoutOrientationOrizontal |