I’m looking for some help from some experienced Flash users. Any feedback is greatly appreciated. I’m trying to load some images and text dynamically into my swf file. Here is what my code looks like…
preview = “…/_workdata/”+this._currentframe+"/preview.jpg";
info = “…/_workdata/”+this._currentframe+"/info.txt";
this.onLoad = function() {
preview_pic.loadMovie(preview);
loadVariablesNum(info, 0);
};
I have the “preview” and “info” files in their correct locations and when I open the flash file locally using the Flash Player, it works perfectly…the image and text load properly into the flash file.
Problem I’m having is, when I put them on my server with the same exact directory structure and view the file on my page, they’re not loading.
The flash file is loading into an inline frame on my page, which I think is causing the problem, because if I directly type the url to the flash file and don’t look at it in an inline frame off my web server, it loads properly.
Can someone fill me in as to how to solve this problem?
TIA