Ifields ---

Look at the file MyKal100 provided. It works and it's a great starting foundation for what you can do with looping. Take a look at his coded frames. The first frame of code is the variable. The last frame of code is the If Then statement based on the variable.

If you look at the first part of the code in the last frame, you'll see
if (countMe==howManyTimes) {
stop();


That is saying that if the movie has played 3 times, then "stop", in which the player will stop on that particular frame. Replace the stop(); code with a "getURL" function. Like this exactly but replace the full URL path with your own:
getURL("http://www.yourdomain.com");

Hope that helps. MyKal100 just helped me big time even though the post is 4 years old.