movieclip - textboxes - problem

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default movieclip - textboxes - problem

    Hi,

    I'm having a movieclip "feld0" containing a dynamic textbox "text1".
    why does only the text "Home" in feld0 appear.
    I can't see the other textboxes, that should show me "Gallery"...why?

    for (a=1;a<6;a++) {
    duplicateMovieClip(_root.feld0,"feld"+a,a);
    _root["feld"+a]._x=95*a;
    _root["feld"+a]._y=0*a;
    _root.feld0._visible=true;
    _root["feld"+a]._visible=true;
    _root.feld0.var1="Home";
    _root["feld"+a].text1.text="Gallery";
    }


    Thomas Finke Guest

  2. Similar Questions and Discussions

    1. Flex/AS3 problem with embedded movieclip
      When I embedd a SWF inside my Flex/AS3 project then i cannot control stop/gotoAndStop it. The swf clip plays in loop with no control. WHen I load...
    2. Problem accessing movieclip properties (Actionscript2 newbie)
      I am placing an instance of a movieclip onto the _root of my movie using createEmptyMovieClip(...) and then attachMovie(...). It all works fine -...
    3. sound on movieclip problem
      I'm trying to play a sound on the rollover of a movieclip. On my frame actions I have the following code mouse_sound.attachSound("Big Over 001" ...
    4. ENABLE/DISABLE CHECKBOXES AND TEXTBOXES PROBLEM
      Can you please tell me the right way to do this?? it's realy important! thanks in advance... Hi all, Can you please tell me what's wrong with...
    5. a movieclip to control another movieclip???
      Well, try to trace the _x coordinate or print it onto screen so you can see what it is. What is pc_move? If you want to move the clip, you must...
  3. #2

    Default Re: movieclip - textboxes - problem

    Take a look on the "embed fonts" in the Text Field Properties Panel.

    Matheus
    // macromedia.general.brazil

    "Thomas Finke" <finke.thomas@gmx.de> escreveu na mensagem
    news:404473b4$0$12926$9b4e6d93@newsread2.arcor-online.net...
    > Hi,
    >
    > I'm having a movieclip "feld0" containing a dynamic textbox "text1".
    > why does only the text "Home" in feld0 appear.
    > I can't see the other textboxes, that should show me "Gallery"...why?
    >
    > for (a=1;a<6;a++) {
    > duplicateMovieClip(_root.feld0,"feld"+a,a);
    > _root["feld"+a]._x=95*a;
    > _root["feld"+a]._y=0*a;
    > _root.feld0._visible=true;
    > _root["feld"+a]._visible=true;
    > _root.feld0.var1="Home";
    > _root["feld"+a].text1.text="Gallery";
    > }
    >
    >

    Matheus Guest

  4. #3

    Default Re: movieclip - textboxes - problem

    there's no problem with that code. double check that your textfield in feld0 really has instance name text1.
    kglad Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139