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:

Welcome to the Rockbox Technical Forums!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  Newb needs help
« previous next »
  • Print
Pages: [1]

Author Topic: Newb needs help  (Read 2890 times)

Offline rtyui333

  • Member
  • *
  • Posts: 15
Newb needs help
« on: October 19, 2006, 11:20:32 AM »
I decided to make a wps of my own.
Really really easy one

so I found ezwps and made one (similar to rockbox default  :))
But somehow I see strange letters below status bar
(goes like this: (\rtf\ansicpg1252\deff0{\fonttbl{\}})

everything is fine except this, can anyone help me please?


and another.. where can I get rockbox default wps?? when I open one in rockbox/wps says it's a dummy. I would like to copy some of it

sorry for my bad english.. :)
Logged

Offline Genre9mp3

  • Artist
  • Member
  • *
  • Posts: 146
Re: Newb needs help
« Reply #1 on: October 19, 2006, 11:27:05 AM »
You can't get the default wps because it's hardcoded (at least I can't help you on that - don't know exactly where in the source)

It's not though hard to make a simple wps like rockbox default.

Here's what you need to know about wps code:

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

Offline rtyui333

  • Member
  • *
  • Posts: 15
Re: Newb needs help
« Reply #2 on: October 20, 2006, 07:36:13 AM »
Quote from: Genre9mp3 on October 19, 2006, 11:27:05 AM
You can't get the default wps because it's hardcoded (at least I can't help you on that - don't know exactly where in the source)

It's not though hard to make a simple wps like rockbox default.

Here's what you need to know about wps code:

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

Thanks I found default wps there... ;)

But the real problem is that I see "(\rtf\ansicpg1252\deff0{\fonttbl{\}})" below the status bar. I can't use my wps unless i get rid of this. Does anyone know how to fix this???????

PLEASE HELP
Logged

Offline Genre9mp3

  • Artist
  • Member
  • *
  • Posts: 146
Re: Newb needs help
« Reply #3 on: October 20, 2006, 07:47:26 AM »
There's no need to use caps or bigger font to ask for help. It will be more helpful if you paste the code of your wps here to see what's the problem.
Logged

Offline bascule

  • Rockbox Expert
  • Member
  • *
  • Posts: 1298
Re: Newb needs help
« Reply #4 on: October 20, 2006, 08:13:42 AM »
I'm guessing the problem is using EZ-WPS, it has probably inserted some junk in the first line of your wps file :(

I actually found EZ-WPS more confusing and about twice as slow for creating WPS's than using good 'ol Notepad ;)

Quote from: Genre9mp3 on October 20, 2006, 07:47:26 AM
...It will be more helpful if you paste the code of your wps here to see what's the problem...
Exactly
Logged
DataBase fanboy and author of the totally overhauled Rockbox Sync Tool

Offline Genre9mp3

  • Artist
  • Member
  • *
  • Posts: 146
Re: Newb needs help
« Reply #5 on: October 20, 2006, 08:18:02 AM »
Quote from: bascule on October 20, 2006, 08:13:42 AM
I'm guessing the problem is using EZ-WPS, it has probably inserted some junk in the first line of your wps file :(
I suspect that, too or maybe you try to show a unicode character?

Quote from the wiki:

"To make sure non english characters display correctly in your WPS you must save the .wps file with UTF-8 character encoding. This can be done in most editors, for example Notepad in Windows 2000 or XP (but not in 9x/ME) can do this."
Logged

Offline rtyui333

  • Member
  • *
  • Posts: 15
Re: Newb needs help
« Reply #6 on: October 20, 2006, 08:21:24 AM »
Quote from: Genre9mp3 on October 20, 2006, 07:47:26 AM
There's no need to use caps or bigger font to ask for help. It will be more helpful if you paste the code of your wps here to see what's the problem.

right, sorry for that..


however I fixed it!! :)

When I save my code with EZWPS, it automatically writes something at the front, so when I open them with notepad it goes like this

{\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fnil\fcharset0 Lucida Console;}}
\viewkind4\uc1\pard\lang1042\f0\fs17 %al%ac%it
\par %al%ac%ia
\par %al%ac%id %iy
\par %al
\par %al%pc/%pt %ar[%pp:%pe]
\par %al%fbKbps/%ffHz
\par %pb
\par %pm
\par %al
\par %al
\par %al%ac%It
\par %al%ac%Ia
\par %al
\par %al
\par }
 
I think this happens to people who uses ANSI when saving txt
If I open wps with notepad, delete all unnecessary stuff and then save them as UTF-8, voila, no more strange letters  :)

I think there should be some notices for EZWPS users to save their wps as UTF


thanks everyone!!
« Last Edit: October 20, 2006, 08:24:16 AM by rtyui333 »
Logged

Offline Genre9mp3

  • Artist
  • Member
  • *
  • Posts: 146
Re: Newb needs help
« Reply #7 on: October 20, 2006, 08:25:23 AM »
Nice that you found the problem.

I must agree with bascule though. Nothing's better than a simple text editor. I use Notepad2 and I never had such problems.
Logged

Offline rtyui333

  • Member
  • *
  • Posts: 15
Re: Newb needs help
« Reply #8 on: October 20, 2006, 08:29:22 AM »
Quote from: bascule on October 20, 2006, 08:13:42 AM
I'm guessing the problem is using EZ-WPS, it has probably inserted some junk in the first line of your wps file :(


I should have checked your reply.. I had to figure this out myself!! :'( :'(
Logged

Offline rtyui333

  • Member
  • *
  • Posts: 15
Re: Newb needs help
« Reply #9 on: October 20, 2006, 08:32:19 AM »
Quote from: Genre9mp3 on October 20, 2006, 08:25:23 AM
Nice that you found the problem.

I must agree with bascule though. Nothing's better than a simple text editor. I use Notepad2 and I never had such problems.

Thanks, your link was the key to this... ;D
Logged

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  Newb needs help
 

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

Page created in 0.078 seconds with 15 queries.