Hey...
Again, I'm not too familiar with swishmax and your files keep giving me a whole lot of errors which I have no idea how to fix.
Is there a reason that you want to use swishmax? If you have a day or two to spare, I suggest switching to Flash 8. I can think of two very good tutorials on how to do what you're doing right off the top of my head.
In referring to your problem...
1) You don't have anything inside the loadContent function.
You'll want to replase the loadContent() {} with:
Code:
function loadContent() {
var txt = THE XML PATH GOES HERE, DEPENDS ON YOUR XML
textBox.text = txt
}
That will bring in your text
for images, add in the following
Code:
function loadContent() {
var txt = THE XML PATH GOES HERE, DEPENDS ON YOUR XML
textBox.text = txt
var picPath = THE XML PATH GOES HERE
holder.loadMovie(picPath)
}
I don't know how to load in images with swishmax...but that is how you would do it in flash.
}
Bookmarks