Hey Kevin, great update on the app, it's good to see the progress this app has made. Having said that there's one question I was hoping you could answer. I'm trying to use Tasker so that whenever I have an incoming call Tasker will turn on the system keyguard so that I will have the unlock sliders for answer and ignore. I think Widgetlocker blocks the system keyguard totally so that Tasker can't do what I want. Would it be at all possible to currently set up Tasker to do something like what I'm looking for? Or maybe a future release could allow an option for this?
If I understand correctly:
You're on a Sense device
You want the slide to answer rather than button answer
But you want to use Easy Wake Mode
I'm not sure your approach would work with or without WidgetLocker. Android doesn't really have a method of activating the keyguard. You can disable the keyguard (with Easy Wake Mode in WidgetLocker or an app like NoLock), but even if the screen is off, if you reenable the keyguard, the phone won't lock, it will just be ready to lock the next time the screen goes off.
Android 2.2 does have a method of doing this, Lock Screen Widget is an example of this. A DeviceAdmin app can call a lockNow() function that turns off the screen and activates the keyguard (either standard or security depending on your configuration).
It's possible that if the phone was in easy-wake-mode style and did a lockNow as soon as a call came in you would get the desired effect. But it's also possible that the lockNow wouldn't activate until after the incoming call screen is present and so your screen would just turn off and you'd have to turn it back on.
[edit]Okay I wrote all that and then I thought of a possible work around, instead of disabling the keyguard while the screen is on, if you disable it while the screen is off then you basically capture it. Normally this is undesirable, but it can be useful. When the screen goes on, you can reenable it.
Easy-wake-mode with a security lock behaves like this. I don't have any service on my Sense phone, can you see which incoming call screen you see when you have easy-wake-mode with a security lock?[/edit]
---
I did add some intents for tasker users. I'll update my website to document this, but here's an email i sent out about it for now
I'm looking at adding very basic support for tasker for right now,
though will likely do a proper plugin at some point in the future.
For now I've added the following intents:
Service Intents:
Start/Stop WidgetLocker completely:
com.teslacoilsw.widgetlocker.ENABLE
com.teslacoilsw.widgetlocker.DISABLE
Keep WidgetLocker enabled/running, but prevent it from activating on
screen off com.teslacoilsw.widgetlocker.SUSPEND
com.teslacoilsw.widgetlocker.RESUME
And the following activity intents:
com.teslacoilsw.widgetlocker.ACTIVATE
com.teslacoilsw.widgetlocker.UNLOCK
Please let me know if there is another intent you'd like to see, if
it's straight forward I'll include it.