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

Moto Q Social

Reply
 
Thread Tools Display Modes
Old 06-05-2008, 06:21 PM   #1 (permalink)
 
Join Date: Jun 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
reedster555 is on a distinguished road
Default Little coding help please

First I am not a programmer, but I was able to get very, very close to what I wanted. I actually took a couple of existing homescreens (thanks to the authors of Empy Logic, Fusion and a couple of others) and was able to cobble together what I wanted. It looks correct, it just doesn't work quite right.
There are 2 issues:

1. The Profile/Missed call area works ok, but when the missed call is selected (move cursor to right) the text moves over to the left instead of tabbing back and forth. I am not sure if this is possible with what is here. This happens becuase I copied the code down from the section above it, which makes sense to work that way.

2. I can't for the life of me figure out how to make the email (Yahoo) area highlite when the cursor is over it. All of the other areas highlite fine.

Any help would be very, very appreciated.

The code that needs help is below. After that is the entire file.


<!-- Profile, Missed call -->
<plugin height="20" width="100%" handlekeys="FOCUS" clsid="{A2536C57-6AC2-4c31-9542-B144B0E9D077}">
<format state="selected" font-weight="bold" align="left" valign="center" bgcolor="COLOR_HOMEHIGHLIGHT" bgtext="transparent"/>
<format state="unselected" valign="center" align="left" bgcolor="transparent" fgcolor="COLOR_HOMETEXT"/>
<shortcut width="160">
<plugin file="sysplug.dll" clsid="{95976968-45D5-40c9-9779-2B859B1C2FEC}" name="profile" height="20">
<label>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
<format state="unselected" valign="center"/>
<text>Profile: <profile/></text>
</label>
</plugin>
</shortcut>
<shortcut width="160">
<!-- Missed call-->
<plugin clsid="{0BA8ABB8-1F1D-417f-88C6-DA8530E2E7A6}" name="missedcalls" height="20">
<background b-border-width="0" b-border-color="COLOR_HOMERULE">
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
<format state="selected" halign="right"/>
</background>
<format state="nocall" visible="false"/>
<label h="20">
<text lang="0x0409">Missed calls: <calls/></text>

</label>
</plugin>
</shortcut>
</plugin>

<!-- Label/Line -->
<plugin file="sysplug.dll" clsid="{5419F376-6520-4407-B8B8-740F5B353EDA}" height="1">
<background b-border-width="1" b-border-color="COLOR_HOMERULE"/>
</plugin>

<!-- Email -->

<format state="unselected" valign="center" align="left" bgcolor="transparent" fgcolor="COLOR_HOMETEXT"/>
<plugin clsid="{2F930BF0-6FE9-4a53-9E17-88E9247BAB48}" name="SMScount" height="20" width="200">
<background b-border-width="0">
</background>
<format state="selected" bgcolor="COLOR_HOMEHIGHLIGHT"/>
<label h="20" halign="left" fgcolor="#FFFFFF" font-size="18">

<format state="unselected" valign="center"/>
<text> Yahoo: <unreadEmail /> SMS: <unreadSMS /> Voicemail: <unreadVMail/> </text>
</label>
</plugin>
Attached Files
File Type: zip RIv19.home.zip (2.1 KB, 1 views)
reedster555 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 06-12-2008, 10:06 AM   #2 (permalink)
 
Join Date: Jun 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
reedster555 is on a distinguished road
Default Fixed

I decided to dig through this line by line, and was actually able to fix my issues through trial and error. I now have much more respect for programmers, it is amazing how big of a difference a small change can make.

I attached the finished product as someone with Good Messaging may be able to use this. Again thanks to the original authors that I borrowed very, very heavily from.
Attached Files
File Type: zip GoodMailHome.home.zip (2.1 KB, 0 views)
reedster555 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-12-2008, 10:09 AM   #3 (permalink)
Super Moderator
 
rudeboy's Avatar
 
Join Date: Jan 2007
Location: Skaville, Skamerica
Posts: 26,694
Thanks: 265
Thanked 1,892 Times in 1,561 Posts
rudeboy is on a distinguished road
Send a message via ICQ to rudeboy Send a message via MSN to rudeboy Send a message via Yahoo to rudeboy
Default

welcome aboard...

cool you figured it out on your own. no screen-shot to show of the work ?
__________________
later..
rb.


rudeboy is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-12-2008, 10:15 AM   #4 (permalink)
 
Join Date: Jun 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
reedster555 is on a distinguished road
Default

Quote:
Originally Posted by rudeboy View Post
welcome aboard...

cool you figured it out on your own. no screen-shot to show of the work ?
Thanks.

I did notice that others have posted screen shots, but I am not sure how to capture one.
reedster555 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-12-2008, 10:17 AM   #5 (permalink)
Super Moderator
 
rudeboy's Avatar
 
Join Date: Jan 2007
Location: Skaville, Skamerica
Posts: 26,694
Thanks: 265
Thanked 1,892 Times in 1,561 Posts
rudeboy is on a distinguished road
Send a message via ICQ to rudeboy Send a message via MSN to rudeboy Send a message via Yahoo to rudeboy
Default

check out this post: http://www.everythingq.com/forum/sof...html#post73999
__________________
later..
rb.


rudeboy is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-12-2008, 10:33 AM   #6 (permalink)
 
Join Date: Jun 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
reedster555 is on a distinguished road
Default

Quote:
Originally Posted by rudeboy View Post
Thank you!
Attached Images
File Type: bmp sshot000.bmp (225.1 KB, 22 views)
reedster555 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 03:26 PM.


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 33