Hallo Forum,
Brauche Hilfestellung!
Wo und was für einen Befehl füge ich in dieses AS ein, dass eine bestimmte Internetseite gefunden wird.
oldB1 = base.movB1._x;
oldB2 = base.movB2._x;
circle.onEnterFrame = function(){
this._rotation += 1.68;
};
flm = setInterval(flame,3100);
function flame(){
base.duplicateMovieClip("tmpbas",3);
tmpbas.onEnterFrame = function(){
if(this._xscale>244){
this.removeMovieClip();
}
this._xscale = this._yscale += (244-this._yscale)/7;
this._alpha += (0-this._alpha)/7;
};
}
function bOver(){
a = ((base.movA._xscale < 144)&&(base.movA._xscale>99)) ? a : -a;
base.movA._xscale = base.movA._yscale += a;
base.movB1._x -= a/3;
base.movB2._x += a/3;
}
base.onRollOver = function(){
a=3;
tmp = setInterval(bOver,32);
};
base.onRollOut = function(){
clearInterval(tmp);
base.movA._xscale = base.movA._yscale = 100;
base.movB1._x = oldB1; base.movB2._x = oldB2;
};
base.onPress = function(){
clearInterval(tmp);
tmpbas.removeMovieClip();
base.movA._xscale = base.movA._yscale = 100;
base.movB1._x = oldB1; base.movB2._x = oldB2;
base.movC._alpha = 46;
};
base.onRelease = base.onReleaseOutside = function(){
base.movC._alpha = 100;
};
flame();
stop();
Gruß, Richard
Brauche Hilfestellung!
Wo und was für einen Befehl füge ich in dieses AS ein, dass eine bestimmte Internetseite gefunden wird.
oldB1 = base.movB1._x;
oldB2 = base.movB2._x;
circle.onEnterFrame = function(){
this._rotation += 1.68;
};
flm = setInterval(flame,3100);
function flame(){
base.duplicateMovieClip("tmpbas",3);
tmpbas.onEnterFrame = function(){
if(this._xscale>244){
this.removeMovieClip();
}
this._xscale = this._yscale += (244-this._yscale)/7;
this._alpha += (0-this._alpha)/7;
};
}
function bOver(){
a = ((base.movA._xscale < 144)&&(base.movA._xscale>99)) ? a : -a;
base.movA._xscale = base.movA._yscale += a;
base.movB1._x -= a/3;
base.movB2._x += a/3;
}
base.onRollOver = function(){
a=3;
tmp = setInterval(bOver,32);
};
base.onRollOut = function(){
clearInterval(tmp);
base.movA._xscale = base.movA._yscale = 100;
base.movB1._x = oldB1; base.movB2._x = oldB2;
};
base.onPress = function(){
clearInterval(tmp);
tmpbas.removeMovieClip();
base.movA._xscale = base.movA._yscale = 100;
base.movB1._x = oldB1; base.movB2._x = oldB2;
base.movC._alpha = 46;
};
base.onRelease = base.onReleaseOutside = function(){
base.movC._alpha = 100;
};
flame();
stop();
Gruß, Richard