The (AS) Script you will need is:
- _root.object._alpha = 50;
Now the things you need to adjust to customize it to your personal needs is to change "object" to the Instance Name of your object. If you place the script on the object you want to use, make sure its a movie clip or button, and use "this" instead of "object". Then you change "50" to what ever transparence you want it to have. "0" is invisible, and "100" is solid.
If you want to put it on a button you will use this (AS) Script:
- on (release) {
- _root.object._alpha = 50;
- }
You will need to change the same things in this one, plus where it says "release". You can change this to make it occure on "rollOver" or many other interactions of the button.
You can apply this into absolutly any different kind of script and once the program reads it, the alpha action will take place.