Hi you guys,
I am filled with questions today...
I have this SWC Component I would like to use. I created the component but when I drag it into the stage, it begins to "play" frame by frame every time I move the component around the stage?! How is that possible? Can I make this stop? This is my AS:
ActionScript Code:
#initclip
function componentClass()
{
System.security.allowDomain("*");
this.update();
}
componentClass.prototype = new MovieClip();
componentClass.prototype.update = function()
{
_root.host = this.host;
//pull into Component
this.bg._visible = false;
this.createEmptyMovieClip("this_mc",this.getNextHighestDepth());
this.this_mc.loadMovie("http://www.mydomain.com/whatever.swf",0);
this.stop();
};
//Content Prototypes
componentClass.prototype.setHost = function(c)
{
this.host = c;
this.update();
};
componentClass.prototype.getHost = function()
{
return (this.host);
};
Object.registerClass("componentPlayer",componentClass);
#endinitclip
Help? Thanks!

"In the game of chess you can never let your adversary see your pieces."