Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Thank You for your continued support and contributions!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  BigRed, biggreen and bigaqua themes updated Sansa e200
« previous next »
  • Print
Pages: [1]

Author Topic: BigRed, biggreen and bigaqua themes updated Sansa e200  (Read 1456 times)

Offline HRM

  • Member
  • *
  • Posts: 11
BigRed, biggreen and bigaqua themes updated Sansa e200
« on: December 23, 2007, 04:41:33 PM »
I will update all the BIG fonts I have posted at rockbox-themes.org as soon as they are accepting uploads again.


EDIT: The issue has been resolved and the corrected code is available in a seperate post below.

[strike]
Can anyone summerize what has changed? Iam sure it is simple to someone who already knows it, but researching it is plan A.

This is the current code.

Code: [Select]
%X|BG.bmp|0|0
%P|progbar.bmp|
%xl|a|bat1.bmp|8|191
%xl|b|bat2.bmp|8|191
%xl|c|bat3.bmp|8|191
%xl|d|bat4.bmp|8|191
%xl|f|hold.bmp|0|0
%xl|g|ff.bmp|110|150
%xl|i|pause.bmp|76|149
%xl|j|play.bmp|74|147
%xl|k|repeat.bmp|131|192

ETC....


I thought it has something to do with margins, but I can't find the connection between the new WPS wiki page and the change.

http://www.rockbox.org/twiki/bin/view/Main/CustomWPS#Tags

All is says regarding margins is

Margin
Tag  Description  
%m|x|  Specify left margin  

there are no examples.
« Last Edit: December 24, 2007, 09:34:23 PM by HRM »
Logged

Offline MarcGuay

  • Rockbox Expert
  • Member
  • *
  • Posts: 1065
Re: Big Red Theme needs to be updated for Sansa e200
« Reply #1 on: December 24, 2007, 11:14:40 AM »
It looks to me like all you're missing is | characters at the ends of your image position statements.

i.e.

%xl|a|bat1.bmp|8|191

should be

%xl|a|bat1.bmp|8|191|

and so on...
Logged

Offline HRM

  • Member
  • *
  • Posts: 11
Re: Big Red Theme needs to be updated for Sansa e200
« Reply #2 on: December 24, 2007, 05:45:50 PM »
Quote from: MarcGuay on December 24, 2007, 11:14:40 AM
It looks to me like all you're missing is | characters at the ends of your image position statements.

i.e.

%xl|a|bat1.bmp|8|191

should be

%xl|a|bat1.bmp|8|191|

and so on...

You are exactly right. Thank you. I was totally barking up the wrong tree which is not a surprise since I am not any good at this. I really appreciate the help since I was wasting time looking in the wrong direction.

Thank you very much and I will fix these on the download page as soon as they have moved to the new server.

Anyone who wants to fix this for themselves until themes are being accepted for uploading, can just paste this to replace the existing code, then click save. This will work for Big Red, green or Aqua.

Code: [Select]
%X|BG.bmp|
%P|progbar.bmp|
%xl|a|bat1.bmp|8|191|
%xl|b|bat2.bmp|8|191|
%xl|c|bat3.bmp|8|191|
%xl|d|bat4.bmp|8|191|
%xl|f|hold.bmp|0|0|
%xl|g|ff.bmp|110|150|
%xl|i|pause.bmp|76|149|
%xl|j|play.bmp|74|147|
%xl|k|repeat.bmp|131|192|
%xl|l|rw.bmp|42|148|
%xl|m|shuffle.bmp|116|192|
%xl|n|sleep.bmp|129|2|
%xl|o|vol0.bmp|157|197|
%xl|p|vol1.bmp|156|193|
%xl|q|vol2.bmp|154|193|
%xl|r|vol3.bmp|154|193|
%xl|s|vol4.bmp|154|193|
%xl|t|vol5.bmp|154|193|
%xl|u|vol6.bmp|154|193|
%xl|v|vol7.bmp|154|193|
%xl|w|vol8.bmp|154|191|
%xl|x|vol9.bmp|154|191|
%wd
%ac%pp of %pe
%al-%pc%ar%pt
%s%ac%?ia<%ia|Artist Unknown>
%s%ac%?id<%id|Album Unknown>
%s%ac%?it<%it|Title Unknown>
%pb|height|13|163|108|
%s%ac%t5%?It< Next - %It|(Unknown Title)>;%s%ac%t3%?Ia<%Ia|(Unknown Artist)>

%bl%%        %ar%pvdb
 Â     
 %ac%cb %cd  
%al%?bl<%xda|%xdb|%xdc|%xdd>
%?ps<%xdm>

%?mm<%xdZ|%xdk|%xdk|%xdk%xdm|%xdk>
%?mp<%xdi|%xdj|%xdi|%xdg|%xdl>
%?pv<%xdo|%xdp|%xdq|%xdr|%xds|%xdt|%xdu|%xdv|%xdw|%xdx>
%?mh<%xdf|%xdZ>

« Last Edit: December 27, 2007, 05:01:47 PM by HRM »
Logged

Offline pixelma

  • Rockbox Expert
  • Member
  • *
  • Posts: 645
Re: BigRed, biggreen and bigaqua themes updated Sansa e200
« Reply #3 on: December 25, 2007, 03:34:43 PM »
Quote from: HRM on December 23, 2007, 04:41:33 PM
Code: [Select]
%X|BG.bmp|0|0
You also do not need the coordinates together with the backdrop tag "%X". Since the background needs to be the same size as the screen it is obvious that its left upper corner must be at x=0 and y=0. The CustomWPS in the wiki mentions the following syntax:

Quote
%X|filename.bmp|Load and set a backdrop image for the WPS. This image must be exactly the same size as your LCD.
The closing | is important there too.  ;)
« Last Edit: December 25, 2007, 03:50:06 PM by pixelma »
Logged

Offline HRM

  • Member
  • *
  • Posts: 11
Re: BigRed, biggreen and bigaqua themes updated Sansa e200
« Reply #4 on: December 27, 2007, 05:03:57 PM »
Thank you, I corrected that also in the repair code.

BTW, anyone unable to make the repair themselves and wanting the theme I have uploaded it to anythingbutipod.com in this thread.


http://www.anythingbutipod.com/forum/showthread.php?t=23805

Logged

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  BigRed, biggreen and bigaqua themes updated Sansa e200
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.073 seconds with 15 queries.