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.
my_array = new Array()
text = "schreib das im kreis"
my_array = text.split("")
kreisschrift(50,400,300)
function kreisschrift(radius,x,y) {
for (n=0;n<=my_array.length;n++) {
xx = x - Math.cos(Math.PI/180*n*360/(my_array.length+1)) *radius
yy = y - Math.sin(Math.PI/180*n*360/(my_array.length+1)) *radius
_root.createEmptyMovieClip("mc"+n,n)
_root["mc"+n]._x = xx
_root["mc"+n]._y = yy
my_tfo = new TextFormat()
my_tfo.size = 10
my_tfo.font = "arial"
_root["mc"+n].createTextField("tf"+n,1,0,0,12,15)
_root["mc"+n]["tf"+n].text = my_array[n]
_root["mc"+n]["tf"+n].setTextFormat(my_tfo)
}
}
this.createEmptyMovieClip("h", 1);
h.createTextField("i", 1, 0, 0, 100, 20);
a = new TextFormat();
a.font = "Lucida Console";
h.i.text = "blubb";
h.i.setTextFormat(a);
this.createEmptyMovieClip("h", 1);
h.createTextField("i", 1, 0, 0, 100, 20);
a = new TextFormat();
a.font = "Lucida Console";
h.i.text = "blubb";
h.i.embedFonts = true;
h.i.setTextFormat(a);
this.createTextField('dreh_txt',1,200,200,100,20);
dreh_txt.embedFonts=true;
dreh_txt.text='huuuu ein geist !!!'
dreh_txt.setTextFormat(new TextFormat('ID'))
dreh_Interval=setInterval(function(){dreh_txt._rotation+=10},40);