Hi,
You can adjust the level of visiblility with _alpha.....
Create a test movie with a a movie clip on the stage named "mcName" and add this code to the first frame of the main timeline. You can target any mc to alpha down with this function.
Code:
_root.alphaDown = function(target) {
this.onEnterFrame = function() {
_alpha -= 5;
};
};
_root.alphaDown(mcName);
To use a mask..... create a graphic in one layer, lock it and insert another layer,.... create a graphic in this layer... right click on the higher layer and select mask. The layer beneath will only reveal what is inside the graphic on the layer above.
Make a movieclip in the mask layer and attach it to your mouse with the code in the previous post to make a scrollable viewer.
NTD
Bookmarks