Hey,
Am having a bit of a problem with my dynamic text box not showing up. I will try to explain the best I can.
ok…
I’ve follewed this great to tutorial from monkeyflash.com on how to create it www.monkeyflash.com/flash/drag-and-drop/.
Now, in my project this tutorial will be one of my extrenal swf. The problem is that when it gets loaded into the main movie (via an emptyMovieClip) everything works fine, but my dynamtic text does not appear when you have dropped a shape on the right target or even not on the right target.
here’s part of the code:
star_mc.OnRelease = function():Void {
this.stopDrag();
if (eval(this._droptarget) == starTarget_mc) {
[COLOR=“RoyalBlue”]reply_txt.text=“Nice Job!”;[/COLOR]
this.enabled = false;
counter++;
}
The part that is highlighted in blue, I have tried adding _root or _parent to the code and still it will not display in the main movie.
e.g.
_root.reply_txt.text=“Nice Job!”;
_parent.reply_txt.text=“Nice Job!”;
The dynamic text box is not inside a mc, its just on the stage.
Does anyone have an idea why the dynamic text won’t show up in my main movie?
Thanks in advanced :thumb2: