contentPath/complete and subdomains

Hi everyone,
I seem to have run into a problem with the “complete” event. What I am working on will have the user watch a movie and then when it is done playing the root timeline goes to frame 2. It works perfectly fine when typing in the full address (like in the help file example:http://www.helpexamples.com/flash/video/water.flv) but not when it comes from a subdomain or relative path (example: http://mysub.domain.com/intro_video.flv). Any help would be greatly appreciated!

p.s: “video_id” is a flash var. I tried it without using the flashvar and typing in the path myself and it didn’t help.

import mx.video.*;
intro.contentPath = video_id+"/intro_movie.flv";
var listenerObject:Object = new Object();
// listen for complete event;
listenerObject.complete = function(eventObject:Object):Void {
    _root.gotoAndPlay(2);
};
intro.addEventListener("complete", listenerObject);