Everything Motorola Q  
Home Motorola Q Store Moto Q Software News Motorola Q Reviews Moto Q Forums Wiki Contact Us Everything Q RSS feed


Go Back   Motorola Q Forum | Everything Q > Moto Q Software > Q Home Screens and Wallpapers

Notices

Android forums

Reply
 
Thread Tools Display Modes
Old 12-16-2007, 04:37 PM   #1 (permalink)
 
Join Date: Dec 2007
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
kpierce is on a distinguished road
Question Change SMS/MMS Text and Force email to show

I like the default MSGCOUNT plugin however I am struggling with two items.
1. I would like to always display the number of email messages on my homescreen the line does not display if there are no email messages.

However when there are (0) message the Outlook line does not appear. However the SMS/MMS line does show up.
I would like to have
SMS/MMS(0)
Outlook (0)

2. How do you change the 'text' or 'label' of SMS/MMS and Outlook. I can find a way to show:
'Text Messages: (0)'
'Email Messages: (0)'

My current section from my XML is:
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="sms"/>
</plugin>
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="activesync"/>
</plugin>
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<text padding-bottom="5"/>
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="others"/>
</plugin>

I have tried this but it does not work
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<text>Text Messages: </text>
<mail account="sms"/>
</plugin>
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="activesync"/>
</plugin>
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<text padding-bottom="5"/>
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="others"/>
</plugin>

Thanks
kpierce is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 12-16-2007, 04:59 PM   #2 (permalink)
Super Moderator
 
n99hockey's Avatar
 
Join Date: Feb 2007
Location: Princeton, NJ
Posts: 22,118
Thanks: 295
Thanked 2,338 Times in 1,977 Posts
n99hockey is on a distinguished road
Send a message via AIM to n99hockey
Default

use something like this

Quote:
<!-- Message Count Plugin -->
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="24">
<background b-border-width="0"/>
<label y="4" x="8">
<format state="selected" halign="left" bgcolor="transparent" fgcolor="#000000" font-weight="bold" font-size="16" />
<format state="unselected" halign="left" bgcolor="transparent" fgcolor="#FFFFFF" font-weight="normal" font-size="16" />
<text>Email/MMS/:<unreadEmail/></text>
</label>
</plugin>
just change the color and height to match up with what you want
__________________
Scott
www.scottschrob.com (and check out my Q Home Screens & Q Apps)

If somebody helps you, thank them. Click the http://www.everythingq.com/forum/avatars/n99hockey.gif?type=sigpic&dateline=1181832255 icon under their post.

Check out the EverythingQ New User Guide or use Search.
n99hockey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to n99hockey For This Useful Post:
kpierce (12-16-2007)
Old 12-16-2007, 08:43 PM   #3 (permalink)
 
Join Date: Dec 2007
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
kpierce is on a distinguished road
Default

Great and thanks for the info....

A follow up question(s)
1. How do I get it to show "(0)" if there are no messages? Right now I have the following and if there are no messages it shows "()". The msgcount seems to work and place a (0), but again that only works for the SMS/MMS, I want to inface see that I have "(0)" email messages.

2. How do I get it to go directly to either SMS or Outlook email. Right now it goes to the Messaging Screen with 1. SMS/MMS, 2.Outlook E-Mail, 3. New Account... I thought that perhaps 'mail account' tag would do that, but that does not seem to work.

3. Finally anyone know of a good battery monitor? I have tried xBar(did not work), BattPlug, Vista Battery, Resco, Facade and now have Fizz Monitor loaded but that seems to continually show my battery usage as 100%. I just want to see how much battery I have left... A little more detail than the very top bar.

<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="25">
<label>
<text>Text Messages (<unreadSMS/>)</text>
</label>
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="sms"/>
</plugin>

<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="emailcount" height="25">
<label>
<text>Email (<unreademail/>)</text>
</label>
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="others"/>
</plugin>
kpierce is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2007, 09:10 PM   #4 (permalink)
Super Moderator
 
n99hockey's Avatar
 
Join Date: Feb 2007
Location: Princeton, NJ
Posts: 22,118
Thanks: 295
Thanked 2,338 Times in 1,977 Posts
n99hockey is on a distinguished road
Send a message via AIM to n99hockey
Default

Quote:
Originally Posted by kpierce View Post
Great and thanks for the info....

A follow up question(s)
1. How do I get it to show "(0)" if there are no messages? Right now I have the following and if there are no messages it shows "()". The msgcount seems to work and place a (0), but again that only works for the SMS/MMS, I want to inface see that I have "(0)" email messages.
the problem might be that you are using the plugin twice
if you notice my post they are both in the sameone...why not use that it functions the same and it says 0 when there are no messages?

Quote:
2. How do I get it to go directly to either SMS or Outlook email. Right now it goes to the Messaging Screen with 1. SMS/MMS, 2.Outlook E-Mail, 3. New Account... I thought that perhaps 'mail account' tag would do that, but that does not seem to work.
you cant
only if you hit the right softkey when it says 'message' it will take you to that account
__________________
Scott
www.scottschrob.com (and check out my Q Home Screens & Q Apps)

If somebody helps you, thank them. Click the http://www.everythingq.com/forum/avatars/n99hockey.gif?type=sigpic&dateline=1181832255 icon under their post.

Check out the EverythingQ New User Guide or use Search.
n99hockey is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to n99hockey For This Useful Post:
kpierce (12-18-2007)
Old 12-16-2007, 09:54 PM   #5 (permalink)
 
Join Date: Dec 2007
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
kpierce is on a distinguished road
Question

Thanks again for the quick response.

I am sorry but I don't understand the statement.
the problem might be that you are using the plugin twice if you notice my post they are both in the sameone.

The code I had previously was:
<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="true">
<text padding-bottom="5"/>
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="others"/>
</plugin>

<plugin clsid="{8486CC1E-025B-4888-9C76-048DF7C1787D}" name="msgcount2" height="25" autoheight="false">
<background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
</background>
<mail account="sms"/>
</plugin>

This shows
SMS/MMS (1) (for example)

And takes me directly to my SMS messages.

The sample code you provided allows me to change the title and force the message to show up. However it takes me to the message screen where I have to select '1. SMS/MMS or 2. Outlook e-Mail'.

I would just like to be able to show the following:

Text Messages (0) (force this to show even if no messages)
Email (1) (force this to show even if no messages)

From what I am reading in your reply, this may not be possible.
kpierce is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT -5. The time now is 05:34 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Integrated by BBPixel ©2003-2008, jvbPlugin
Android forums

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32