I am trying to load images using the flash vars process. I can get it to work for files located within or under the folder where the SWF resides, but I cannot get it to use images stored elsewhere on the server. I have tried using all sorts of image path formats, but none have worked. Using Firebug to view the HTTP calls, I can see that image paths that start with slashes are requested (but come up 404 since the path is wrong), but image paths that are full URLs starting with "http://" are not even requested. I am using version 1.2
Here are some example FlashVars strings I have tried (the SWF is in /aleo and the images are in /somefolder):
image0=http://www.myserver.com/somefolder/images/a.jpg&title0=Test
image0=/somefolder/images/a.jpg&title0=Test
image0=../somefolder/images/a.jpg&title0=Test
image0=/../somefolder/images/a.jpg&title0=Test
