Napofis
require 'brain.php';
Hallo @ all,
ich versuch mich gerade an Flash und versuch ein kleine Diashow zu erstelln mit hilfe diese Tutorials. (http://www.htwm.de/~sschoene/medienformate.htm#2)
Allerdings wenn ich das ganze ausführe kommt diese Fehlermeldung:
Aber im tut. stehts genau so
hier mal mein AS.
Was mach ich falsch?
ich versuch mich gerade an Flash und versuch ein kleine Diashow zu erstelln mit hilfe diese Tutorials. (http://www.htwm.de/~sschoene/medienformate.htm#2)
Allerdings wenn ich das ganze ausführe kommt diese Fehlermeldung:
1120: Zugriff auf eine nicht definierte Eigenschaft _root.
Aber im tut. stehts genau so

hier mal mein AS.
Code:
stop();
_root.anzahl = 17;
_root.xpos = 108.5;
_root.ypos =75;
if(_root.i==1) {
this.zurueck._visible = false;
}
this.createEmptyMovieClip('con',1);
this.con.visible = false;
this.con._y = _root.ypos;
this.con._x = _root.xpos;
this.con.loadMovie('images/'+_root.i+'.jpg');
this.con.onEnterFrame = function() {
var fin = int(this.con.getBytesLoaded()*100/this.con.getBytesTotal());
if (fin >= 100 && this.con._width > 0 && this.con._height >0) {
delete this.onEnterFrame;
this.con._visible = true;
}
_root.ausgabe_bildnummer = 'Bild '+_root.i+' von '+_root.anzahl;
}
Was mach ich falsch?