Thanks for your ongoing help Ronald.
Ok, I started over using the exact example from this tutorial.
I also switched from asp.net to asp which has seemed to help.
In the theme of starting from scratch, this tutorial allows me to get back to where I was. I can load and display all of my variables, once!
I am left with the following.I need the image that I am loading with Loadmovie to be a clickable hyperlink to an external website. *The hyperlink I want to use is also a variable "Link" that I am loading.
Secondly, I have these 3 layers. (actions, images, and text) with 1 frame each. Per the example, in the actions frame I am loading and dynamicaly namimg all of the variables to match the multiple object and text area instances that I plan to display them in.
my string coming in to flash:Title0=title text here &SubTitle0=subtitle text here &Photo0=photo1.jpg &Link=http://www.website.com
&Title1=title text here &SubTitle1=subtitle text here &Photo1=photo2.jpg
&Link=http://www.website.com
&cant=2
How do I organize the frame timeline to play my first set of variables (Title0,SubTitle0,Photo0,etc.) to play for "say 50 frames" then to use the second set of variables (Title1,SubTitle1,Photo1,etc.) to play for the next 50 frames? and so on...
myData = new LoadVars()
myData.load("flash.asp")
myData.ref = this
myData.onLoad = function(succes){
if(succes){
for(var i=0; i<this.cant; i++){
this.ref["Title_txt"+i].htmlText = this["Title"+i]
this.ref["SubTitle_txt"+i].htmlText = this["SubTitle"+i]
this.ref["Link_txt"+i].htmlText = this["Link"+i]
this.ref["holder_mc"+i].loadMovie(this["Photo"+i])
}
}
else trace("Error loading data")
}
stop()