Score: 3
"Horrible"
date: December 27, 2005
The graphics were disgraceful, the text was annoying to read, next time try to make it clean and crisp.
Your actionscript is foolish.
"on(release) {
_root.clickcount+=1
}"
There is no need for the _root, as buttons manipulate variables at _parent (in this case _root).
Duplicating movieclips:
"onClipEvent(load) {
_root.positionx = enter the "x" number of where you want the movieclip to appear.
_root.positiony = enter the "y" number of where you want the movieclip to appear.
this._x = _root.positionx
this._y = _root.positiony
}"
should be changed to
"onClipEvent(load) {
_x = enter the "x" number of where you want the movieclip to appear.
_y = enter the "y" number of where you want the movieclip to appear.
}"
In password protection there is no need for the _root
Rotating movieclips:
"onClipEvent(enterFrame) {
_root.rotationspeed = #
this._rotation+=_root.rotationspeed
}"
Can be changed to
"onClipEvent(enterFrame) {
_rotation += #
}"
or (depending on whether you want a static speed variable)
"onClipEvent(enterFrame) {
rotationspeed = #
_rotation+=rotationspeed
}"
And for dragging buttons, you might want to replace on(release) with on(release, releaseOutside)
Author's Response:
Yeah well my dad can beat up your dad.