hiho sers,
ich habe ma da irgendwie mal was zamgeschustert aber das leider ned... :/ also es das schaf ist ned mal anklickbar....
ist das komplett falsch oder zumindest mal in ansätzen richtig
mfg
destroy90210
ich habe ma da irgendwie mal was zamgeschustert aber das leider ned... :/ also es das schaf ist ned mal anklickbar....
ist das komplett falsch oder zumindest mal in ansätzen richtig
PHP:
this.createEmptyMovieClip("mc_alpha",1);
this.mc_alpha._x=random(500);
this.mc_alpha._y=random(500);
this.mc_alpha.useHandCursor = true;
this.mc_alpha.attachMovie("Sheep","schaf",2);
this.mc_alpha.createTextField("link",3,0,0,100,16);
this.mc_alpha.link._alpha=0;
myTextFormat = new TextFormat();
this.link.text = "zizuizi";
this.link.setTextFormat(myTextFormat);
function alpha () {
this.mc_alpha.schaf.onRelease = function () {
this.onEnterFrame = function() {
this.link._alpha = +10;
}
if (this._alpha == 100) {
delete this.onEnterFrame;
}
}
this.mc_alpha.schaf.onReleaseOutside = function () {
mc_alpha.schaf.onEnterFrame = function() {
this.link._alpha = -10;
}
if (this._alpha==0) {
delete this.onEnterFrame;
}
}
}
this.mc_alpha.alpha();
mfg
destroy90210