Hi,
I'm using an alarm to launch my control after several seconds. Everything works fine, which means the alarm is working and the control is starting, but the control doesn't recognize any touch input after it has been launched by the alarm. If I reload the control manually everything works like expected.
I need to say the app is a watchface. For a normal app/control everything works like expected too.
var my_alarm = new tizen.AlarmRelative(20); var alarm_data = new tizen.ApplicationControl( "do_job", null, null, null, null ); var app = tizen.application.getCurrentApplication(); tizen.alarm.add(my_alarm, app.appInfo.id, alarm_data);
It's important that the user can USE my app after it has been started by the alarm otherwise it's useless :(
Any advice for me?
Thank you very much!
Yumi