Hey guys.

I’ve been using as2 for a couple years now, and I have no idea how i haven’t come across this before, but any help would be appreciated.

I have a movie clip in the library. I went to linkage, named the instance “sol1”, and checked the “export for actionscript” box AND the “export in first frame” box.

On the first frame, i have this code:

Code:
if( Key.isDown(Key.SPACE) ) {
 root.attachMovie(“sol1”, “1”, {x: _ymouse, _y: _ymouse}, 3);
}
Basically, i want to “create” sol1 where the mouse is when i press space.

When i run the movie/game, it comes up with an error that says “The class ‘sol1’ could not be loaded.” When i press space it does absolutely nothing.

If i leave the “export in first frame” box UNchecked, then it doesn’t throw up the error but it still does nothing when i press help.

Any help would be appreciated!!