I'm a newbie at this and I don't know how to set this up. I want to make the rich text disappear and reappear with my email counts. Is that possible?
GTRN34 said:
I'm a newbie at this and I don't know how to set this up. I want to make the rich text disappear and reappear with my email counts. Is that possible?
Click to expand...
Click to collapse
yes it is, copy and paste the following code into the "Edit text manually" section. It will display "1 UNREAD" or "2 UNREAD" etc depending on how many new notifications you have. If you dont have any notifications, it wont display anything at all.
$#SUG#>=1?#SUG# UNREAD$
#SUG# is the call method for a Gmail notification count. #SUG# can be swapped out for any other call methods too. such as
#SUSMS# which is SMS unread count etc.
so what the code says is;
Is the Gmail notification count (#SUG#), greater than (>) or equal (=) to 1 (#SUG#, or Gmail count), if the answer returns true (?)
display #SUG# (gmail count) and some text (UNREAD). the dollar signs are simply used to start and complete a method call for every code.
If you would like to show something even when you have no new you can take that code and add the : (or else) to it.
eg.
$#SUG#>=1?#SUG# UNREAD:all read$ = "1 UNREAD" or "all read"
$#SUG#>=1?you got #SUG# mail!:better luck next time$ = "you got 1 mail!" or "better luck next time".
Ya dig?
hope this helps, dont forget to hit the thanks if it does.
Thanks
Thanks for the reply.
:good:
Mv101 said:
yes it is, copy and paste the following code into the "Edit text manually" section. It will display "1 UNREAD" or "2 UNREAD" etc depending on how many new notifications you have. If you dont have any notifications, it wont display anything at all.
$#SUG#>=1?#SUG# UNREAD$
#SUG# is the call method for a Gmail notification count. #SUG# can be swapped out for any other call methods too. such as
#SUSMS# which is SMS unread count etc.
so what the code says is;
Is the Gmail notification count (#SUG#), greater than (>) or equal (=) to 1 (#SUG#, or Gmail count), if the answer returns true (?)
display #SUG# (gmail count) and some text (UNREAD). the dollar signs are simply used to start and complete a method call for every code.
If you would like to show something even when you have no new you can take that code and add the : (or else) to it.
eg.
$#SUG#>=1?#SUG# UNREAD:all read$ = "1 UNREAD" or "all read"
$#SUG#>=1?you got #SUG# mail!:better luck next time$ = "you got 1 mail!" or "better luck next time".
Ya dig?
hope this helps, dont forget to hit the thanks if it does.
Click to expand...
Click to collapse
Mv101 said:
yes it is, copy and paste the following code into the "Edit text manually" section. It will display "1 UNREAD" or "2 UNREAD" etc depending on how many new notifications you have. If you dont have any notifications, it wont display anything at all.
$#SUG#>=1?#SUG# UNREAD$
#SUG# is the call method for a Gmail notification count. #SUG# can be swapped out for any other call methods too. such as
#SUSMS# which is SMS unread count etc.
so what the code says is;
Is the Gmail notification count (#SUG#), greater than (>) or equal (=) to 1 (#SUG#, or Gmail count), if the answer returns true (?)
display #SUG# (gmail count) and some text (UNREAD). the dollar signs are simply used to start and complete a method call for every code.
If you would like to show something even when you have no new you can take that code and add the : (or else) to it.
eg.
$#SUG#>=1?#SUG# UNREAD:all read$ = "1 UNREAD" or "all read"
$#SUG#>=1?you got #SUG# mail!:better luck next time$ = "you got 1 mail!" or "better luck next time".
Ya dig?
hope this helps, dont forget to hit the thanks if it does.
Click to expand...
Click to collapse
hi, this reply of yourself above is quite helpful! thank you for that...I am dealing a little different problem, hope you can help:
I have this zooper gmail count widget... mine is very simple has one email icon and next to the icon has text field where number of new email count displayed. So it looks like this:
email icon image 0
if new email
email icon image 1
how can I make it 01, 02, 03....and when have more than 9, it will show as 10, 11? i meant zero leading from 1 thru 9...
also have any idea say if there's new email, change the email icon to say blue email icon?
jazzespresso said:
hi, this reply of yourself above is quite helpful! thank you for that...I am dealing a little different problem, hope you can help:
I have this zooper gmail count widget... mine is very simple has one email icon and next to the icon has text field where number of new email count displayed. So it looks like this:
email icon image 0
if new email
email icon image 1
how can I make it 01, 02, 03....and when have more than 9, it will show as 10, 11? i meant zero leading from 1 thru 9...
also have any idea say if there's new email, change the email icon to say blue email icon?
Click to expand...
Click to collapse
Glad to help.
As for the 01,02,03 count setup, you can do the following
$#SUG#>=0&&#SUG#<=9?0#SUG#$$#SUG#>=10?#SUG#$
as for the icon colour change, you would do something like the following. (assuming you are using an icon font set like themer icons revised font) otherwise this wont work if its a bitmap obviously
keep this in mind; lets say an email icon is assigned to the letter "k"
$#SUG#=0?[c=#fff0000]k[/c]:k$
So to break it down
$ = start and finish your code
#SUG# = Gmail count variable. if you make a rich text module and type #SUG# by itself, it will show you how many UNREAD emails you have, if none, it will count 0 etc
"=0? " = asks the question, is your gmail count (#SUG#) equal to 0? if so do the following.
[c=#ffff0000] = start the colour markup and make the Following text #ffff0000 which is the colour you want the text to be in hex value, in this case #ffff0000 = red
k = the text you want to show and change colour too, in this an email icon.
[/c] = closes the colour markup
: = or else do this, eg
gmail = 0 unread? k : (otherwise) show blah blah blah
this means if the value returned back from #SUG# is 0, k will show in red, otherwise if the value returned back from #SUG# is anything other than 0, like 1/2 etc, show k. (just remember it will show k in the default colour from the colour picker.
I needed this.
Related
hi,
i am trying to put together my own sms triggered workflow. for that reason i am looking desperately for an sms-trigger which does not appear in the tray bar.
i have been intensively searching for this for ages and tried all of the apps i was able to find (smstrigger, rk-sms, mortring) but they either do not work or hook into the tray bar.
i hope that somebody can help me out.
What exactly do You want to happen when sms arrive ?
I can make a simple soft not visible in traybar,
BUT it IS visible in Taskbar.
It can f.ex fetch msg-body+Timestamp+Phonenumber from sender.
And perform Shell commands if needed.
hi eurocrypt!
first of all thanks for your help - i really appreciate that.
the minimum what i need is purely to start an exe file as i could do the rest with other utilities.
but what would really help is the following:
set the following flag to the registry
HKCU\System\State\Messages\vmail\Unread\Count = 1
if the sender's number is "#####" or the sender's name is "xxxxx" (if the number is stored as "xxxxx" in contacts)
that's it.
furthermore it would be great to delete exactly this sms with a different parameter perhaps.
My Idea is as follows:
I will make it possible to start the soft with Arguments
\SMSLaunch.exe aaa bbb ccc ddd eee fff ggg
Where
------------------------------------------------------
aaa= The Phone-number/name to trigger SMSLaunch
(Will be filter function, Name or Number Uppercase and removed Spaces and '-')
Like:
Mike Willson As contact Will be triggered if MIKE is Arg.
MIKE as arg will trigger Any Mike calling.
012-123 00 00 As Incoming Nr will be triggered if 01212 is arg.
073 as arg will trigger ANY number beginning with 073.
------------------------------------------------------
bbb= Shellcommand to run (Start app)
------------------------------------------------------
ccc= Arg for above shellcommand
------------------------------------------------------
ddd= Registry-Editing-Entry
------------------------------------------------------
eee= value to set for Registry.
( 1 is static, +1 increase by one, -1 decrease by one)
------------------------------------------------------
fff= Number to reply SMS to
------------------------------------------------------
Number of Arg's will be exact, and must be set by f.ex "X" to indicate
no Action for this Arg.
If needed I can make EDit function fromSoft if Started without Arg,
Textboxes to set ARgs and then Possibility to create A Shortcut with buildin Args.
I´m a bit buzy, so it may take some time to complete this,
hope You have time to wait.
WOW. GREAT!
sure i have time. i have been searching for weeks. so take all the time you need.
i am happy with command line based tool.
instead of textboxes (which might be cool for v2) something like
SMSLaunch.exe aaa /d
to delete the sms would be great.
background for what i use this tool:
i am using homescreen ++ as the only today-plugin. many of the provider in germany do not send a vmail-notice anymore. instead you receive an sms (this can not be changed in your mailbox account settings).
your tool will work as an sms-splitter to seperate vmail-sms from the rest. the process will be to set a registry value to "1" and delete the vmail-sms. homescreen++ will display an icon instead.
i am sure that some more users will be interested in this, too.
A Q!
Is this Reg entry correct ?
HKCU\System\State\Messages\vmail\Unread\Count = 1
I have like this
HKCU\System\State\Messages\vmail\xxxxxx\Unread\Count = 1
where xxxxxx has 4 different entries
Line1
Line2
Total
VoIP
Same in both Omnia and HTC Cruise
I use "Line1" when testing my tool now,
and looks like working OK.
But what about Value, Count=1
Is it automatically go down to Count=0
when listening to Your V-Mails ?
Eurocrypt said:
Is this Reg entry correct ?
HKCU\System\State\Messages\vmail\Unread\Count = 1
I have like this
HKCU\System\State\Messages\vmail\xxxxxx\Unread\Count = 1
where xxxxxx has 4 different entries
Line1
Line2
Total
VoIP
Same in both Omnia and HTC Cruise
I use "Line1" when testing my tool now,
and looks like working OK.
Click to expand...
Click to collapse
reg key same to me.
basically it does not matter which regkey.
you could also use hkcu\software\eurocrypt\vmail
if you want to
Eurocrypt said:
But what about Value, Count=1
Is it automatically go down to Count=0
when listening to Your V-Mails ?
Click to expand...
Click to collapse
superb!
yeah. count =1 if vmail arrives.
can you really do that - vmail to go down to 0 if calling mailbox?
how does the prog know that i am calling my mailbox?
maybe we need to put the number into a special regkey?
if it takes too much time, it is ok to leave vmail=1
i could also reset the value with mortscript.
Progress so far:
I have added possibility to use a SMSLauncher.ini in
same folder as EXE where settings can be specified.
(Easier to config for common guys)
But still possible to use Commandline.
IF SMSLauncher.ini exist, Commandline-Args will be skipped.
It is all working right now exactly as I want it
Though it is not compiled Yet, at work
and coding this toy in my HTC Cruise
Will make a working exe tonight to let You try it.
Also ok now to set VMAIL-Count to 0 if calling Your VMail-nr.
(Using a Phone-object)
Program also checking in SMS.Text for specified Trigger
if not Number/Contact trigged it.
To make it possible to send SMS to do some action
depending on SMS-Text.
Maybe I will add possibility to add sveral Trigger-entries in SMSLauncher.ini
to make it possible to send SMS to make different tasks in Phone.
..................................................................................
Exampel of SMSLauncher.ini
(Use 1 line in SMSLauncher.ini like the one below)
467;X;X;HKCU;System\State\Messages\vmail\Line1\Unread;Count;1;076-11223344;133
====== SYNTAX SMSLauncher.ini ==========
aa;bb;cc;dd;ee;ff;gg;hh;ii
aa= SMS.Number/SMS.Body to trigg SMSLauncher actions
bb= Path to EXE for Shell Command
cc= Argument for Shellcommand
dd= Root For Registry writing
ee= Path to Registry Entry
ff= Registry ENtry Name
gg= Value to set
(1= Allways set to 1)
(+1= Add 1 to existing value)
(-1= Subtract 1 from existing value)
hh= A number to reply Incoming SMS to
ii= Number to Your V-MAIL
(If this is set, Reg-Count will be set to 0)
All positions (9 Pos) must be set,
if no action will be used, set Upper case X
-------------------------------------------------------------------------------
Exampel only Reg change trigged on 123456 and removed Reg-Count on V-Mail number 133
123456;X;X;HKCU;System\State\Messages\vmail\Line1\Unread;Count;1;X;133
-------------------------------------------------------------------------------
When use Commandline instead of SMSLauncher.ini,
use same syntax but replace ';' with a space ' '
in commandline. like this
\Windows\SMSLauncher.exe 123456 X X HKCU System\State\Messages\vmail\Line1\Unread Count 1 X 133
understood. everything is clear. well done.
i have already written my ini-file, directory has been created and everything is prepared to start testing.
this app will eliminate lots of screen tappings.
Hopefully a working version
Read Readme-FIle for exact syntax in SMSLauncher.ini
(9 entries must be inside it, set as Upper Case X
if nothing to do in some section)
2 DLL's must be in same foldeer as EXE-file
Phone.dll + Outlook.dll
It will start with Form Shown,
You have to Minimize it Yourself,
either by getting menu and pick on "Today Scrreen"
or any other available way to do it.
does not work at the moment.
my ini looks like this:
5500;X;X;HKCU;System\State\Messages\sms\Unread;vmail;1;X;5500
have also tried it with
Mailbox;X;X;HKCU;System\State\Messages\sms\Unread;vmail;1;X;5500
sms comes in and regkey still stays at 0
on the other hand your app has started to send out continuously my last sms i have been sending out 6 hours ago
Looks like Your Reg-Path is wrong,
try this
5500;X;X;HKCU;System\State\Messages\vmail\Line1\Unread;Count;1;X;5500
(WATCH OUT! NO SPACES IN MY LINE ABOVE UNREAD with No Space inside)
It is working perfectly for me
Is 5500 the number You call to Your Voicemail ?
Is it also the number from where You got sms to tell You got VMAIL ?
yes 5500 is the number from where i receive the sms from and which is my voicebox number.
i think it is not a good idea to use the reg key above as the os is using this key as well.
if you set the value to 1 you will see a vmail-icon appearing in your taskbar.
just to be sure: it should work with any other reg key, shouldn't it?
Hmm I must have totally missed You :-(
I thought You wanted the soft to make your phone
show You got VMail even though You only have a common
SMS from Your Provider telling You have VMail.
I thought problem was You didn't get
Your Phone to "understand" it was Vmail.
Anyway,
Soft can run any app in your phone (with or without Argument)
trigged upon Incoming Phone-Nr or keyword in SMS.Body.
It can reply Incoming SMS.Body+Nr to
Phone-Number of Your Choice.
It can also set Registry-Key of Your Choice
Same Reg-Key can be set to 0 if You call Nr of Your Choice.
no, you understood me totally right. the only "difference" might be that i am using homescreen++ to handle sms and email notifications. i have even disabled the notification bubbles as they annoy me...
bottom line: great work and support! will test it out tonight
Additional Info ...
If You use SMS.Text for triggering,
Word/Words are Case Sensitive
rgds Eurocrypt
Ideas:
Is there need for more functions..
Also Trigg it on incoming PhoneCall ?
Multiple Lines/Triggers in SMSLauncher.ini
to do different tasks depending on Number/SMS.Text ?
Send SMS to change Parameters ?
(<password:..new config..assword>)
Any other ideas are welcome .
I´m hobbyist Just started to play with this,
so to complex tasks are not possible for me to handle.
i would do the following:
possible to run smslauncher in background, i.e. hidden app so that it does not appear in the task manager (i have configured my device to close all apps when locking screen). in this case we need an extra switch to close smslauncher.
another function might be to delete the sms where smslauncher is set to beactivated. i.e. if sms from 5500 activates smslauncher, your app should execute the command line or set the registry value AND (if an optional switch /d is set) instantly delete the sms.
you could also think about, what you proposed, to make text and sender's name available in a registry key.
a lot of people here e.g those who have put together their own manila style GUI, will thank you for this as there is currently no easy way to display sms/email information on the todayscreen.
Specifically, the email and SMS inbox?
Its huge, and a smaller font size would allow more of the header to display....
There's a reg entry in HKLM\Software\Microsoft\Inbox that looks like the right thing and place, but it doesn't change anything when altered.
Genesis3 said:
Specifically, the email and SMS inbox?
Its huge, and a smaller font size would allow more of the header to display....
There's a reg entry in HKLM\Software\Microsoft\Inbox that looks like the right thing and place, but it doesn't change anything when altered.
Click to expand...
Click to collapse
I know this would work at least for email (haven't checked with SMS).
The quickest way to change font size is:
On your TF3D slider go to Mail view>
If you already have an email envelope on the screen, just Click to open it
(if not, Click any email account icon & open an email) you should be reading the email now>
Click Menu (bottom right of screen)>
At the bottom of the pop-up menu, click the 'down' arrow to get more features>
Click View> Click Text Size>
Adjust to whatever size is comfortable for your eyes/screen.
Choice is Largest, Larger, Medium, Smaller & Smallest.
I noticed that changing the size in one email account makes it change the font size
across all email accounts so one does not need to repeat the steps for each
individual email id on the phone.
HTH.
That changes the text, but not the header/top level display. I'm trying to change the latter.... without success....
I haven't seen any way of achieving that for headers only- on my TP2, or for that matter,
any default email application on a phone yet, if I remember correctly.
I'm guessing I must be misunderstanding your question, as the answer "Settings => Screen => Text size" seem to obvious?
Not as obvious as you might have thought! I put it down to being tired, but I was searching for a "display" setting. "Screen" just didn't jump out at me!
I don't know about Genesis3, but this was exactly what I needed!
Thanks,
Ed
If you want to change the time limit that the notification lights will flash for this is how. For me it was grayed out before modifying the registry and having it flash for 5minutes is unacceptable for me.
UPDATED: Thanks hopper13
INFO
*****-----(Using a Decimal Value set to 31 will open all available notification light flash time length options...So AFTER you edit the following registry you will need to go to START>SETTINGS>SOUNDS&NOTIFICATIONS>then the notification tab>then the option that you changed the registry for)-----*****
UPDATE:ALSO: "Options" need to be set to Hex 40000019 so that the repeat checkbox is selectable (non-grayed)
DIRECTIONS
- New Text Message
HKCU/Control Panel/Notifications/{A877D65B-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New MMS
HKCU/ControlPanel/Notificaions/{C3465585-39EF}
- Available Options set to Decimal 31
- Options set to Hex 40000019
- Missed Call
HKCU/Control Panel/Notifications/{A877D660-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New Voice Mail
HKCU/Control Panel/Notifications/{A877D661-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New Email
HKCU/Control Panel/Notifications/{A877D65A-239C}
- Available Options set to 31
- Options set to Hex 40000019
fyi
Also, if you click on the value in the registry named "Default" it will tell you which notification you are modifying.
Brilliant! Many thanks. It is beyond me why ATT disabled this.
Uh oh, not so brilliant. Now my notification SOUNDS continue past the first notice and chime every 20 seconds or so! Do you have the original registry settings? (Yes, I failed to note them.) I'm going to have to roll this one back.
You are right hopper13
I have updated accordingly to let you select time of flash and to DE-select the repeat box...
It's working a-ok for me now!
Thanks!
Hi:
Thanks for the great post. So far seems to be working perfectly. I only changed the setting for SMS (using the original, pre-edited settings you posted), since I got a little scared by the previous post, but I will change the rest after testing a bit.
So far, looks great though.
Thanks again!
EDIT:
After testing some, I found the same problem Hopper mentioned before. This only happens when phone is asleep. If phone is awake it works properly. I will try the new settings.
Ahhh, much better! My entire office thanks you! lol
New settings working perfectly
Thanks so much for this, I have been looking for a long time for this fix. I even tried NueLED, which did nothing but mess my phone up to the point of requiring a hard reset.
Thanks again!!
PS:
One strange observation; If the TF3D threaded messaging is left open (whether phone is awake or asleep), the LED does not flash on incoming message. Not a big deal though, since I rarely leave it open.
One question, will this also work for reminders?
Thanks again!!
cincy1020 said:
One question, will this also work for reminders?
Thanks again!!
Click to expand...
Click to collapse
It probably could work for reminders but HTC is controlling the reminders and there is a specific .dll that you need to make a copy of and rename if you want to modify snooze times. I saw a thread about it, but am in class right now so do some searching! I will too if I find time!
Tikkitakki said:
It probably could work for reminders but HTC is controlling the reminders and there is a specific .dll that you need to make a copy of and rename if you want to modify snooze times. I saw a thread about it, but am in class right now so do some searching! I will too if I find time!
Click to expand...
Click to collapse
Hi:
I actually do know the post you are talking about regarding snooze time (which would be so awesome if it could be changed), but apparently any reg changes seem to return it to the previous WM notifications. But, that is actually not what I meant when I asked about reminders.
What I meant was, will the type of change you posted for sms etc also work to enable the LED to continue to flash when an alarm/notification etc go off? That option is currently greyed out like the others were.
Thanks again!!
Anybody willing to make a cab for these registry changes? It would top off this thread just right!
Thanks
I have applied the changes below (select hex and input "40000019"), but the constant audible alerts continue. :-(
Tikkitakki said:
If you want to change the time limit that the notification lights will flash for this is how. For me it was grayed out before modifying the registry and having it flash for 5minutes is unacceptable for me.
UPDATED: Thanks hopper13
INFO
*****-----(Using a Decimal Value set to 31 will open all available notification light flash time length options...So AFTER you edit the following registry you will need to go to START>SETTINGS>SOUNDS&NOTIFICATIONS>then the notification tab>then the option that you changed the registry for)-----*****
UPDATE:ALSO: "Options" need to be set to Hex 40000019 so that the repeat checkbox is selectable (non-grayed)
DIRECTIONS
- New Text Message
HKCU/Control Panel/Notifications/{A877D65B-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New MMS
HKCU/ControlPanel/Notificaions/{C3465585-39EF}
- Available Options set to Decimal 31
- Options set to Hex 40000019
- Missed Call
HKCU/Control Panel/Notifications/{A877D660-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New Voice Mail
HKCU/Control Panel/Notifications/{A877D661-239C}
- Available Options set to 31
- Options set to Hex 40000019
- New Email
HKCU/Control Panel/Notifications/{A877D65A-239C}
- Available Options set to 31
- Options set to Hex 40000019
Click to expand...
Click to collapse
Could someone plz tell me what registry editor ur using to make these changes? I have the advanced configuration 3.3 tool installed on my Tilt 2.Can I make these changes using it or do I need something else? If I do need something else could someone plz post a cab file for it or atleast where I could find the cab file for it.Thanks in advance.
Total Commander (free)
www.ghisler.com/download.htm
How many notification LED lights on Tilt2 (ATT)
Hi,
Sorry for a stupid question: how many notification LEDs are there on the Tilt2?
My old HTC Hermes (ATT 8525) has TWO LEDs (one each on BOTH sides of the earphone). The one on the left is to indicate charging etc. and the one on the right is to indicate Event Notification.
I did the fix as mentioned in this thread, but it looks to me that my new Tilt2 only has ONE LED light on the LEFT of the earphone. There appears to be a "light tunnel" on the right of the earphone as well, but I have never seen it light up.
I am still trying to figure out the behavior of the Tilt2 notification light. It looks to me that it only uses the left LED. When it is being charged, it shows yellow steady light. When it is fully charged, it shows green steady light. Looks like it blinks in green when there is event notification (but I am not sure for how long and how consistent yet). Does this match to your Tilt2? How about TP2 on other carriers? Did I get a defective one (i.e. only one function notification LED)?
Thanks
decimal 31 is 1F in hex, and hex 40000019 is 1073741849 in decimal for those who cant choose.
this worked on everything but 15F11F90 which is reminders. anybody know how to fix this?
dshenmdyn said:
Hi,
Sorry for a stupid question: how many notification LEDs are there on the Tilt2?
My old HTC Hermes (ATT 8525) has TWO LEDs (one each on BOTH sides of the earphone). The one on the left is to indicate charging etc. and the one on the right is to indicate Event Notification.
I did the fix as mentioned in this thread, but it looks to me that my new Tilt2 only has ONE LED light on the LEFT of the earphone. There appears to be a "light tunnel" on the right of the earphone as well, but I have never seen it light up.
I am still trying to figure out the behavior of the Tilt2 notification light. It looks to me that it only uses the left LED. When it is being charged, it shows yellow steady light. When it is fully charged, it shows green steady light. Looks like it blinks in green when there is event notification (but I am not sure for how long and how consistent yet). Does this match to your Tilt2? How about TP2 on other carriers? Did I get a defective one (i.e. only one function notification LED)?
Thanks
Click to expand...
Click to collapse
To my knowledge, the Tilt 2 only has 1 LED. The "light tunnel" you talk about is actually the sensor to determine the amount of ambient light, and does NOT light up.
hopper13 said:
I have applied the changes below (select hex and input "40000019"), but the constant audible alerts continue. :-(
Click to expand...
Click to collapse
Go and DESELECT the "Repeat" checkbox under Settings, Sounds & Notifications.
Yeah. Thanks for clarifying the LED count.
It appears to me that with the registry fix, the one and only LED will NOT provide notification feature when the phone is being charged. It only shows the solid yellow (charging) and solid green (fully charged) conditions and will override any blinking event notification.
It only provide notification function when the phone is NOT connected.
Anyone notice the same thing?
Is there an advanced parameter for changing the color of Rich Text when you get a new SMS or missed call?
If I have a widget that reads "You have 4(#SUSMS#) unread messages", is there a way to change the color of it from white, when 0, to green or transparent when >0?
I am trying to have it transparent when zero. I already know how to hide bitmaps just not text.
Thanks.
Put this in adv parameters and the text goes transparent when sms = 0
$#SUSMS#=0?[c]#00000000[/c]$
An other option would be to place the text off screen with [ox]
jimlahey said:
Put this in adv parameters and the text goes transparent when sms = 0
$#SUSMS#=0?[c]#00000000[/c]$
An other option would be to place the text off screen with [ox]
Click to expand...
Click to collapse
That gave the opposite effect
But with that I figured it out
Setting the color of the text to "00FFFFFF" - transparent
Then in adv parameters add $#SUSMS#!=0?[c]#FFFFFF[/c]$
Thank you so much man!
Actually any six numbers with #00 in front of them are transparent, (as long as there's no text shadow if I remember correct)
I'm glad I could help!
Why the ! in the equation? should it not be =? but this did not work for me.
mistere372002 said:
Why the ! in the equation? should it not be =? but this did not work for me.
Click to expand...
Click to collapse
No. $#SUSMS#=?...$ will never be true because #SUSMS# will never be blank since it will always be a number equal to or greater than 0.
Does anyone know the formula for changing the colour on a rectangle when a notification appears and then disappears once read
I'm trying to use tasker to alter the font for some items. I have a popup widget that has email, gmail, sms, phone,etc. on it that I want to change font color and become bold when I have a missed call or new message. I've set up tasks and profiles for sms, and gmail so they will change color. I cannot seem to get them to become bold though. They are made as Rich Text if that matters. I can't figure out how to write the parameter where the [c][/c] and take effect together. Can somebody tell me how to write the advanced parameter to get this to work?
Also, I can't seem to figure out the code to use for email or phone. I've tried %COUNTEMAIL, %COUNTMSG, %MISSEDCALL but they don't seem to work. This is the tutorial I used for this: https://seo-michael.co.uk/change-text-colour-in-zooper-widget-with-tasker (sorry can't post a link yet). Can I make this work with the Email App and the Phone?
Thanks!
From what I've read you are trying to display a count rather than the actual text/phonecall details? In which case you would be better off using Zooper's built in variables #SMCALLS# for missed calls and so on. To change the colour of the font in rich text format you can use a conditional like this:
[c=$#SMCALLS#>0?#ffff0000:#ff00ff00$]#SMCALLS#[/c]
This will display missed call count in red when you have missed calls and green when you don't.
Then to change to bold for missed calls as well you can wrap the above in a conditional like this:
HTML:
$#SMCALLS#>0?[b]$[c=$#SMCALLS#>0?#ffff0000:#ff00ff00$]#SMCALLS#[/c]$#SMCALLS#>0?[/b]$
Hope this helps.
ps Sorry about the HTML tags but I don't know how to stop it from rendering the bold tags in the code instead of displaying them
Thanks. Are there built in variables for gmail, email, and sms? I'm trying that code but it doesn't seem to do anything on my phone...
Yes there are functions for sms , gmail etc. You can find them under the system heading when you enter your text.
The code I wrote should work fine. Are you entering it in the advanced parameters screen of the manual text edit screen?
I used the manual screen when I wrote it. When you enter it does nothing happen at all? Or only part of what you want?
Torgadden said:
Yes there are functions for sms , gmail etc. You can find them under the system heading when you enter your text.
The code I wrote should work fine. Are you entering it in the advanced parameters screen of the manual text edit screen?
I used the manual screen when I wrote it. When you enter it does nothing happen at all? Or only part of what you want?
Click to expand...
Click to collapse
I'm putting it into the advanced parameters because the manual text area is what is labeling the shortcut I have. It doesn't nothing when I enter it. I've written it, copy and pasted from the site, and still nothing. I can modify it and get the color I want to change but it will not turn bold.
I think that it needs to be written in the text area because the bold tags will need to go round your text in the same way they do if you use the bold function when writing a post here.
Torgadden said:
I think that it needs to be written in the text area because the bold tags will need to go round your text in the same way they do if you use the bold function when writing a post here.
Click to expand...
Click to collapse
Hmm ok. How do I write the paramater and still keep the text I have then? So for example, I have one line that says "gmail". Clicking the word opens gmail and when I have a new email it changes from white to green based on the #COUNTGMAIL task I have in Tasker. How do I write in the code in the manual field to keep the "gmail" and still make it change? I'll be playing with this shortly when I get a chance.
You can mix text in with your functions so if you just want the word Gmail displayed and for that word to change colour and bold when you have unread mail you would lay it out like this:
HTML:
$#SUG#>0?[b]$[c=$#SUG#>0?#ff00ff00:#ffffffff$]Gmail[/c]$#SUG#>0?[/b]$
So going through it one step at a time, the first conditional (between $ $) if unread gmail count is greater than 0 then write the open bold tag.
Then open the colour tag, if unread gmail count is greater than 0 then set font colour to green, otherwise colour is set to white.
Next the text you want to display is written, "Gmail" in this case but you could add other zooper variables or text if you needed.
Close the colour tag.
Finally the last conditional writes the close bold tag in the same way as for the first conditional.
Zooper will then render the text code as you needed it.
Hope this helps
Torgadden said:
You can mix text in with your functions so if you just want the word Gmail displayed and for that word to change colour and bold when you have unread mail you would lay it out like this:
HTML:
$#SUG#>0?[b]$[c=$#SUG#>0?#ff00ff00:#ffffffff$]Gmail[/c]$#SUG#>0?[/b]$
So going through it one step at a time, the first conditional (between $ $) if unread gmail count is greater than 0 then write the open bold tag.
Then open the colour tag, if unread gmail count is greater than 0 then set font colour to green, otherwise colour is set to white.
Next the text you want to display is written, "Gmail" in this case but you could add other zooper variables or text if you needed.
Close the colour tag.
Finally the last conditional writes the close bold tag in the same way as for the first conditional.
Zooper will then render the text code as you needed it.
Hope this helps
Click to expand...
Click to collapse
Thank you. That code works perfectly. If only I could get the zooper widget to update quicker.
So my next question is, do you have the parameter code for regular email? I know the #SUG# is gmail but I don't have the code for email, or phone, or sms. I think those are the only ones I need to do this. Although I would like to have the "music" line change color when poweramp is running....
If you go to edit text you will see the list of available fields. SMS counts, etc are under system. Looking at them I could have sworn that there was a regular email count but I can't see it now, you should be able to capture that in Tasked and pass it to zooper as a variable though.
As for the media, use Media Utilities to get the player state. It gives you a whole set of variables which will let you work with media states in Zooper