-
• #2
Sure! To load an app, you just call
load("appname.app.js")
. You can get the JS name by loading theappname.info
file and looking inside, but the apps pretty much all use"appname.app.js"
as the format of the name so you should be safe.So the code would look like:
Bangle.on('swipe',function() { load("appname.app.js"); });
-
• #3
Thanks. Now, I can launch apps without the launcher!
I would like to open an app when I swipe on my clock. Is there specific code that I can use to open an app?