(application, path)
| 547 | system.openFile({ prompt:"Play Touches", path:system.documentsDirectory }, path => { if (path) application.defer("doPlayTouchesCallback", new String(path)); }); |
| 548 | } |
| 549 | doPlayTouchesCallback(application, path) { |
| 550 | try { |
| 551 | this.doReloadFile(); |
| 552 | this.SCREEN.delegate("doStartPlayingTouches", path); |
| 553 | } |
| 554 | catch (e) { |
| 555 | } |
| 556 | } |
| 557 | doReloadSimulators() { |
| 558 | this.quitScreen(); |
| 559 | this.reloadDevices(application); |
nothing calls this directly
no test coverage detected