доброго времени!
у меня есть презентация в ней 20 слайдов, нужно чтобы на каждом слайде при нажатии мышкой на иконку появлялось (желательно плавно) изображение, и при нажатии мышкой снова закрывалось (плавно).
я воспользовался
code snippets (click to load image from library):

Код AS3:
/* Click to Load Image from Library
Clicking the symbol instance displays the specified image from Library.
To load an image from the Library it must be located in the Library with its Export for ActionScript property turned on and a valid class name.
Instructions:
1. Right click on any bitmap symbol inside the library and select "Properties...".
2. Click the "Advanced" button to expand the "Bitmap Properties" dialog.
3. Enable the "Export for Actionscript" option.
4. Type 'MyImage' in the Class text field.
5. Click OK twice.
*/
movieClip_6.addEventListener(MouseEvent.CLICK, fl_ClickToLoadImageFromLibrary_4);
function fl_ClickToLoadImageFromLibrary_4(event:MouseEvent):void
{
// If you want to add a different image from the library,
// enter a different name in the Class text field at step 4 above and in the code below.
var libImage:MyImage = new MyImage();
var holder:Bitmap = new Bitmap(libImage);
addChild(holder);
}
но он работает только на основной монтажной линейке, во вложенном movie clip - нет. мне нужно во вложенном.
хотелось бы видеть вид ручки, а не курсора мыши при наведении.
появление по середине обязательно, а не в левом верхнем углу.
как можно модифицировать код?