Flash Mod
Instant Message
Send Message
|
Posted:
Mar 7, 2007 6:58 PM
If you would like to see a tutorial here on Flash Maniacs, then please suggest it here. There is no guarantee that we will be able to right one for you but we will do our best.
Thanks
~Flash Mods
|
helio
Instant Message
Send Message
|
Posted:
Mar 12, 2007 3:10 AM
script on transition...with action button, so when people click on them i will display another page within the same wsf.
|
Ryan
Instant Message
Send Message
|
Posted:
Mar 12, 2007 5:05 AM
|
helio
Instant Message
Send Message
|
Posted:
Mar 12, 2007 5:16 PM
kool! that is what i am talking about...thanks
|
Arzi
Instant Message
Send Message
|
Posted:
Mar 13, 2007 3:06 AM
Nice to see u guys get this page up and running :)
Well XML Based player tutorial would be nice with all controls (mute, play, stop, next, previous, volume, and song name scroller)
that i can build my own buttons and interface on it...and autostart on/off
i am noob so action script need to be explained...there are hundreds of those ready to use players...but i want build my own...and maybe if u guys know any good "how to build player interface tutorial " would be extra great... here are as to player that i used earlier but i couldnt get song name scroller work and i used dynamic txt and i gave it proper instance name but no it didnt work, anyways it has only stop, play, prev, next, buttons....
stop();
playlist = new XML();
playlist.ignoreWhite = true;
playlist.. function(success) {
if (success) {
_global.songname = [];
_global.songband = [];
_global.songfile = [];
for (var i = 0; i<playlist.firstChild.childNodes.length; i++) {
_global.songname
_global.songfile
trace(songname
}
}
_root.createEmptyMovieClip("sound_mc", 1);
_root.sound_mc.sound_obj = new Sound();
_global.song_nr = random(songfile.length);
};
MovieClip.prototype.songStarter = function(file, name) {
this.sound_obj.loadSound(file, true);
this.. function() {
if (this.sound_obj.position>0) {
delete this.onEnterFrame;
this.mp3holder.playermp3.display_txt.text = songname;
} else {
this.mp3holder.playermp3.display_txt.text = "loading...";
}
};
this.sound_obj.. function() {
(song_nr == songfiles.length-1) ? _global.song_nr=0 : _global.song_nr++;
};
};
btn_play.. function() {
_root.sound_mc.songStarter(songfile[song_nr], songname[song_nr]);
};
btn_stop.. function() {
_root.sound_mc.sound_obj.stop();
};
btn_fw.. function() {
(song_nr == songfile.length-1) ? _global.song_nr=0 : _global.song_nr++;
_root.sound_mc.songStarter(songfile[song_nr], songname[song_nr]);
};
btn_rev.. function() {
(song_nr == 0) ? _global.song_nr=songfile.length-1 : _global.song_nr--;
_root.sound_mc.songStarter(songfile[song_nr], songname[song_nr]);
};
playlist.load("my xml url was here");
|
Flash Mod
Instant Message
Send Message
|
Posted:
Mar 13, 2007 5:53 AM
Arzi wrote:
Nice to see u guys get this page up and running :)
Well XML Based player tutorial would be nice with all controls (mute, play, stop, next, previous, volume, and song name scroller)
that i can build my own buttons and interface on it...and autostart on/off
i am noob so action script need to be explained...there are hundreds of those ready to use players...but i want build my own...and maybe if u guys know any good "how to build player interface tutorial " would be extra great... here are as to player that i used earlier but i couldnt get song name scroller work and i used dynamic txt and i gave it proper instance name but no it didnt work, anyways it has only stop, play, prev, next, buttons....
There Ya Go Sir!
|
qqoɟ
Instant Message
Send Message
|
Posted:
Mar 23, 2007 6:00 AM
A tutorial on modding the XSPF player would be greately appreciated.
|
Ryan
Instant Message
Send Message
|
Posted:
Mar 23, 2007 6:12 AM
BlastMaster Fobb wrote:
A tutorial on modding the XSPF player would be greately appreciated.
well how about I get you the .fla for it and you kind of dissect it and figure stuff out. Would that work?
|
qqoɟ
Instant Message
Send Message
|
Posted:
Mar 23, 2007 6:20 AM
Well, I could, I guess.
|
Ryan
Instant Message
Send Message
|
Posted:
Mar 23, 2007 7:44 AM
well I can make a tutorial about how to change the colors and background images and what not. That won't be to hard at all, just need time...just finished homework and its sleepy time now.. :)
|
qqoɟ
Instant Message
Send Message
|
Posted:
Mar 23, 2007 3:26 PM
Well, if you don't have time, that's okay. I should be able to figure it out.
|
Ryan
Instant Message
Send Message
|
Posted:
Mar 23, 2007 5:10 PM
I'm working on it right now.
|
Ryan
Instant Message
Send Message
|
Posted:
Mar 23, 2007 5:21 PM
shit, i have to go get ready to "celebrate" my anniversary with my g/f! more important things in life then myspace! haha
I'll get it done probably within the next day or two.
|
qqoɟ
Instant Message
Send Message
|
Posted:
Mar 23, 2007 5:32 PM
Cool. Thanks
And congrats!
|
Andrew
Instant Message
Send Message
|
Posted:
Mar 23, 2007 6:47 PM
BlastMaster Fobb wrote:
A tutorial on modding the XSPF player would be greately appreciated.
hey fobb download the fla here
and it's pretty simple to change the colors.
|
qqoɟ
Instant Message
Send Message
|
Posted:
Mar 23, 2007 6:57 PM
I downloaded it.
Gonna check it out in a while, shouldn't be too hard.
|
|
|