Loop video in Flash AS2

If you want to loop a movie on your flash project, select the movie / video and in the action script box put:
/////////////////////////////
on(complete){
 this.autoRewind = true;
 this.play();
}
/////////////////////////////
This should just keep it running for ever.
Bookmark to:

Flash Actionscript Set Focus

If you want to set focus to a text input field / text area in Flash then use the following code:
stage.focus = myTextField;
Selection.setFocus(instanceName);
Bookmark to: