I am having trouble loading a jpeg dynamically and I was wondering if I can get a boost in the right direction.
I have a querystring that has all the info I need, and everything but the jpg is loading properly in the movie. It probably has to do with the way I am setting up my variables
Here is the string
<PARAM NAME=movie VALUE="outlilne.swf?strTitle=Alicia Silverstone&strDate=July 10, 2004&strBestKnownFor=Clueless and her role as Batgirl&strDescription=Here is the Description where you can put anything you want&strImage=silverstone">
Here is what I have in the movie, loadImage is the empty placeholder mov
onClipEvent (load) {
var image = strImage;
loadMovie(""+image+".jpg", "loadImage")
}
It works fine if I specify and actual image in the loadMovie, but how can I get it dynamically? How do I get the image name from the querystring?
TIA