Nieuw lid |
|
geef je knop een instance naam, voor mijn code te gebruiken moet je de knop, de instancenaam "knop" geven.
Zet in de TIMELINE de volgende AS
knop.onRollOver = function() {
onEnterFrame = function () {
this._alpha-=10;
};
};
knop.onRollOut = function() {
onEnterFrame = function () {
this._alpha+=10;
};
};
knop.onRelease = function() {
getURL("http://www.jesite.com", "_blank");
};
knop.onRollOver = function() { onEnterFrame = function () { this._alpha-=10; }; }; knop.onRollOut = function() { onEnterFrame = function () { this._alpha+=10; }; }; knop.onRelease = function() { getURL("http://www.jesite.com", "_blank"); };
edit, je moet er nog even bijzetten dat als alpha 0 is dat hij dan delete onEnterFrame doet, zlfde bij 100 voor de rolloff |