this is the script on the first frame in the movie. The asp page should return the name of the jpg in the Name variable. Then the pic should be loaded into the movie.
**********************
function makeContainer() {
createEmptyMovieClip("container", 1);
container.loadMovie(picName);
loadVariables("asp.asp?Record=1", container);
picName = Name;
}
makeContainer();
**********************
if i replace
**********************
container.loadMovie(picName);
**********************
with
**********************
container.loadMovie("Trade-show-1.jpg"
;
**********************
the picture shows up but is not database driven like i want it to be
thanks
**********************
function makeContainer() {
createEmptyMovieClip("container", 1);
container.loadMovie(picName);
loadVariables("asp.asp?Record=1", container);
picName = Name;
}
makeContainer();
**********************
if i replace
**********************
container.loadMovie(picName);
**********************
with
**********************
container.loadMovie("Trade-show-1.jpg"
**********************
the picture shows up but is not database driven like i want it to be
thanks