1.

codice:
fscommand("allowscale", "false");
testo = new LoadVars();
testo.path = this;
testo.onLoad = function(success)
{
	if (success) {
		this.path.link = this.c.split(",");
		this.path.sottotitoli = this.d.split(",");
		this.path.i = 1;
		this.path.scritta();
	}
};
function scritta()
{
	titolo = "" + link[i - 1] + "";
	sottotitolo = sottotitoli[i - 1];
}
function indirizzo()
{
	getURL(link[i - 1], "_blank");
}
testo.load("album.txt");
2.

stai esportando per il flash5, che non supportava il loadVars. devi aprire il menu File/Publish Settings (Ctrl + Shift + F12), e nel tab "Flash" scegliere "Flash Player 6" dal dropdown menu "Version".