That is essentially what the menu module does, both internal links and external.
If you wish to allow the list module to link to external urls you could customize the list's xml file and the "list module Item" move clip.
1. Open the list xml file and add a new link attribute to each item that you wish to turn into a link:
| Code: : |
...item date="11/19/07" link="http://google.com"
|
2. Edit the "list module Item" move clip and change the line around 127 that looks like this:
| Code: : |
if (description.length>1 and flashblocks.Flashblocks.gate.ListFull.displayHtml) {
|
to the following:
| Code: : |
if (item.link.length>1) {
bg.onPress = function () {
getURL(item.link,"_blank")
}
bg.onRollOver = function () {this.alphaTo(50,1)}
bg.onRollOut = function () {this.alphaTo(90,1)}
bg.onRollOut()
}
else if (description.length>1 and flashblocks.Flashblocks.gate.ListFull.displayHtml) {
|