Re: [Flashcoders] re: createTextField

2007-04-07 Thread robert
On Apr 6, 2007, at 10:06 AM, leolea wrote: Try adding: mytext.embedFonts = true; Also, put an empty dynamic textfield (offstage), select the font mysilkscreen and embed the characters you need. Should do it. I always thought adding a textfield to the stage was absurd so I've created a

RE: [Flashcoders] re: createTextField

2007-04-06 Thread Holth, Daniel C.
TextFields don't have onRollOver events, but MovieClips do. So you'll need to first create a MovieClip (like in your first question) and then create the textField in it. Heres some example code: var myMovieClip:MovieClip = this.createEmptyMovieClip(myMovieClip_mc, this.getNextHighestDepth());