alexandre henrique Posted July 1, 2011 Report Share Posted July 1, 2011 Boa noite, preciso de ajuda!Estou com um banner em flash que terá uma imagem + um texto + um link, so que tudo vindo de um XML.já consegui fazer a imagem e o texto, mas o link não ta rolando!O banner.fla temno primeiro frame:System.useCodepage = true; var arquivo:XML = new XML(); arquivo.load("arquivo.xml"); arquivo.ignoreWhite = true; arquivo.onLoad = function() { var_img.loadMovie(this.childNodes[0].childNodes[0].attributes.imagem); var_legenda.text = this.childNodes[0].childNodes[0].attributes.legenda; var_link.String = this.childNodes[0].childNodes[0].attributes.link; } em outra line, tambem no frame 1, tem: um botao do tamanho do banner, justamente p/ ter o tal link definido no XML. nas propriedades do botao tem: on (press){ getURL(var_link); } o arq.xml tem: <?xml version="1.0" encoding="iso-8859-1"?> <galeria> <foto imagem="img_fla/img_1.jpg" legenda="Artros.com.br" link="http://registro.br"/> </galeria>Quando testo no FF, a ação ate acontece, mas dá erro e a URL exibe "undefined"agradeço desde já! Quote Link to comment Share on other sites More sharing options...
0 Anti-puff Posted July 4, 2011 Report Share Posted July 4, 2011 use apenas:var_link = this.childNodes[0].childNodes[0].attributes.link; Quote Link to comment Share on other sites More sharing options...
Question
alexandre henrique
Boa noite,
preciso de ajuda!
Estou com um banner em flash que terá uma imagem + um texto + um link,
so que tudo vindo de um XML.
já consegui fazer a imagem e o texto, mas o link não ta rolando!
O banner.fla tem
no primeiro frame:
em outra line, tambem no frame 1, tem: um botao do tamanho do banner, justamente p/ ter o tal link definido no XML. nas propriedades do botao tem: o arq.xml tem:Quando testo no FF, a ação ate acontece, mas dá erro e a URL exibe "undefined"
agradeço desde já!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.