isnogood
Erfahrenes Mitglied
Hallö @ all
Ich hab mich schon via Suche durch das Forum gewühlt und alles
probiert was da war, aber geholfen hats nicht.
Ich hab einen sound der in meinen Film geladen wird, was auch geht.
Ich möchte jetzt (wie alle
) das der sound immer weiter läuft,
tut er aber nicht. Ich steig echt nicht mehr durch.
Das zweite Prob sind meine Button (MCs).
In meiner alten fla. gehen sie alle, nur jetzt wollen nicht mehr.
Script für an/aus Button
Script für laut/leise. Leise ist nur mit -10
Ich hoffe ihr könnt mir helfen.
Vielen Dank
LG
Ulrike
Bitte Code-Tags verwenden, danke!
.
Ich hab mich schon via Suche durch das Forum gewühlt und alles
probiert was da war, aber geholfen hats nicht.

Ich hab einen sound der in meinen Film geladen wird, was auch geht.
Ich möchte jetzt (wie alle

tut er aber nicht. Ich steig echt nicht mehr durch.
PHP:
meinSound = new Sound();
meinSound.loadSound("californication.mp3", true);
meinSound.onLoad = function() {
meinSound.onSoundComplete = function() {
_root.meinSound.start(0, 1);
}
}
In meiner alten fla. gehen sie alle, nur jetzt wollen nicht mehr.
Script für an/aus Button
PHP:
onClipEvent (load) {
music = "isPlaying";
}
on (press) {
if (music == "isPlaying") {
music = "isStopped";
_root.mySound.stop("californication");
} else if (music == "isStopped") {
music = "isPlaying";
//sound geht wieder an
_root.mySound.stop("californication");
_root.mySound.start(0, 1);
}
}
Script für laut/leise. Leise ist nur mit -10
PHP:
on (press) {
neueLautstaerke = _root.mySound.getVolume()+10;
_root.mysound.setVolume(neueLautstaerke);
}
Ich hoffe ihr könnt mir helfen.
Vielen Dank
LG
Ulrike

Bitte Code-Tags verwenden, danke!
.
Zuletzt bearbeitet von einem Moderator: