Jump to content

Automatically dismiss notifications for email and sms messages?


Recommended Posts

Guest 3shirts
Posted (edited)

I am using Manila (M2D03FIX rom) so I can see any unread messages on the tab bar at the bottom. Is there a reg hack to disable the notifications or some mortscript code to automatically dismiss it?

Edited by 3shirts
Guest 3shirts
Posted

Well I've been googling and playing with Mortscript and I have come up with this (only for email at the moment):

#
# NoNotifcation.mscr - Monitors notifications and auto deletes those for SMS, MMS and Email
#

# Initialise variables
Delete = FALSE
EmailID = "{A877D65A-239C-47A7-9304-0D347F580408}"


# Start notification check loop
While ( 1 )

# Check the registry for any notifications
If ( RegValueExists( "HKLM", "System\State\Shell\Notifications\Active", "CLSID" ) )
CLSID = RegRead( "HKLM", "System\State\Shell\Notifications\Active\", "CLSID" )
EndIf

# Make sure it's one we want to kill
If ( CLSID eq EmailID )
Delete = True
EndIf

# Delete Active notification

If ( Delete )
RegDeletekey ( "HKLM", "System\State\Shell\Notifications\Active", TRUE, TRUE )
EndIf

# wait 5 seconds
Sleep( 5000 )

EndWhile[/codebox]

Unfortunately this still doesn't seem to work. I am not sure what else we need to do in the registry to make this work

Guest Feet Maestro
Posted

theres a setting in Soudns and Notifications for messagin, just change it to not show up notifications works for me.......

Guest 3shirts
Posted
theres a setting in Soudns and Notifications for messagin, just change it to not show up notifications works for me.......

That only hides the message from popping up, I want to remove the icon that appears on the bar at the top of the screen

  • 2 months later...
Guest Turborepu
Posted (edited)

I know this is an old message but if someone is searching for a fix they might find this info useful.. You can install a program like wisbar advance which skins the task bar and other aspects of windows mobile.. this will also allow you to adjust what shows up on the task bar.. you can remove the system notifications icon from it and use custom icons and more.. makes for a much cleaner layout if you are looking for that. It wont actually dismiss the reminders though, just wont show the icon.

Edited by Turborepu
Guest Jumba
Posted

This won't automatically reset your unread messages but it will clear them every time you run it. Grab resetunreadcount.cab from this post. Might be what you're looking for.

Guest Omnian
Posted
This won't automatically reset your unread messages but it will clear them every time you run it. Grab resetunreadcount.cab from this post. Might be what you're looking for.

Will this resetunreadcount.cab have a link to an exe file? So that whenever I execute the exe file, it will reset back to zero? After installation, i can't find the exe file.

I also want to solve a problem where after reading the message via a pop up, i want to clear the unread count quickly (via voice2go voice command while I drive).

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.