Flash kit players

I am rather new to flash… I downloaded a flash kit player from HERE and I was wondering how to get it to auto play after loading instead of having to push play

apply this action to the flash player’s button:

onClipEvent(load){
    tellTarget ("../load") {
        gotoAndPlay("play");
    }
    tellTarget ("../") {
        gotoAndPlay("eqstart");
    }
    ../:status = "play";
    this.gotoAndStop("on");
}