How to start MC without button?

I want an introduction MC in my movie that loads without a button, but dont’ know how to do this. So when the visitor enters the site a MC plays untill it’s end.
Must be simple, but still…newbie but learning.

regards

you don’t need buttons to load/play stuff?!
do you mean load an external swf?
just stop the main timeline with stop();
loadMovie, and if this has no stop, it’ll just play, so at the end of it, you could issue a _parent/_root/_level0.play(); (depending on where you load)…

I’ll let you see what my file looks like. The actions are not on the buttons themselves.
I tried to put the intro MC on the main timeline, but then my button doesn’t work anymore.

my_btn.onRelease = function() {
this._parent.blok_mc.imageSymbol = “speelGoed”;
this._parent.blok_mc.textfileUrl = “scherm.txt”;
this._parent.blok_mc.gotoAndPlay(2);
};