I want text to display in a dynamic text box when something hitTests something else, basically. :x How do I do it?
good day
ok here is an idea it will help you
draw something like a circle on the main stage then convert it to a movie clip
after that make a dynamic text and give a name in the variable as status
now on the circle it self we will ad this code
onClipEvent(enterFrame){
_root.status.hitTest(_root._xmouse,_root._ymouse);
}
now test the movie and will notice that the dynamic text is appearing
a word false now move the mouse to the circle you notice the word false
change to true, test it
hope this is what you want