Topic: Letter spacing for caption? Target path for caption?
I have a site using multiple galleries and now I need to add some letter spacing to the caption text.
I've managed to hide/show caption with this target path:
_root.mcLoader.sm.mClip_mc.Caption
.. but I can't target the dynamic text field named "txtText" which lies inside MovieClip "Caption" in simpleviewer.fla.
The code I'm trying to use is(and succesfully applied to gallery menu):
var format:TextFormat = new TextFormat();
format.letterSpacing = 1;
txtText.setTextFormat(format);
_root.mcLoader.sm.mClip_mc.Caption.txtText.setTextFormat(format);
..the code above is "poured in" multiple_galleries.fla.
Any ideas?