here is my problem
i load a file called library.swf into main.swf using loadMovie("library.swf", emptyMovieClip).
this file has an empty timeline but it contains many items in the library.
the library items are set to be exported for actionscript and they each have an identifier.
when I try to use the attachMovie method in the main.swf for any of the items contained in the library of library.swf that doesn't work.
This is how I've done it before if I remember correctly...
loadMovie("library.swf", emptyMovieClip);
trace(emptyMovieClip.Item1);
trace(emptyMovieClip.Function1(emptyMovieClip.Item 2));
This is how I've done it before if I remember correctly...
loadMovie("library.swf", emptyMovieClip);
trace(emptyMovieClip.Item1);
trace(emptyMovieClip.Function1(emptyMovieClip.Item 2));
it sure doesn't work like that but thx for posting