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.
startDrag("/fenster");
on (press) {
this._parent.startDrag();
}
on (release, releaseOutside) {
this._parent.stopDrag();
}
on (release) {
_root.attach.removeMovieClip();
_root.attach = 0;
}
Selection.setFocus(msg_txt);
Selection.setFocus(_root.msg_txt);
on (release) {
_root.insertSmiley(":)");
}
msg_txt.onSetFocus = function() {
if (help_mc == undefined) {
// ort für ein onEnterFrame
_root.createEmptyMovieClip("help_mc",this.getNextHighestDepth());
}
help_mc.onEnterFrame = function() {
// selects retten, solange selectiert ist
this._selA = Selection.getBeginIndex();
this._selE = Selection.getEndIndex();
};
};
msg_txt.onKillFocus = function() {
delete help_mc.onEnterFrame;
};
on (release) {
Selection.setFocus(msg_txt);
Selection.setSelection(help_mc._selA, help_mc._selE);
auswahl = msg_txt.text.substring(help_mc._selA, help_mc._selE);
msg_txt.replaceSel(+auswahl+" :)");
}
msg_txt.replaceSel(+auswahl+" :)");
function insertSmiley(sm) {
Selection.setFocus(msg_txt);
Selection.setSelection(help_mc._selA, help_mc._selE);
var auswahl = msg_txt.text.substring(help_mc._selA, help_mc._selE);
msg_txt.replaceSel(auswahl + sm);
}
// auf dem jeweiligen Smiley:
on(release) {
_root.insertSmiley(":)");
}