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
| | |-+  Cleardark Video
« previous next »
  • Print
Pages: [1] 2

Author Topic: Cleardark Video  (Read 10869 times)

Offline BigMac

  • Member
  • *
  • Posts: 174
Cleardark Video
« on: August 29, 2006, 02:59:02 AM »
Ok I have been working on this for about a day and all went smoothly till today. To keep from multi posting on my part I'll number them and you can answer the numbers you know.

1. Whenever I pause then play again, the pause sign stays there behind the play.
2.For some reason the progress bar will only go up to a little over half of the box when the song is done. I've tried resizing the box(as you can see), but still doesn't work.
3.I can't find the scroll margins patch in the tracker and I would like to know the command to set the margins for a line.
I am not done with the wps yet, but in the end i think it will look very nice.
On a side note, I have no idea why, but in the sim for my 5g 8 nor up arrow seem to perform the menu function. Is there anything i can do to fix this?
That is all.
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #1 on: August 29, 2006, 04:44:29 AM »
1) I assume your play button is a bunch of Pink with a green arrow (Not the superhero!) in the middle.  Change it instead to be the REAL BACKGROUND of the WPS with a green arrow on it.  When you switch from play to pause, the WPS overlays the play on top of the pause, but won't cover anything that's pink.
2) Don't /know/ this one without seeing the code, but is there a chance you have the numbers wrong after your progress bar in the code?  Maybe it's absolute start and end, and you thought it was absolute start and length?
3) I don't know, as I've never done them, but when I do I plan on perusing those WPSs that use them.  You can find them in the wiki.
4) 8 isn't menu.  Period is.  No, I don't know why.  There's a batch file that came with the simulator that runs it with a "border" that shows you the keys you can use.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #2 on: August 29, 2006, 11:27:45 AM »
code
Code: [Select]
%xl|k|play.bmp|1|1|
%xl|l|pause.bmp|1|1|
%xl|m|avv.bmp|3|3|
%xl|n|arr.bmp|3|3|
%xl|o|batt0.bmp|292|3|
%xl|p|batt1.bmp|292|3|
%xl|q|batt2.bmp|292|3|
%xl|r|batt3.bmp|292|3|
%xl|s|batt4.bmp|292|3|
%xl|w|hold.bmp|19|0|

%?mp<|%xdk|%xdl|%xdm|%xdn>  %ac%bt - %cH:Mc %?mh<%xdw|>%?bl<%xdo|%xdp|%xdq|%xdr|%xds>
%ac %fb Kbps-%?fc-%?fv
%?mm<|%xdt|%xdu|%xdx|>%?ps<%xdv|>
%al%pp of %pe
%s%ac%?it<%it|%fn>    
%s%ac%?ia<%ia|No Artist>    
%s%ac%?id<%id|No Album>  
%al %pc %ac%pt %ar%pr
%ac Vol: %pv dB



%P|pbar.bmp|
%pb|40|106|164|







%alNEXT:
%s%ac%?It<%It|>
%s%ac%?Ia<%Ia|>
%wd
%X|brushed.bmp|

And the part of the pause that shows is The yellow part.
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #3 on: August 29, 2006, 04:54:38 PM »
I'm going to do some snipping

Quote from: BigMac on August 29, 2006, 11:27:45 AM
Code: [Select]
%pb|40|106|164|

Okay, I think I see the problem. What I THINK you mean is "40 tall, start at 106, and be 164 wide"
What you are actually SAYING is "40 tall, start at 106, stop at 164"
You likely want:
Code: [Select]
%b|40|106|270|
Quote
And the part of the pause that shows is The yellow part.
I don't quite understand this.  Is it like a one-pixel-wide line to the right of the play that keeps showing?  Your screen shot doesn't exactly show it clearly.  If that's the case, then I"d say your play button graphic is one pixel less wide than your pause graphic.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #4 on: August 29, 2006, 06:18:27 PM »

See in the upper left corner?
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #5 on: August 29, 2006, 07:58:40 PM »
Post your "play" bitmap.  Not a cut/paste from the screenshot, the actual bitmap out of your wps/whatever/ directory.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #6 on: August 29, 2006, 08:08:48 PM »
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #7 on: August 29, 2006, 09:10:51 PM »
That's what I thought.  Re-read my first post here.  Where I said to replace the pink with the actual texture from your background image.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #8 on: August 29, 2006, 09:49:29 PM »
but according to rockbox, 255 0 255 is the transparency color....
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #9 on: August 29, 2006, 10:31:10 PM »
Correct.

the graphics don't REPLACE EACH OTHER.  They COVER EACH OTHER.  Except where there is transparency.

So:

You pause.  Pause graphic gets painted.
You play.  Play graphic gets put OVER THE PAUSE GRAPHIC.

Trust me. That's what's happening and that's how to fix it.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #10 on: August 29, 2006, 10:35:29 PM »
I'll try but itll be hard considering the background isn't a solid so getting it to blend in might be hard:-(
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #11 on: August 29, 2006, 11:34:57 PM »
What do you mean, your background image changes?  Or you mean you haven't decided on a background image yet?

One idea would be to make them "buttons" like many WPSs do.  Check out the black glass variants to see what I mean.  Therefore, you have a round (or square, or octagonal.  Go to town) area that you totally overwrite with each button, and each button totally covers the others.
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #12 on: August 29, 2006, 11:50:48 PM »
I never said it changes... I said it'll be hard because i have a picture in the background is a texture so replacing the pink with a coloro would make it look bad.
Keep ROCKing on!
Logged

Offline Yotto

  • Artist
  • Member
  • *
  • Posts: 826
  • Every Silver Lining has a Cloud
    • My Blog
Re: Cleardark Video
« Reply #13 on: August 30, 2006, 01:26:12 AM »
Then don't replace it with a color.

Replace it with THE TEXTURE.

Actually copy that exact piece of texture out of your background image and put the play button on it.

Like so:

Code: [Select]
+-------+
|texture|
|texture|
|texture|
|texture|
+-------+

plus

+-------+
|       |
| PLAY  |
|BUTTON |
|       |
+-------+

equals

+-------+
|texture|
|tPLAYre|
|BUTTONe|
|texture|
+-------+

I hope this shows up in your browser as a proportional font. :D
« Last Edit: August 30, 2006, 01:27:46 AM by Yotto »
Logged
Pulp Audio Weekly - Where we talk about News, Reviews, and pretty much anything else we feel like discussing.

Offline BigMac

  • Member
  • *
  • Posts: 174
Re: Cleardark Video
« Reply #14 on: August 30, 2006, 06:20:32 PM »
Started a new wps on my own and here are the problems ive encountered

Heres the code(optimize if you'd like)
Code: [Select]
%xl|k|play.bmp|168|110|
%xl|l|pause.bmp|168|110|
%xl|m|avv.bmp|168|110|
%xl|n|arr.bmp|168|110|
%xl|o|batt0.bmp|221|103|
%xl|p|batt1.bmp|221|103|
%xl|q|batt2.bmp|221|103|
%xl|r|batt3.bmp|221|103|
%xl|s|batt4.bmp|221|103|





%?mp<|%xdk|%xdl|%xdm|%xdn>  %ac%bt - %cH:Mc %?mh<%xdw|>%?bl<%xdo|%xdp|%xdq|%xdr|%xds>
%ac %fb Kbps-%?fc-%?fv
%?mm<|%xdt|%xdu|%xdx|>%?ps<%xdv|>  





%P|pbar.bmp|
%pb|10|15|305|




 %pc/%pt %s%m|134|224|%ac%?It<%It|>
%wd
%X|bg.bmp|
I can't seem to get scroll margins to work and it doesn't matter how low i put the battery the icon still shows 3 bars (all other problems in the wps have been fixed by now). Please help
« Last Edit: August 30, 2006, 07:02:10 PM by BigMac »
Logged

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

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

Page created in 0.07 seconds with 14 queries.