Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing url parameters in text doc & giving me trouble

Status
Not open for further replies.

wrighterb

Programmer
Feb 20, 2007
80
US

I have a txt document that I read urls from

Text doc.

&Link=http://www.blah.com?this=that&that=this

It blows up HERE on my & join
because of the text doc.

What should I do?

 


I am getting this error

Internal Error:No parameters or length to big...

Any ideas what that is, it shows the whole url in the address bar thou
 


Thanks

also

In my first frame of my old flash file I had this

loadVariablesNum("SpinWheelTwelve.txt?noCache="+Math.floor(random(1000000)/random(1000)), 0);
loadVariables("SpinWheelTwelve.txt?noCache="+Math.floor(random(1000000)/random(1000)), "Wheel");

How would I incorporate my no cache on the xml pull?

 
Ok am getting some stuff to show up

Does this look right? I think there is something wrong here

_root.Name1 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name2 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name3 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name4 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name5 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name6 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name7 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name8 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name9 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name10 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name11 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
_root.Name12 = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
Name1_txt.text = _root.Name1;
Name2_txt.text = _root.Name2;
Name3_txt.text = _root.Name3;
Name4_txt.text = _root.Name4;
Name5_txt.text = _root.Name5;
Name6_txt.text = _root.Name6;
Name7_txt.text = _root.Name7;
Name8_txt.text = _root.Name8;
Name9_txt.text = _root.Name9;
Name10_txt.text = _root.Name10;
Name11_txt.text = _root.Name11;
Name12_txt.text = _root.Name12;
 
Hey Hey I figured that out now I am working on images and links


_root.Image1 = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
txtImageURL1.text = _root.Image1;

_root.Link1 = this.firstChild.childNodes[0].childNodes[2].firstChild.nodeValue;
Link1.text = _root.Link1;
 
Ok I figured it all out, I do apprec the help !!!!!

Now I am trying this

I have all the dynamic text loading already,all good,
works when I put just the text field out there in the time line.

I am trying to load text now when

function displayImage() {

if(this>=that) {
loadMovieNum(bio1.text,3);
}

And it load the text variable bio1=thisorthat into movie 3
at a certain location on the stage.

Any Ideas?


Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top