Creating Text Field into a MovieClip

I create a TextField into a MovieClip but it doesn't appear
to be inside. When I move the MovieClip , the textField should move
wherever the "father" MovieClip goes. But it doesn't happend. It
stays outside the movieclip in the _root.
NOTE: "Ventana" is a Class that creates a floating window.
Parameters into the class are: width, height,movieClip
container,Title,parent of the movieClip container, and a number of
the window.
Thank you

It didn't work.
But my question could be:
Can I do this:
function Ventana(w,h,my_mc,title,parent,i) {
this.miVentana.cuerpo.fondo.attachMovie(my_mc,"Componente",n+1000);
what does it mean ? I am sending my_mc as a parameter to the
Class Ventana, and my_mc is a movieclip that will have the content
(whatever, a square, a circle, text ,etc) of each window. It is
correct to use the method "attachMovie" and my_mc as a parameter or
my_mc must be in the library ???
thank you

Similar Messages

  • How can I merge 3 or more individual text fields into an editable summary text field?

    I am stuck and do not know where to begin. I am self taught in using Adobe LiveCycle and have found many answers here in the forums and via trial and error.
    I cannot find or create the correct java script or form calc to feed multiple text fields into one text field.  My supervisor is asking me to do this for two sections of a form I created using Adobe LiveCycle Designer ES 8.2.
    1)       Merge all 3 user entered text fields to an user editable summary text field at the end of the form.
    2)       Merge all 24 user entered text fields to an user editable summary text field at the end of the form.
    Since they are all individual text fields in response to various questions, I cannot use the global binding function. I do not want the summary text field to override the individual text fields.
    Here is the java scripting I placed on Show: calculate* Language: javascript Run: at client
    1) PDStrengthWeaknessComments.rawValue + "_" + OCStrengthWeaknessComments.rawValue + "_" + CEBAStrengthWeaknessComments.rawValue;
    Needless to say, these instructions are not working on my form. Would someone with a lot of experience or an IT degree kindly help me?

    I just tried adding the front end as you suggested and confirmed that the Object > Value is set to "calculated - user can override" for the summary text field.
    OverallAnalysisAppFeedback.rawValue = PDStrengthWeaknessComments.rawValue + "_" + OCStrengthWeaknessComments.rawValue + "_"  + CEBAStrengthWeaknessComments.rawValue;
    I was still unsuccessful.
    I opened the debugger and received the following information. I do not understand what AdobeLiveCycle is asking me to define.
    PDStrengthWeaknessComments is not defined
    1:XFA:GARP2011NewRecompeteSRW[0]:Page20-OverallAnalysisAppFeedback[0]:AllOverallAnalysis[0 ]:calculate
    PDStrengthWeaknessComments is not defined
    1:XFA:GARP2011NewRecompeteSRW[0]:Page20-OverallAnalysisAppFeedback[0]:AllOverallAnalysis[0 ]:calculate
    Budget1Comments is not defined
    1:XFA:GARP2011NewRecompeteSRW[0]:Page21-OverallAnalysisAppFeedback-Budget[0]:AlBudgetQs[0] :calculate
    Budget1Comments is not defined
    1:XFA:GARP2011NewRecompeteSRW[0]:Page21-OverallAnalysisAppFeedback-Budget[0]:AlBudgetQs[0] :calculate
    Do you have any additional tips or suggestions?

  • Dynamically created text field doesn't appear when imported

    Greetings,
    I have 2 issues regarding dynamically created text fields.
    What I'm trying to do is to create a text field inside a swf file,
    then import that swf into another file. The main problem is, the
    text field is created and displayed perfectly when i execute the
    first swf, but when i try to import the whole thing into another
    file, the text is not displayed.
    I have to point out that, when I add "stage" before the
    addChildAt command, the text appears, but I don't want the
    coordinates of the text box depending on it's location on the
    stage.
    The second problem is, I want the scroll buttons to appear if
    the text is longer than the text box, however they appear no matter
    what. I trace the values and they are correct, so I can't really
    understand why they keep appearing.
    Thank you very much for your help.

    The same thing is happening to me and it is starting to get annoying. I too am using Chrome and I think that might just be part of the issue. I am running a Macbook Pro 2010 13". Any insight on this would be helpful. Sorry I don't have a solution, but know that your not alone in dealing eith this issue.

  • How to convert the text field into currency field

    Hi,
    I have an requirement to converting the text field into currency.
    If I convert directly it gives dump.
    If I convert this to Numeric means it takes the decimals also as whole value.
    Is there any FM to convert the text field into Currency field.
    Please advice me.
    Thanks in advance.

    Hi,
    I am on an SRM sytem, which unfortunately does not have th FM: PSSV_TEXT_INTO_FIELD_CURRENCY.
    But I also need to transfer a string value like '12,99' to a field with type curr.
    Can i Do that manually, or is there another FM?
    I have already checked code with write to or pack/unpack.
    But without success yet.
    Something like this:
    DATA: g_str(11) type c.
    DATA: g_p type p.
    WRITE '12,99' TO g_str CURRENCY 'EUR'.
    is no use for me. Finally I need to move g_str to my curr-field, which causes st22.
    also: PACK g_str to <curr-field or g_p> dumps.
    Help appreciated.
    regards, matthias

  • Creating text fields

    When creating text fields, how do I get the cursor to print on the line instead of far above the line?

    I dodn't understand the question. Can you elaborate, and maybe include a screen shot of the problem you're seeing?

  • Dynamically created Text field inside of empty Movieclip

    Hi there.
    My goal is to have a button that, when clicked, an empty
    movieclip is created and a text field is attached to it.
    I could write it easily if the newly created instance names
    where hard coded, the problem comes with the syntax to generate
    them dynamically.
    Here's the code i have so far:
    ActionScript Code:
    button.onRelease = function() {
    createText();
    var count:Number = 1;
    createText = function () {
    _root.createEmptyMovieClip("placeholder"+count,this.getNextHighestDepth());
    this["placeholder"+count].createTextField("my_txt"+count,
    this.getNextHighestDepth(), 100, 100, 100, 100); count++;
    After that's done i still need to assign a text value to the
    text field, which i have no clue on how to do it...
    In other words I want to accomplish something like:
    placeholder[count].my_txt[count].text = "my text";
    I hope it's not confusing... Any help would be greatly
    appreciated.
    Thanks in advance!

    if your createText() function isn't working the way you want
    check your use of "this" and "_root". if they're not the same,
    you're not referencing your newly created movieclip correctly. and
    your textfield depth isn't what you really want, but it should work
    ok.

  • Part content of a text field into two columns

    Hi,
    I have a question regarding text field objects in Crystal Reports 2008 (SP3) for my ASP.NET app.
    I want the text object to have a maximum height and a column width. After the text object has reached the maximum height it should continue rendering the text into a second column.
    I already saw that function for single data records and per detail section (multiple columns setting in the Designer). Using it would require to throw my current report design away so I'm not too much into that.
    Is it possible to do that with existing functions? If yes - how?
    Regards

    Don't see how this could be done at all...
    Typically, if you can figure out how to do it in the designer, you can pattern that for the SDK. But like you said, only way to do it in the designer is to create a new multi-column report...
    Ludek
    Edited by: Ludek Uher on Oct 11, 2010 9:37 AM

  • Add text field into the 'subject' of a email submit button

    I have a form where the client will enter their name, organisation, query and details of their query into text fields.  I would like the text in the 'query' field to be added to the 'subject' of the email submit button.  This will identify different queries submitted by other clients before opening up the completed pdf form attachment.

    Hi,
    if you use ES3 or ES4 you can use my macro to create email scripts with values from form fields.
    http://thelivecycle.blogspot.de/2012/05/mailto-maker-marco-v1.html

  • How can I change the Background in a text-field into lets say grey?

    I created a text field and now I would like to not have the background in white. I did not figure out yet how I can do this. Also the help program did not help. Does anybody know how this works?
    Thanks a lot. Many greetings!

    Oh.. all right, forget it.. I just found it myself.... just looking a little more... Thanks for your help anyway....

  • AS3: How to get height of a dynamically created text field

    I am importing text from an XML file and want the lines of text to display in separate text fields beneath each other. How can I set the y value of each succeeding text field so that there is some space (40 pixels or so) from the above field, regardless of the length of the text? Here is my current code. Any help would be greatly appreciated.
    var textArray:Array = new Array();
    for (var i:int; i <myXML.TOPIC[0].QUERY.length(); i++) {
    var textField:TextField = new TextField();
    textField.htmlText = myXML.TOPIC[0].QUERY[i].QUESTION;
    textField.x = 100;
    //below is my problem....I want the y value to be based on the height of all the previous text fields that have been created
    textField.y = 100+(40*i);
    textField.border = true;
    textField.width = 800;
    textField.textColor = 0x000000;
    textField.multiline = true;
    textField.wordWrap = true;
    textField.selectable = false;
    addChild(textField);
    textArray.push(textField);

    There's nothing wrong with the approach you took... retain it as is.  What I was suggesting is basically the same, just a slightly different angle that doesn't need the conditional....
    var currentY:Number = 100;
    for (var j:int = 0; j <myXML.TOPIC[0].QUERY.length(); j++) {
       textArray[j].y =  currentY;
        // text gets added somewhere in here
        currentY =  currentY+textArray[j].height+5;

  • Store the text fields into vector

    Hi,thanks in advance to whoever give me some ideas:
    I have 5 text fields that take in the users' research interest areas in the specified Research Discipline, the Area of Interest is a vector in the Discipline class.
    so how can i collect the different areas from the text fileds and dump them into a vector?
    I have trouble taking in the textfileds' values

    I'm not sure I quite understand what you want, but here it goes. Each of your text fields content could be passed in your request object to a servlet. The servlet could then retrieve the values and put them into a Vector that you could then store in your session object. Code would look something like the following:
    String value1 = request.getParameter("value1");
    String value2 = request.getParameter("value2");
    String value3 = request.getParameter("value3");
    String value4 = request.getParameter("value4");
    Vector v = new Vector();
    v.addElement(value1);
    v.addElement(value2);
    v.addElement(value3);
    v.addElement(value4);
    HttpSession s = request.getSession(true);
    s.setAttribute("value", v);

  • How to create text fields & assign values form sql in ADF

    Hi all,
    I am new to oracle ADF,
    i want know how to create text fileds and how to assign the values to those fields from plsql.
    Regards
    Prakash

    http://technology.amis.nl/blog/3315/creating-an-adf-application-based-on-plsql-api-part-one-reading-data-as-a-collection-of-sql-type-objects
    Hope this will help.
    ~Krithika

  • Dynamically create Text Fields

    hi,
    i hav a form which contains 2 radio buttons.
    ...If v click one radio button, a text field should be displayed and should contain information returned by view object.
    ...If v click another radio button, the previous text field should not appear and new text firld should appear and should contain information returned by another view object...
    .....can anyone say how can this b done?....

    To make a textfield programmatically you can use something like this:
        public CoreOutputText createOutputText(String text) {
            CoreOutputText label = (CoreOutputText)FacesContext.
                    getCurrentInstance().getApplication().
                    createComponent(CoreOutputText.COMPONENT_TYPE);
            label.setValue(text);
            //System.out.println("label id = " +label.getId()); //TEMP
            return label;
        }I put that method in a UIComponentFactory class. To add the created OutputText to your PanelPage for instance you do:
    CoreOutputText output = UIComponentFactory.getInstance().createOutputText();
    getPanelPage().getChildren().add(output);Like this you add the output text to the the children of the panelpage.
    To remove the output again you can use getPanelPage().getChildren().remove(output);

  • IN OBIEE How to change Writeback input text field into textarea?

    HI,
    I've got writeback working, OBIEE 10.1.3.3, but I want a 255 character in that writeback text field with word wrapping. because we Can't see to get input
    type text to wrap, is it possible to change input type="text" to input type="textarea" for a writeback column?
    I tried to included Html with javascript code in Writeback column properties under CSS custom option.it's also not working
    HTML code:
    <html>
    <head>
    <SCRIPT LANGUAGE="JAVASCRIPT">
    function expandTextArea(textarealabel,e)
    if((textarealabel.textLength %45==0)&(textarealabel.textLength>1))
    if(e.which==8)textarealabel.rows=textarealabel.rows-1;elsetextarealabel.rows=textarealabel.rows+1;
    </SCRIPT>
    </head>
    <body>
    <FORM NAME="Workbook2" ACTION=" " METHOD="">
    <TEXTAREA ID ="Text1" COLS="20" ROWS="2" style="overflow:visible" ONKEYDOWN="expandTextArea this,event);">
    </TEXTAREA>
    </FORM>
    </body>
    <f/html>
    If you have any idea share with me ASAP.
    Edited by: devarasu on Feb 23, 2011 6:57 PM

    Hi thanks for your quick response,
    1) i have cheked you link there is no word Wrapping output, I want to view my writeback filed morethan one line ,is there any way to set instead Horizondal and vertical bar in that writeback filed. like Auto extending TestArea (it have Scrolling bar).
    2) Onemore thing also required,once i gave maximum length of WriteBack field 255 characters. but is not controlling it's allowing morethan 255 characters.kindly tell me how to control the lenth of the writeback field .
    Note: I am using SQL server DB,in DB and BI Answres writeback column properties i given 255 characters only but it's allowing morethan 255 characters.
    once again thanks to you.kindly help me on this ASAP.
    Thanks and Regards,
    Devarasu.R

  • How to change writeback input text field into textarea writeback field?

    Hi,
    I've got writeback working, OBIEE 10.1.3.3, but I want a 100 character in that writeback text field with word wrapping. because we Can't see to get input type text to wrap, is it possible to change input type="text" to input type="textarea" for a writeback column?
    I tried to included Html with javascript code in Writeback column properties under CSS custom option that is also not working.
    Thanks in Advance.
    Devarasu.R

    It's bug in obiee-writeback,it's resolved
    by using external java-jsp application then it will resolved.

Maybe you are looking for

  • PPR event hides button click :(

    Hi, I have a problem with the PPR event. I have a PPR on a field. If I change this field without tabbing out from it, and I press a button, the code in the button is not performed. I read the OAF DEV Guide, and I put in the processRequest the code: <

  • Comparison of Salaries

    Hello All, I would like to get what is the basic salary of each employee on 31.12.2010 and 01.01.2011 (increased). Please note that SAP payroll run has started from 01.01.2011, but 2010 salary record is in the system (seen when we overview from PA30)

  • Dump "GETWA_NOT_ASSIGNED" while implementing Remodeling

    Hello Everyone, i am trying to add an infoobject 0calweek with constant value using remodeling. while implementing this scenario i encountered with a short dump "GETWA_NOT_ASSIGNED" could anybody suggest any fix to this issue. Thanks and Regards, Aja

  • Adding dropdown list in an Infotype

    Hi ABAP HR Gurus, Good day. Basically, I need to add a dropdown list in a standard Infotype.  Can you kindly provide the steps on how to accomplish this?  Do I still need to use Transaction PM01 for this?  Thank you very much! Best regards. Brando Ed

  • Error messages when using InCopy packages

    I have an editor who travels a lot, and is having consistant problems with using the packaging workflow in InCopy. I believe some of his problems are human error - but don't have the technical reasons for the error messages. There have also been some