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:

Rockbox Ports are now being developed for various digital audio players!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  HOw can I do?
« previous next »
  • Print
Pages: [1]

Author Topic: HOw can I do?  (Read 4105 times)

Offline 성게군+RBBoy

  • Member
  • *
  • Posts: 16
  • HYUNHO+성게군
HOw can I do?
« on: November 15, 2006, 09:32:48 PM »
When I make WPS, I use txt program in Xp .
I Make in wps image. There is Progressive bar.
so I write in txt program %pb|13|13|13|(like this , that number is nothing)
but it doesn't correct position. HOw can I correct position?
Logged
Hello? I'm korean.

I 'm ...a middle school boy~in korea.
http://rockboxkorea.vo.to This is Korean Rockbox homepage.

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: HOw can I do?
« Reply #1 on: November 15, 2006, 10:04:37 PM »
What do you mean, "that number is nothing"?  Those 3 numbers (which you have as "13" for all 3) is EVERYTHING.

The first number is "how tall is it?"
The second number is "how far from the left side of the screen will it start?"
The last nubmer is "how far from the left side of the screen will it end?"

So you want numbers like |10|10|310| for example.

You should also likely get very used to referencing http://www.rockbox.org/twiki/bin/view/Main/CustomWPS
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline 성게군+RBBoy

  • Member
  • *
  • Posts: 16
  • HYUNHO+성게군
Re: HOw can I do?
« Reply #2 on: November 15, 2006, 10:53:23 PM »
Quote from: Yotto on November 15, 2006, 10:04:37 PM
What do you mean, "that number is nothing"?  Those 3 numbers (which you have as "13" for all 3) is EVERYTHING.

The first number is "how tall is it?"
The second number is "how far from the left side of the screen will it start?"
The last nubmer is "how far from the left side of the screen will it end?"

So you want numbers like |10|10|310| for example.

You should also likely get very used to referencing http://www.rockbox.org/twiki/bin/view/Main/CustomWPS
Yes.. like that ..but If i do like that. I n ipod screen is progressive bar is up .
Logged
Hello? I'm korean.

I 'm ...a middle school boy~in korea.
http://rockboxkorea.vo.to This is Korean Rockbox homepage.

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: HOw can I do?
« Reply #3 on: November 15, 2006, 11:05:26 PM »
I'm sorry, I do not understand what you are saying.  I know you are not a native English speaker (and your English is much better than my Korean) but you'll need to be more clear before I can help you.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline 성게군+RBBoy

  • Member
  • *
  • Posts: 16
  • HYUNHO+성게군
Re: HOw can I do?
« Reply #4 on: November 16, 2006, 03:49:27 AM »
Quote from: Yotto on November 15, 2006, 11:05:26 PM
I'm sorry, I do not understand what you are saying.  I know you are not a native English speaker (and your English is much better than my Korean) but you'll need to be more clear before I can help you.
I"m sorry my english grammer...
For example If i write %pb|number|number|number|(number are random  on a supposition)
MY wps bg image have pb's border.(pb means progressive bar)(bg means background)
so  i write %pb|NUM|NUM|NUM| ,
if i play on ipod, don't coreect pb position.
consequently, PB is up than pb border.
Logged
Hello? I'm korean.

I 'm ...a middle school boy~in korea.
http://rockboxkorea.vo.to This is Korean Rockbox homepage.

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: HOw can I do?
« Reply #5 on: November 16, 2006, 04:43:56 AM »
I'm still not completely sure what you're asking, but I THINK you're asking about how to locate the progress bar up and down on the screen.  If so, you can't place it with numbers, it's actually a line on the screen.

So, if you have as your wps file:
Code: [Select]
%pb|10|10|100|
Then the progress bar will be at the top of the screen.
If you instead have
Code: [Select]




%pb|10|10|100|
it will be 4 lines down the screen.

If you want it to be in an exact position on the screen (say, 50 pixels exactly down) then you're sadly out of luck, it has to go exact line jumps down.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline madsic

  • Member
  • *
  • Posts: 110
    • Vi har pander!
Re: HOw can I do?
« Reply #6 on: November 16, 2006, 04:45:28 AM »
I'm not sure but are you talking about the vertical position of the progress bar (up-down)? None of the numbers you enter affect that. The vertical position of the progrss bar is determined by where the line
Code: [Select]
%pb|NUM|NUM|NUM|
is in thw wps file. Say you want to push it down a bit, you can enter a few empty lines before the pb-line:

Code: [Select]



%pb|NUM|NUM|NUM|

If you want to push it up, you can move it up through the lines of the wps file:

Code: [Select]
%al bla bla bla bla
%ac bla bla bla bla
%ar bla bla bla bla
%pb|NUM|NUM|NUM|
could be changed to:
Code: [Select]
%pb|NUM|NUM|NUM|
%al bla bla bla bla
%ac bla bla bla bla
%ar bla bla bla bla

Hope this helps
Logged

Offline bascule

  • Rockbox Expert
  • Member
  • *
  • Posts: 1298
Re: HOw can I do?
« Reply #7 on: November 16, 2006, 04:58:06 AM »
Quote from: 성게군+RBBoy on November 16, 2006, 03:49:27 AM
For example If i write %pb|number|number|number|(number are random  on a supposition)
MY wps bg image have pb's border.(pb means progressive bar)(bg means background)
so  i write %pb|NUM|NUM|NUM| ,
if i play on ipod, don't coreect pb position.
consequently, PB is up than pb border.
I think what you are trying to do is align a progress bar with a progress bar border image situated on your WPS background image..

First get the bar in the right place by positioning it on the required line as described above. Then do a screenshot and work out where the top-left pixel of the bar is and from that you can position the border on your background to match the bar.

Alternatively, take the border out of the background image and use a dedicated 'progress bar image' instead, which will be automatically placed correctly...
Logged
DataBase fanboy and author of the totally overhauled Rockbox Sync Tool

Offline 성게군+RBBoy

  • Member
  • *
  • Posts: 16
  • HYUNHO+성게군
Re: HOw can I do?
« Reply #8 on: November 16, 2006, 08:39:58 AM »
Quote from: bascule on November 16, 2006, 04:58:06 AM
Quote from: 성게군+RBBoy on November 16, 2006, 03:49:27 AM
For example If i write %pb|number|number|number|(number are random  on a supposition)
MY wps bg image have pb's border.(pb means progressive bar)(bg means background)
so  i write %pb|NUM|NUM|NUM| ,
if i play on ipod, don't coreect pb position.
consequently, PB is up than pb border.
I think what you are trying to do is align a progress bar with a progress bar border image situated on your WPS background image..

First get the bar in the right place by positioning it on the required line as described above. Then do a screenshot and work out where the top-left pixel of the bar is and from that you can position the border on your background to match the bar.

Alternatively, take the border out of the background image and use a dedicated 'progress bar image' instead, which will be automatically placed correctly...
Then I have to change WPS BACK GROND?
Logged
Hello? I'm korean.

I 'm ...a middle school boy~in korea.
http://rockboxkorea.vo.to This is Korean Rockbox homepage.

Offline bascule

  • Rockbox Expert
  • Member
  • *
  • Posts: 1298
Re: HOw can I do?
« Reply #9 on: November 16, 2006, 08:44:56 AM »
You do, if you are trying to do what I described. However, I was only trying to understand what you actually want to do.
Logged
DataBase fanboy and author of the totally overhauled Rockbox Sync Tool

Offline Avril

  • Member
  • *
  • Posts: 1
Re: HOw can I do?
« Reply #10 on: November 17, 2006, 11:54:53 PM »
I think he means that he can't locate the 'progressive bar' properly...

Hey RBboy, if you can't put it on the right position then i think you will need to change the

background a bit so that u can fit it in.

And if u keep practice(?) to make WPS u will get better...    What i mean is that u will need to

work it out by urself to solve the same problem that u might face later.


Sorry i didn't give u much help. :)
Logged

Offline 성게군+RBBoy

  • Member
  • *
  • Posts: 16
  • HYUNHO+성게군
Re: HOw can I do?
« Reply #11 on: November 18, 2006, 08:01:00 AM »
Quote from: Avril on November 17, 2006, 11:54:53 PM
I think he means that he can't locate the 'progressive bar' properly...

Hey RBboy, if you can't put it on the right position then i think you will need to change the

background a bit so that u can fit it in.

And if u keep practice(?) to make WPS u will get better...    What i mean is that u will need to

work it out by urself to solve the same problem that u might face later.


Sorry i didn't give u much help. :)
Yes That's true~
Logged
Hello? I'm korean.

I 'm ...a middle school boy~in korea.
http://rockboxkorea.vo.to This is Korean Rockbox homepage.

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  HOw can I do?
 

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

Page created in 0.096 seconds with 15 queries.