18
2010
How to become a better Flash developer
Developing in Flash can be a fun and rewarding experience. From creating widgets to games to enterprise level applications there is a vast array of challenges a Flash developer will encounter on a day to day basis. Here are 10 Flash tips for improving your Actionscript 3.0 knowledge to make you a better, more productive Flash developer. For the best tutorials, Follow netglos @twitter and netglos.com 1. Don’t write code on the timeline If you [...]
23
2010
Horizontal Slider Highlighted Menu with Flash
Purpose: Have a sliding horizontal bar, highlighting your horizontal menu Difficulty: Intermediate In Short: Using simple actionscript to create the movement. Actionscript used: (sample) easeSpeed = 5; //slider_mc is your Movie Clip’s name, not the Instance Name. slider_mc.onEnterFrame = function() { this._x += (xMove1-this._x)/easeSpeed; }; button_1.onPress = function() { xMove = button_1._x; }; button_2.onPress = function() { xMove = button_2._x; }; button_3.onPress = function() { xMove = button_3._x; }; button_4.onPress = function() { xMove = [...]
Popular Posts
- 100 Photography Tutorials for Professionals And Beginners
16 comments - Creating a Realistc SLR Camera with Photoshop
15 comments - Creative Great designed sneakers
6 comments - Creating a Realistic iPhone with Photoshop
5 comments - Taking Great Drop Photos Tutorial
5 comments

An article by admin