[Q] Zooper Counter - Zooper Widget General

Hey Guys,
I'm just about to get deeper into Zooper and its gazillion of possibilities. Anyway, I'm now stuck a bit. I'd like to have a zooper widget which shows me how many SMS has been sent within a specific time period (e.g. one month). Is that possible?
The same question applies to phone usage as well. Is it possible to show how many minutes has been spent on the phone within a specific time perios?
Thanks
Tom

Related

[App Request] - Medication Mangement

What I am looking for is something I can fill in with all the medications that need to be taken during the course of a 24hr period and have the system prompt me with a pop-up at the appropriate time to do just that. It would also be nice if it could keep track of the quantity of each medication and remind me to re-order in sufficient time.
Spent ages searching online for some software and while I have found this OnTimeRx, it is not pretty and personally is lacking a function or two, not to mention it is very Americanised.
The missing functions for me are:
The reminder function for re-order is hard coded at 5 days, need this to be editable.
It is incapable of coping with the situation where you take one of a tablet at breakfast and then two of the same tablet at tea time. It will allow you to take 2 tablets, twice a day and set a reminder for each but not differing quantities.
Generally not finger friendly.
Anyone up for the challenge or able to suggest something else?
Hi Deedee
Isn't it something that calendar can handle, with recurrence functions and notifications. As for order reminder, after you have calculated once how many pills or whatever you need in a month or week, you can also set a recurrence and reminder.
Correct me if I'm wrong or missed something.
Anyhow, good health and good luck
Thanks for the concern over my health.
While it is something that could be managed by careful manipulation of calendar, reminders and recurrence, the solution being sought is something that would have all the medical details in one place. Ideally something that can also manage emergency contact details as well.

[Q] Split out all day events from meetings?

Hi all,
Another question from the new guy. But first, I have to say that this app is amazing and is FINALLY letting me get exactly what I want on my phones home screen. So THANK YOU to everyone involved for that. Now, if I can just fumble my way through some more rich text...
My question this time is about all day events and splitting them out from the rest of my calendar for a given day. I work in a large department who use all day events to notify people when they are out of office. It works well in outlook (as long as people remember to set the "set time as free" option) to notify everyone when they will be OOO.
That said, on my widget, I want to group all the titles of all day events (with no extra info like start time, etc.) into one block of text. i.e. Manny OOO, Moe on Vaction, Jack on business travel. Then, in another list, i want to list out my actual appointments for the day.
I'm at a loss for where to even begin here? I've been toying with $#C0D#=1?#C0Shh\:mm#$ that I found online to try to skip to the first "real" appointment? But that just keeps returning blanks? It also feels like it has something to do with #C1D# but no idea how to properly use that either? Being an absolute noob at this stuff i am trying my best to hunt online and find answers, but its really challenging. Any help pointing me in the right direction is GREATLY appreciated.

[Q] Possible to count events between now and x?

I'm trying to design a homescreen that's fairly compact and functional. Rather than displaying the actual events that will be occuring, I want to try and get my widget to tell me how many events are occuring today and tomorrow ie:
x events today, y events tomorrow.
However, I can't seem to find any method of possibly achieving this. Is it possible to get Zooper to count events between now and say, midnight?
I've searched around and i couldn't find anything (or I'm just bad at searching). Any help would be much appreciated!
brownenvelope said:
I'm trying to design a homescreen that's fairly compact and functional. Rather than displaying the actual events that will be occuring, I want to try and get my widget to tell me how many events are occuring today and tomorrow ie:
x events today, y events tomorrow.
However, I can't seem to find any method of possibly achieving this. Is it possible to get Zooper to count events between now and say, midnight?
I've searched around and i couldn't find anything (or I'm just bad at searching). Any help would be much appreciated!
Click to expand...
Click to collapse
As far as the exact syntax, I'd have to think on/test it, but logic-wise I might have a solution and from it you can hack through the syntax to make it work.
Firstly, Zooper can't count or support arrays or loops, etc. So, you'd have to find a way to get each event to equal a "(1)" and then add them all together.
The easiest way to do this would be with Tasker and then send over a single variable to Zooper, but Tasker's native Calendar app integration is somewhat hit or miss depending on device and Android version, etc.
So, how can we do this in Zooper? Well as I was typing this I tried testing a few different way and realized each time you perform a mathematical operation in Zooper the result is a display result and not a new number you can then add or subtract from something else.
Maybe someone has a solution though. Would be interested to see how it can be done without Tasker.
It seems the following would work for counting today's remaining events. All-day events may mess it up. The basic idea is to test if event n is today and event n+1 is not today. It would look like this
...
$#CnSyyyyMMdd#<=#DyyyyMMdd#&&#Cn+1SyyyyMMdd#>#DyyyyMMdd#?n+1$
...
Or,
$#C0SyyyyMMdd#>#DyyyyMMdd#?0$
$#C0SyyyyMMdd#<=#DyyyyMMdd#&&#C1SyyyyMMdd#>#DyyyyMMdd#?1$
$#C1SyyyyMMdd#<=#DyyyyMMdd#&&#C2SyyyyMMdd#>#DyyyyMMdd#?2$
$#C2SyyyyMMdd#<=#DyyyyMMdd#&&#C3SyyyyMMdd#>#DyyyyMMdd#?3$
$#C3SyyyyMMdd#<=#DyyyyMMdd#&&#C4SyyyyMMdd#>#DyyyyMMdd#?4$
$#C4SyyyyMMdd#<=#DyyyyMMdd#?5+$
You can expand it up if you want, but all this has to be on one line. You can probably shorten it with yy instead of yyyy. Now as far as tomorrow's events, good luck.
Wrong thread
Mokum020 said:
I came up with a similar solution for todays events as ewcrider (also should be one line in Zooper):
$#C0SddMMyy#=#DddMMyy#&&#C1SddMMyy#!=#DddMMyy#?1$ $#C1SddMMyy#=#DddMMyy#&&#C2SddMMyy#!=#DddMMyy#?2$
$#C2SddMMyy#=#DddMMyy#&&#C3SddMMyy#!=#DddMMyy#?3$
$#C3SddMMyy#=#DddMMyy#&&#C4SddMMyy#!=#DddMMyy#?4$
$#C4SddMMyy#=#DddMMyy#&&#C5SddMMyy#!=#DddMMyy#?5$
The difficulty is that the event number order changes so that the first upcoming event will always be C0, second C1 etc.
So for instance if you create the first event tomorrow it will be C0 but if you then create a event for today this will become C0 and the event for tomorrow will become C1.
Click to expand...
Click to collapse
This solution worked for me, as a simple cut and paste. Very crafty!!
Wrong thread
Mokum020 said:
Wrong thread
Click to expand...
Click to collapse
Why does every thread you posted in say "wrong thread" now?

Long time XDA fan, first time poster. New Moto 360

Hey all. I've used XDA for years and I love the community here. This is my first time posting as I'm in truly virgin territory with my 1st gen Moto360.
I really just want it for the most basic tasks so I dont have to take out my phone, e.g.:
- quick checking/dismissing gmail/mysms texts
- checking a missed call
- quick reply to mysms texts
- calling a Lyft when I get tipsy
- quick weather forecasts
- setting my Nest thermostat
- longest battery life possible while retaining above features
can you guys recommend what i should/shouldn't enable? i've noticed android wear installs certain apps to my watch. Should I uninstall/disable them?
Thanks very much to anyone who takes the time to help me with this.

[Question] New to Android, need help please with getting widgets on my lock screen

Hi to everyone, I've been told XDA-dev is the bible when it comes to Android, which is great because I bought my first Android phone (Note 8 Pro) just a week ago today, so I'm a complete freshy to the ways of The Android, I'm learning fast(ish) but still please explain like I'm 5yo so I understand.
I've set up most of what I want but one thing is frustrating me, I would like a weather widget on my lock screen. I know I can do this easily with themes but I've tried dozens of them and they all add a widget using the stock Android weather app which is no good for me, the closest location the stock weather app can find to my home is a 1-hour drive away and it's a city, I'm in a village surrounded by large hills/small mountains. Yesterday evening as an example, it was -7c and snowing here but the stock weather app showed 5c and clear, haha. So, it needs to be a widget that uses another weather app as the source, like 1weather or something similar. I've been searching online, the play store, and asking on different forums but with no luck.
Is this possible at all without rooting? I'm on Miui 11.0.6.0.

Categories

Resources