Best Tutorials website
Latest tutorials

Advertisment

Mouse.Hide meets With

Mouse.Hide meets With

This lesson will show you how to use the mouse.hide action to create a custom mouse cursor.


Views: 542 | Rating star | by Steve
Flash - Actionscripting

Changing the Color of A Movie Clip

Changing the Color of A Movie Clip

Using the color object in Flash 5 you can change the color of your movie clips.


Views: 465 | Rating star | by David
Flash - Actionscripting

Load Movie

Load Movie

Flash tutorial demonstrating essential techniques to begin creating web sites using Load Movie.


Views: 439 | Rating star | by Isac
Flash - Actionscripting

Pop-Up Windows

Pop-Up Windows

Popular Flash 5 technique explained in detail to open popup windows in Flash.


Views: 407 | Rating star | by Amy
Flash - Actionscripting

Dreamweaver-Flash: Using Frames

Dreamweaver-Flash: Using Frames

Use movies to control frames content in your Dreamweaver 4 HTML pages.


Views: 441 | Rating star | by Donald
Flash - Actionscripting

Simple If...Else Tests

Simple If...Else Tests

There's a very useful shortcut in if...else tests when you test whether a variable equals 0 or not. But you have to know how to use the !...


Views: 436 | Rating star | by Sarah
Flash - Actionscripting

Passing Variables to Flash

Passing Variables to Flash

In this tutorial I will explain how to pass variables to flash and what dynamic things you could do with passing variables.


Views: 404 | Rating star | by Daniel
Flash - Actionscripting

Functions

Functions

There are times when you will want to have a section of ActionScript code reused. In those cases, functions play an important role. A function is a...


Views: 513 | Rating star | by Brad
Flash - Actionscripting

AS 2.0 Variable Hints

AS 2.0 Variable Hints

This short article is on variable naming in the new Actionscript 2.0 (and 1.0, I guess).


Views: 442 | Rating star | by Source
Flash - Actionscripting

Commenting Your Code

Commenting Your Code

Most of the best programmers on the world will tell you that: always comment on your code. For yourself and for the others. This is absolutely vital.


Views: 465 | Rating star | by Stephen
Flash - Actionscripting

Naming Conventions

Naming Conventions

The naming scheme of your movie is very important for readability purposes.


Views: 455 | Rating star | by Steve
Flash - Actionscripting

Global Variables

Global Variables

Global variables are useful when you want a variable to be accessible from anywhere in your movie, even in different scenes.


Views: 441 | Rating star | by Troy
Flash - Actionscripting

Var Declaration

Var Declaration

This is not a very important issue for small movies, but it is a good thing to think about it.


Views: 465 | Rating star | by Jarry
Flash - Actionscripting

Variable Scope

Variable Scope

One of the first problems programmers encountered when switching from Flash 5 to Flash MX was the variables scope.


Views: 481 | Rating star | by Isac
Flash - Actionscripting

Relative Addressing

Relative Addressing

We have talked already about scope issues and addressing. They're tricky. Well there's very particular issue I want to talk to you about:...


Views: 427 | Rating star | by Marry
Flash - Actionscripting

_root, _parent, and this

_root, _parent, and this

_root is an alias, just as _parent and this.


Views: 426 | Rating star | by Donald
Flash - Actionscripting

Incrementation or Decrementation

Incrementation or Decrementation

First: what does increment mean? When I say that I increment a value by 1, it only means that I add 1 to this value. There are several ways I can...


Views: 446 | Rating star | by Jarry
Flash - Actionscripting

Getting an Index Position from an Array

Getting an Index Position from an Array

There are several times when I found it helpful to get the position of an item contained in an array.


Views: 431 | Rating star | by Amy
Flash - Actionscripting

Array Duplication Made Easy

Array Duplication Made Easy

To make a duplicate of an array proves more difficult than it seems.


Views: 459 | Rating star | by John
Flash - Actionscripting

Tertiary Operator

Tertiary Operator

This operator is also used to shorten if tests. It is used in the case that: if something is true, then 1 (or 0) thing happens, otherwise 1 (or 0)...


Views: 436 | Rating star | by Daniel
Flash - Actionscripting