I got a Problem with a Movie Clip I add to the Stage in Flash CS4/AS3.
The Flash File consist of two MovieClips, \"Inside\" and \"Outside\". The \"Inside\" Clip
Try to declare a public
var
corresponding to the name of your inside clip into you outside clip:
package gui
{
import flash.display.MovieClip;
public class Outside extends MovieClip
{
public var insideClip:MovieClip; // here your declaration so the compiler can find it
public function Outside(){}
}
}