Trying to load Text Doc Variable into createTextField

The Text file, tested with regular dynamic box it loads

&Bio1=ThisBio

createTextField(“dynamic_txt”, 1, 100, 100, 150, 30);
dynamic_txt.text = Bio1;

Then Once I get that to work I want to put that on a movieclip in a function
When the function is called

I want to test conditions, This below works great, pulls in my image beautiful, dynamic.

if(targetRotation>=1453 and targetRotation<=1482) {
loadMovieNum(txtImageURL6.text,2);
}

Now I want to add the above createTextField to this.
That way the matching picture loads with the matching verbage from the db.

if(targetRotation>=1453 and targetRotation<=1482) {
loadMovieNum(txtImageURL6.text,2);
createTextField(“dynamic_txt”, 1, 100, 100, 150, 30);
dynamic_txt.text = Bio6;
}

Can you help?