Free AS3 Courses
- Filed in
- Actionscipt
- Tutorials
- 3 weeks, 6 days ago by
Currently the Rich Media Institute is offering over 9 hours of free training. The online lessons comprises of video tutorials with practical examples, providing you with a comprehensive overview of ActionScript 3. You will have to act quick as the offer expires on February 15th. Once signed up, you have 365 days to complete the course.
Sign up to Comprehensive ActionScript 3AS3 Basics: Where’s my hand cursor gone?
- Filed in
- Actionscipt
- Tutorials
- 3 months, 1 week ago by
One of the first things you will notice when you start using Actionscript 3 is Movieclip’s no longer automatically invoke the hand cursor once you set a mouse event. Fortunately the solution is simple:
yourBtn.buttonMode=true; yourBtn.useHandCursor=true;
Now if you just have a textfield inside your Movieclip you are probably wondering why that blasted hand cursor is still hiding from you. To solve this add:
yourBtn.mouseChildren=false;
Setting mouseChildern to false ignores the mouse clicks of all the children inside the Movieclip. What’s super handy about this property is you no longer need to included hidden hotspots as the whole text area becomes the hotspot (not just the text)
AS3 Basics: Loading & reading XML tutorial
- Filed in
- Tutorials
- 7 months, 3 weeks ago by
One of the biggest improvements AS3 has over AS2 is the way xml is now handled. The old node syntax has been replaced with the more intuitive ECMAScript (E4X). This short tutorial introduces you to key concepts of working with xml in AS3.
Read more »Recent posts
Like the posts on the Flash blog? then subscribe to the rss feed or email updates and never miss another tutorial, review or free flash file again. You can also follow us on twitter.

CONVERSATION