i'm trying to use two timer function calls in the same event one after another as thus:
// set up attempt to login again
Timer(ll_loginDelay(set to 10), this)
// informs server that user is logged in (i.e. does a 'ping')
Timer(ll_pingRefresh(set to 30), iw_ping)
One attempts a retry for the login to a phone system and the one is used to refresh a report about who's logged in at any given time. If they are set to the same interval then they work, if not the second one doesn't. Any idea why?
Thanks,
tg