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!

Display text field Like you would a movie when called

Status
Not open for further replies.

wrighterb

Programmer
Feb 20, 2007
80
US
I am trying to display a dynamic text block when called at a certain time in a movie.

loadMovieNum(bio1.text,3);

A text block being loaded into a movie?

 

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?

 
Instead of having the dynamic text block appear right away

I want it to load when a certain condition is met.

function displayTextField() {

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

when this condition is met, load the text field.

But I want to load it at a certain postion on the stage also.

Does that make better sense?

 
Take a look at the animation


once the wheel stops it loads a the same number top left of stage, I also want to load a dynamic text field here saying that number.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top