Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Mitnichten - das ist das erste Avatar aus einer Serie, die sich satirisch mit diversen Verschwörungstheorien auseinandersetzt ^^Glaubst Du das mit den Chemtrials?
mySound = new Sound(this);
mySound.attachSound("loop");
var mcs = this.createEmptyMovieClip("mcs", 1000);
var mySound2 = new Sound(mcs);
mySound2.attachSound("loop2");
mySound.onSoundComplete = function() {
this.stop();
mySound2.start(0, 999);
}
mySound2.onSoundComplete = function() {
this.stop();
mySound.start(0, 999);
}
mySound.start(0, 999);
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x+50;
_parent.mySound.setVolume(vol);
_parent.mySound2.setVolume(vol);
_parent.volAt = Math.round(vol);
}
var mySound1 = new Sound(this);
mySound1.attachSound("loop");
var mcs = this.createEmptyMovieClip("mcs", 1000);
var mySound2 = new Sound(mcs);
mySound2.attachSound("loop2");
mySound1.onSoundComplete = function() {
this.start(0, 999);
}
mySound2.onSoundComplete = function() {
this.start(0, 999);
}
mySound1.start(0, 999);
var current_sound = 1;
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x+50;
_parent.mySound1.setVolume(vol);
_parent.mySound2.setVolume(vol);
_parent.volAt = Math.round(vol);
}
on (release) {
_root.indexF._visible = true;
_root.downloadF._visible = false;
_root.dorisF._visible = false;
_root.spieleF._visible = false;
_root.rasputinF._visible = false;
_root.kontaktF._visible = false;
_root.knödelF._visible = false;
_root.NewsF._visible = false;
_root.schnarchF._visible = false;
sound["mySound" + sound.current_sound].stop();
sound.current_sound = (sound.current_sound == 1) ? 2 : 1;
sound["mySound" + sound.current_sound].start(0, 999);
}
sound["mySound" + sound.current_sound].stop();
sound.current_sound = (sound.current_sound == 1) ? 2 : 1;
sound["mySound" + sound.current_sound].start(0, 999);