England
Mitglied
Hallo
Habe folgendes Problem:
Möchte bei meiner Soundbox, dass wenn man die Page betritt, sich der track1 automatisch startet.
Und wenn man den Forward/Rewind Button drückt, dass man zum nächsten Sound (ca. 10 Stück) springen/zurück kann. Im Moment muss ich den Button Track1 drücken damit Sound1 abspielt.
Besten Dank für Eure Hilfe.
Habe folgendes Problem:
Möchte bei meiner Soundbox, dass wenn man die Page betritt, sich der track1 automatisch startet.
Und wenn man den Forward/Rewind Button drückt, dass man zum nächsten Sound (ca. 10 Stück) springen/zurück kann. Im Moment muss ich den Button Track1 drücken damit Sound1 abspielt.
PHP:
onLoad(){
zustand = "Aus";
_soundbuftime = 1;
}
onEnterFrame(includingFirstFrame){
// Track 1
butTrack1.onRelease = function(){
mSound = new Sound(this);
mSound.loadSound("obd.mp3", true);
mSound.start(0, 1);
zustand = "An";
Anzeige = "Play";
txtArtist = mSound.id3.TPE1;
txtTrack = mSound.id3.TIT2;
};
// Track 2
butTrack2.onRelease = function(){
mSound = new Sound(this);
mSound.loadSound("file2.mp3", true);
mSound.start(0, 1);
zustand = "An";
Anzeige = "Play";
txtArtist = mSound.id3.TPE1;
txtTrack = mSound.id3.TIT2;
};
// Track 3
butTrack3.onRelease = function(){
mSound = new Sound(this);
mSound.loadSound("file3.mp3", true);
mSound.start(0, 1);
zustand = "An";
Anzeige = "Play";
txtArtist = mSound.id3.TPE1;
txtTrack = mSound.id3.TIT2;
};
// Play
butplay.onRelease = function() {
mSound.start(0, 1);
zustand = "An";
Anzeige = "Play";
};
// Stop
butstop.onRelease = function() {
stopAllSounds();
zustand = "Aus";
Anzeige = "Stop";
};
//R-wind
if (rw) {
mSound.start(pos-5,0);
zustand = "An";
};
butrw.onPress = function(){
rw=1;
Anzeige = "rewind";
};
butrw.onRelease = function(){
rw=0;
Anzeige = "Play";
};
//F-wind
if (fw) {
mSound.start(pos+5,0);
zustand = "An";
};
butfw.onPress = function(){
fw=1;
Anzeige = "forward";
};
butfw.onRelease = function(){
fw=0;
Anzeige = "Play";
};
}