Score: 10
"cool"
date: March 11, 2008
My advices, to make your tutorial better:
Movie Clips are better to use as a buttons, but at the beggining buttons are ok.
Don't use on(release){...};
instead better use:
make a Movie Clip (or button) with an instance name, for example: "myButton_", and in the keyframe place code:
myButton_.onRelease = function() {...};
To make an animation, on for other purposes you can use also
myButton_.onRollOver = function() {...};
myButton_.onRollOut = function() {...};
Do not use _root. If you import movie for example, the imported movie _root, becomes the importing movie _root, and that can mess things up.
Don't use:
tellTarget (_root.loader) {
gotoAndStop (_root.percentbytes);
}
instead:
loader.gotoAndStop(percentbytes);
Good luck :]
March 11, 2008
Author's Response:
ok thanks ill look into that and i might add that into the tutorial at a later date when i get used to using it.