From what I read in Google's policies, it is allowed to load an external swf file into a flash at at runtime, I am working with an actionscript programmer to get this to work but am having some problems as they won't accept it.. I am wondering if anyone else has been able to do this successfully (so that a file bigger than the tiny 50k size limit can be used in the ad).... the code is below, if you see anything that stands out that might be keeping google from accepting it I would appreciate your advice. here is the code: //Stoping the main timeline where the image is only visible stop() //Creating a variable for a new movie clip var movie:MovieClipLoader = new MovieClipLoader(); //Adding a listener so we can determine later if the movie is loaded movie.addListener(this); //Loading external movie from specified address //"http://www.sasaandjelic.com/development/Rick/external.swf" is address of the external file at my server, this is the only thing you need to change in order to put another movie movie.loadClip("http://in-house-work.s3.amazonaws.com/FinalFlashAd.swf", loadedMovie); //Function that will initialize when listener sees that the external movie is loaded function onLoadInit(mc:MovieClip) { //Setting the external movie to be visible _root.loadedMovie._alpha = 100; //Starting the main timeline from frame 2 where the main timeline will play untill the last frame _root.gotoAndPlay(2); }