Score: 3
"Tutorial? MEH"
date: July 17, 2006
you say the mouse replacement script is the simplest, yet you give us the strangest script!:
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
Mouse.hide();
}
you have no mention of registration during the creation of MC's, such as the cursor replacement and the platformer, and i find this entire "tutorial" for more knowledgeable scripters because you have no explanation of any of it.
i put "tutorial" in quotes because this is no actual tutorial. this simply tells you what to do, and does not necessarily "tutor". a beginner must copy your script and then study it for him/herself in order to be educated, even though a tutorial's purpose is to educate.
most of these scripts people ask about on the forums. no offense, but i dont think the majority of people will look at this rather than head for the forums (though i may be wrong).
you have an excellent understanding of script...or do you? you couldve taken this all from someone else and simply created a "tutorial" out of it, again in quotes. i know you don't have all the time in the world to explain everything, from script to registration to this.gotoAndStop with the platformer, etc, but flashes take time. make a game with stuff you gave here, im sure you could, and dont whip up something like this in a half hour with the sole purpose of having something submitted.
Author's Response:
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
}
closes the actions
onClipEvent (mouseMove) {
_x = _root._xmouse;
moves it left and right
_y = _root._ymouse;
moves it up and down
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
moves it left and right
_y = _root._ymouse;
moves it up and down
Mouse.hide();
:hides the mouse
}