Search found 33 matches
- 13 Dec 2020 03:18
- Forum: General
- Topic: What is your post Automagic plan?
- Replies: 29
- Views: 103107
Re: What is your post Automagic plan?
I'm going to milk Automagic and Android 9 for as long as possible. I've automated my life using this tool! Re: tasker. Yes, it's a decent tool... but its UI is painful to use and has become bloated with features - many that don't work anywhere as reliably as AM. I've opened a couple issues (bugs wit...
- 13 Dec 2020 02:58
- Forum: User Help / Bug Reports
- Topic: The End of Automagic
- Replies: 54
- Views: 4599413
Re: The End of Automagic
For personal and economical reasons we have to announce that the development of Automagic has been stopped and that Automagic is no longer available in Google Play for new users. In the download section of our website you can find the latest Google Play version (v1.37) and the latest version with a...
- 22 Mar 2020 15:12
- Forum: General
- Topic: b4a (android basic) tool is now open source/free
- Replies: 4
- Views: 27948
Re: b4a (android basic) tool is now open source/free
I've played around with B4A <-> Automagic to get them to talk to each other. See this post for a sample/demo:
viewtopic.php?f=6&t=8619&sid=f429e67cdf ... 7bf9a80731
viewtopic.php?f=6&t=8619&sid=f429e67cdf ... 7bf9a80731
- 14 Mar 2020 21:12
- Forum: General
- Topic: Demo Automagic <-> b4a data exchange
- Replies: 2
- Views: 17453
Re: Demo Automagic <-> b4a data exchange
Part II... Using the b4a "designer" + IDE I created an app that has buttons to call Automagic Flows (i.e. to run the turn on/off light flows), a slider who's value is sent when the "Send" button is pressed. When you press "Send" it sends a broadcast intent to Automagic with the value of the slider. ...
- 14 Mar 2020 20:29
- Forum: General
- Topic: Demo Automagic <-> b4a data exchange
- Replies: 2
- Views: 17453
Demo Automagic <-> b4a data exchange
Further to this posting: https://automagic4android.com/forum/viewtopic.php?f=6&t=8616 I played around a bit with the b4a tool and am able to send and receive data to Automagic flows via broadcast intents + extras. Here is the Automagic flow I setup to receive a broadcast, then send a response: b4a 1...
- 10 Mar 2020 20:07
- Forum: General
- Topic: b4a (android basic) tool is now open source/free
- Replies: 4
- Views: 27948
b4a (android basic) tool is now open source/free
https://www.b4x.com/basic4android/images/SS-2015-06-04_17.14.40.png https://www.b4x.com/b4a.html I picked up this tools years ago as a quick/simple way to do Android programming (using a flavour of BASIC created by the developer). I let my subscription lapse and haven't received an update or used i...
- 10 Mar 2020 19:57
- Forum: General
- Topic: Full screen programming via Q + "nexdock"
- Replies: 5
- Views: 25875
Re: Full screen programming via Q + "nexdock"
Thanks for the update Desmanto. The laptop sounds decent though for the price - if you just need something small/portable for travel - and aren't gaming on it.
My "nexdock" won't arrive until late summer (at the earliest).
My "nexdock" won't arrive until late summer (at the earliest).
- 05 Mar 2020 01:46
- Forum: General
- Topic: Full screen programming via Q + "nexdock"
- Replies: 5
- Views: 25875
Re: Full screen programming via Q + "nexdock"
With the similar price, I can get Chuwi Hi10 X with intel N4100, 6/128 GB Win10, 10 inch touchscreen 1920x1200...full keyboard and the stylus. With windows, I can setup scrcpy and mirror it. Yes, I'd love to get my stylus back - I gave that up moving from being a long time Samsung Note user to OneP...
- 02 Mar 2020 21:23
- Forum: General
- Topic: Full screen programming via Q + "nexdock"
- Replies: 5
- Views: 25875
Full screen programming via Q + "nexdock"
I use automagic for many tasks (mostly home automation and reminder management) and have come up with various ways of doing the programming e.g. VM running android, scrcpy. Saw this unboxing video https://youtu.be/PNCuEYF5uKk of a new device that will hopefully make programming automagic on android ...
- 19 Aug 2019 02:07
- Forum: User Help / Bug Reports
- Topic: getDate and "{x,dateformat,x}" error
- Replies: 6
- Views: 16140
Re: getDate and "{x,dateformat,x}" error
Try this:
Should result in timeD = "02:00 AM".
Code: Select all
timeB='1566194400000'; // note the added '000' on the end (android epoch is in millisecs)
timeD="{timeB,dateformat,hh:mm a}";
Should result in timeD = "02:00 AM".