
1. First, drag and drop a list component from the components panel.
2. Set the background color to Grey or Black.
3. Then Select the List component and type the following code.
- onClipEvent (enterFrame) {
- transList (this);
- function transList (listRef) {
- listRef.depthChild0._alpha = 0;
- for (var i in listRef.content_mc)
- listRef.content_mc[i].bG_mc._alpha = 0;
- }
- }
onClipEvent (enterFrame) {
transList (this);
function transList (listRef) {
listRef.depthChild0._alpha = 0;
for (var i in listRef.content_mc)
listRef.content_mc[i].bG_mc._alpha = 0;
}
}
Click image to view full size.
Final - Image
Finally this is the out put you end up with.
discuss this topic to forum
