Hi,
I am trying to dynamically getnerate text with an embeded swf file and
enabe the thing to be editable when you click on it.  Here is what I
have so far.

import mx.controls.TextInput;

_root.onMouseDown = function() {
        _root.createTextField("mytext",1,_xmouse,_ymouse,200,100);
        mytext.type = "input";
        mytext.multiline = true;
        mytext.type = "input";
        mytext.border = false;
        mytext.background = false;
};
Mouse.addListener(mouseListener);

Right now when I click on the text it re-creates the textfield.  How
do I set up something so when I click on it it becomes editable.  Thanks.










 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to