PDA

View Full Version : A first attempt with WA3


simarilius
26th October 2001, 17:38
Was wanting to try my hand at skinning wa3 and saw an article about the ipod, and it led to this... (I'm trying to get used to the xml down at the minute)
The volume will be as on the real thing, the disc in the middle of the buttons.
Any suggestions would be welcomed.

s0be
26th October 2001, 17:41
ok, I know what inspired this, and i know where it came from but I just thought I'd throw this out here.

It reminded me of a thermostat.

I like it and all, but it makes me want to crank up the AC

/*
S0Be
*/

whiteflip
31st October 2001, 06:03
very apple mac like. nice work :)

mc^^^^
31st October 2001, 13:00
is that circle a speaker? that'd b cool. also give it a background teaxture or gradient of some sort

simarilius
3rd November 2001, 21:27
yeah, I'd already decided it was too flat and given it a bit more texture. the circle is meant to be the volume control, only I cant for the life of me work out how to do rotational controls, I've realised it uses a script, just no idea how to call it.
Also cant work out how to get the seeker bar to fill in behind itself (see the first shot for the effect I was wanting to achieve)
The other thing I was wanting to do but dont know if its possible is to use one button for both play + pause, ie if it aint playing play it, if it is playing pause it and if its paused resume playing. Can I do that?
anyway heres a shot of how it currently looks in wa3 rather than the mock up I posted before.
comments or advice would be appreciated

Bizzeh
3rd November 2001, 21:35
that is one cool ass skin...:D :cool: :D

if you need any help just feel free to ask

Naamloos
4th November 2001, 07:23
Originally posted by simarilius

The other thing I was wanting to do but dont know if its possible is to use one button for both play + pause, ie if it aint playing play it, if it is playing pause it and if its paused resume playing. Can I do that?
anyway heres a shot of how it currently looks in wa3 rather than the mock up I posted before.
comments or advice would be appreciated

Yup that's possible :)

simarilius
4th November 2001, 15:18
Originally posted by no*name


Yup that's possible :)

care to tell me how? :D

Naamloos
4th November 2001, 18:44
Yes, I have to look for the code :)

Bizzeh
4th November 2001, 19:02
post! post! post! post! post! post! post!

:D :D :D :D :D

come on post the skin please

simarilius
9th November 2001, 12:10
I'll probably post a first version this weekend.
just got a few things to sort out.

tunah
15th November 2001, 22:56
Suggestions:
1) Grayscale the screen, it looks kinda yellow and blotchy.
2) Post it! I can't afford a real one... so i may be forced to finish mine :D

SarCaSM
16th November 2001, 19:32
actually, it fine to me. I don't see a lot if any yellow in there.

simarilius
16th November 2001, 19:35
Originally posted by tunah
Suggestions:
1) Grayscale the screen, it looks kinda yellow and blotchy.
2) Post it! I can't afford a real one... so i may be forced to finish mine :D

1) I dont really want to greyscale the screen, in all the shots of the ipod I've seen its backlit and is actually a kind of yellowy green color anyway, i might tidy it up a bit tho, as your right it is a bit messy. :)

2)ok :) I've not had any time to work on this over the last week or so, works been crazy and I was graduating from uni too, so this version doesnt have most of the things i wanted to add. ie, the disc doesnt do the volume yet, (cant work out the scripting lark, and havent had time to sit and try) only the main window is skinned and none of the buttons depress when you click them. It gives you the idea tho of whats intended.

you can get it at
http://briefcase.yahoo.com/simarilius/
the font for it is in there too.

feedback would be welcomed, and if anyone feels like enlightening me on how to do the things I was asking about above then it'd be appreciated (volume dial, seek bar and play/pause, just look up a few posts)

Naamloos
16th November 2001, 21:04
#include "lib/std.mi"

Function updatePausePlay();
Global Button playButton, pauseButton;

System.onScriptLoaded() {
Layout yourlayout = getContainer("Main").getLayout("Normal");
playButton = yourlayout.getObject("play");
pauseButton = yourlayout.getObject("pause");
updatePausePlay();
}

System.onPlay() {
updatePausePlay();
}

System.onPause() {
updatePausePlay();
}

System.onResume() {
updatePausePlay();
}

System.onStop() {
updatePausePlay();
}

updatePausePlay() {
if (getPlayItemString() == "") {
playButton.show();
pauseButton.hide();
} else {
pauseButton.show();
playButton.hide();
}
}


Fill in the above (mylayout etc... :P) good luck

Spirit.Within
16th November 2001, 21:42
Yahoo Briefcase requires a password :/

simarilius
16th November 2001, 22:51
Originally posted by Spirit.Within
Yahoo Briefcase requires a password :/

Doesnt when i try it, even when I'm logged out, or logged in as another yahoo username. You should see a folder called pod. Its public, so if it aint working I dont know why not.

Anyone else not able to see it?

Gonzotek
17th November 2001, 00:05
It works for me, downloading now. I'm looking forward to this skin, because I'm not shelling out $400 for one. :)
-=Gonzotek=-