Keigo AOKI
Results
2
comments of
Keigo AOKI
Thanks for trying to use my module. How about the following code sample? ``` javascript var Control = require('net.hoyohoyo.tiremotecontrol'); Control.addEventListener('remotecontrol', function(e) { Ti.API.debug('remote control event was fired!'); switch (e.subtype) {...
I see that you want to do. You may receive REMOTE_CONTROL_PLAY_PAUSE event and use flag playing or not. ``` javascript var isPlaying = false; var Control = require('net.hoyohoyo.tiremotecontrol'); Control.addEventListener('remotecontrol', function(e)...