I’m really hoping this is simple.
Using a hybrid of some K tutes and others, I was able to get dynamic HTML to load and scroll. No prob.
I added it to a nested movie clip, figured out some dot targeting (in an ongoing attempt to shuck telltarget), and got the HTML to load but the scrollbar isn’t functioning. It’s there, but doesn’t work??
I’ve searched around here and found plenty of titles that fit the description, but not the issue…
Chances seem really good that I’m doing something obviously wrong. I’m hoping so at least…
Here’s the code working (not nested):
loadVariables("text.txt", "_root");
onLoad = function() {
scroller.text = this.gk_text;
};
Here’s my failed attempt to make the nesting work:
loadVariables("text.txt", "_root.scr");
onLoad = function() {
scroller.text = this.gk_text;
};
source files to come.
Thanks for your thoughts!