Forum: Modern Skins
18th May 2003, 20:46
|
Replies: 5
Views: 2,640
Rontz..
Dont know if you've figured it out...
Rontz..
Dont know if you've figured it out yet but i think it should look something like this..
code
------------------------------------------------
System.onScriptLoaded()
{
slide =...
|
Forum: Modern Skins
26th December 2002, 13:47
|
Replies: 14
Views: 2,549
|
Forum: Modern Skins
26th December 2002, 03:24
|
Replies: 14
Views: 2,549
hamerhead..
the problem appears to be in...
hamerhead..
the problem appears to be in onScriptLoaded() when getting a handle(terminology??) to your objects. If all your objects reside within the same group try using...
vis1 =...
|
Forum: Modern Skins
3rd December 2002, 22:08
|
Replies: 145
Views: 20,003
|
Forum: Modern Skins
25th November 2002, 20:45
|
Replies: 909
Views: 465,046
|
Forum: Modern Skins
25th November 2002, 18:57
|
Replies: 909
Views: 465,046
hammerhead
I have it running on my desktop...
hammerhead
I have it running on my desktop as I type this & clicking the button stops the scrolling..Strange it not working for you
Did you replace all of onScriptLoaded() with what I put?...
|
Forum: Modern Skins
25th November 2002, 18:28
|
Replies: 909
Views: 465,046
hammerhead
change your .onScriptLoaded() to...
hammerhead
change your .onScriptLoaded() to this
System.onScriptLoaded()
{
group main = System.getContainer("main").getLayout("normal").getObject("player.normal.playbuttons");
Songticker...
|
Forum: Modern Skins
23rd November 2002, 22:02
|
Replies: 909
Views: 465,046
|
Forum: Modern Skins
21st November 2002, 19:55
|
Replies: 909
Views: 465,046
hammerhead....
change ...
hammerhead....
change
timerGlassOpacityCheck.onTimer() {
orb.setAlpha(x); //Command to reset alpha.
}
to
timerGlassOpacityCheck.onTimer() {
int x = Opacityslider.getPosition();
...
|
Forum: Modern Skins
19th November 2002, 02:17
|
Replies: 2
Views: 1,398
for it to be able to switch from shade back to...
for it to be able to switch from shade back to normal the button that you use needs a param="normal" tag. I would move the button you have from the "player.normal" group and add it to your layout...
|
Forum: Modern Skins
18th November 2002, 05:18
|
Replies: 909
Views: 465,046
|
Forum: Modern Skins
13th November 2002, 04:02
|
Replies: 50
Views: 7,367
|
Forum: Modern Skins
13th November 2002, 03:50
|
Replies: 50
Views: 7,367
|
Forum: Modern Skins
13th November 2002, 03:32
|
Replies: 50
Views: 7,367
what about this (replace the whole of...
what about this (replace the whole of .onScriptLoaded() with this)...
code
---------------------------------------------------------------------
System.onScriptLoaded() {
Layout main =...
|
Forum: Modern Skins
13th November 2002, 02:35
|
Replies: 50
Views: 7,367
try this....
Layout main =...
try this....
Layout main = getContainer("main").getLayout("normal");
//presuming your container is named "main"
group togs = main.findObject("togglebuttons");
Eqbutton =...
|
Forum: Modern Skins
9th November 2002, 01:44
|
Replies: 50
Views: 9,049
ziege
the problem with the way you have your...
ziege
the problem with the way you have your script at the moment is
if int l = 0, then we tell our vis animation to goto frame l - 1
(or -1) it cant find the frame, because frame -1 does not...
|
Forum: Modern Skins
9th November 2002, 00:28
|
Replies: 50
Views: 9,049
|
Forum: Modern Skins
8th November 2002, 12:04
|
Replies: 50
Views: 9,049
drastik...
to get the vis to show the last...
drastik...
to get the vis to show the last frame, change
vislayer.gotoframe(l-1);
to
vislayer.gotoframe(l);
in the vistime.onTimer() part.
(for it to get to the last frame, the left &...
|
Forum: Modern Skins
8th November 2002, 01:15
|
Replies: 10
Views: 2,658
|
Forum: Modern Skins
8th November 2002, 01:00
|
Replies: 10
Views: 2,658
|
Forum: Modern Skins
8th November 2002, 00:50
|
Replies: 10
Views: 2,658
|
Forum: Modern Skins
8th November 2002, 00:37
|
Replies: 50
Views: 9,049
drastik
this toggles the volume group on the...
drastik
this toggles the volume group on the mini-mode
code
------------------------------------------------------
#include <lib/std.mi>
Global Layout Winamp;
Global Group volgroup;
Global...
|
Forum: Modern Skins
7th November 2002, 02:05
|
Replies: 50
Views: 9,049
drastik..
this should work for your vis ...
drastik..
this should work for your vis
code----------------------------------------------------------------
#include <lib/std.mi>
Global AnimatedLayer vislayer;
Global Timer vistime;
...
|
Forum: Modern Skins
1st November 2002, 21:17
|
Replies: 107
Views: 12,598
Digitalhigh.......
had a look at your skin,...
Digitalhigh.......
had a look at your skin, got the drawer showing (had to move a couple of things about), also had to edit the elements.xml(you'd forgot to add the folder name before the file...
|
Forum: Modern Skins
29th October 2002, 01:32
|
Replies: 6
Views: 1,804
|