access dynamically loaded movieclip (stage > scrollpane > myloader > movieclip)
问题 what I'm trying to do is accessing snapText = scrollPane.source.textSnapshot; from an external swf. I've tried: trace("-->: "+scrollPane.source.textSnapshot.getText(0, 1000)); trace("-->: "+myLoader.content.textSnapshot.getText(0, 1000)); trace("-->: "+mc.textSnapshot.getText(0, 1000)); trace("-->: "+mc.getChildAt(0).textSnapshot.getText(0, 1000)); trace("-->: "+mc.getChildByName(myLoader).textSnapshot.getText(0, 1000) ); trace("-->: "+scrollPane.content.textSnapshot.getText(0, 100)); all of