Changing the appearance of a movieclip in actionscript:
Changing alpha (trancpencety)with actionscript:
onClipEvent (load) {
value=50;
this._alpha=value;
}
(you can change the variable value into somthing else for more or less alpha)
_______________________________________
Rotating an object in actionscript.
onClipEvent (load) {
value=90;
this._rotation=value;
}
(you can change the variable value into somthing else for more or less degrees of rotation)
_______________________________________
Making an object bigger with actionscript.
onClipEvent (enterFrame) {
value=1;
this._height += value;
this._width += value;
}
(you can change the variable value into somthing else for sizing faster or slower)
_______________________________________
Making an object smaller with actionscript.
onClipEvent (enterFrame) {
value=1;
this._height -= value;
this._width -= value;
}
(you can change the variable value into somthing else for sizing faster or slower)
_______________________________________
Keep posting
~EviLUdy