FLVPlayback component contentPath relativity

[LEFT][COLOR=#000000][FONT=Arial]I have a site that loads in a XML file which tells where to find the assets to load into the main SWF. Images, and external SWFs load in correctly, but for some reason FLVs don’t load at all unless the contentPath is an absolute path, which I can’t have for this project. I’ve made my links relative to the HTML page as well.
[/FONT][/COLOR][COLOR=#000000][FONT=Arial]**
My file structure is as such:
**[/FONT][/COLOR][COLOR=#000000][FONT=Arial]
index.html – The main loader file (outside project folder)
[/FONT][/COLOR][COLOR=#000000][FONT=Arial]
project/shared/published/section1/loader.swf – The main SWF to

load[/FONT][/COLOR][COLOR=#000000][FONT=Arial]project/english/images/videos/welcome.flv – The movie to load in.
[/FONT][/COLOR][COLOR=#000000][FONT=Arial]
Is it possible that the FLVPlayback contentPath’s path is relative to the SWF and NOT the HTML page? Any help would be greatly appreciated.

**Code for that page:
**FLVPlayback component on stage with name instance name of “playback1”

import mx.video.*;

[/FONT][/COLOR][/LEFT]


/*////////////////////////////////////////////////////////////////
Load the video content paths
/////////////////////////////////////////////////////////////////*/
//playback1.contentPath = "http://www.wslash.net/TOU/Snapdragon/testing_digiteria/welcome.flv";
playback1.contentPath = getNodeValue(findNode(videos, "one"));
playback1.play();

// Assign the mySeekBar instance to the flvPlayback instance
playback1.playPauseButton = playpause;
playback1.backButton = myrewind;
playback1.seekBar = seekbar_container.myseek;
[LEFT][COLOR=#000000][FONT=Arial]playback1.bufferingBar = mybuffer; [/FONT][/COLOR][/LEFT]

[LEFT][COLOR=#000000][FONT=Arial]

[/FONT][/COLOR][/LEFT]