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.
this.onEnterFrame = function () {
this.onRollOver = function() {
if(_root.NewsText._alpha < 50) {
_root.NewsText._alpha += 3;
}
}
this.onRollOut = function() {
if(_root.NewsText._alpha > 0) {
_root.NewsText._alpha -= 3;
}
}
}
loeffellutscher hat gesagt.:Jippie. Ich glaube ich sollte mir echt mal MX 2004 anschaffen, ich kann hier ja fast jedes zweite File nichtmehr lesen ... naja. Und zu dumm bist du nicht ;-]
Wo liegt denn das Problem bzw. was verstehst du nicht?
Datic hat gesagt.:Hi,
wenn Du es nicht mit ActionScript machen willst (ist für diese Anwendung auch nicht unbedingt nötig), kannst Du einen MovieClip statt einer Schaltfläche nehmen und mit einer zusätzlichen Animation für das Ausblenden arbeiten (siehe Anhang).
Gruß
P.S.: habe ob der Dateigröße das Hintergrundbild entfernt.
.
this.onEnterFrame = function () {
this.onRollOver = function() {
if(_root.NewsText._alpha < 50) {
_root.NewsText._alpha += 3;
}
}
this.onRollOut = function() {
if(_root.NewsText._alpha > 0) {
_root.NewsText._alpha -= 3;
}
}
}
this.onLoad = function() {
_root.NewsText._alpha = 0;
}
stop();