text keeps stretching in resize of box

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

  1. #1

    Default text keeps stretching in resize of box

    i'm trying to get a text box to be as large as the movie clip

    however, if i create a text box then resize it, the font is stretched and
    skewed to fit the entire width and height, but i don't want it to, i want it to
    stay 8pt font like i have specified

    anyone know whats going on ?

    thanks,
    Nate

    natebell Guest

  2. Similar Questions and Discussions

    1. Text Box Resize
      When I resize a text box, I get two different types of reponses, depending on how the text box was made. 1) If I use the type tool and click and...
    2. resize text field on scale...
      This seems to be a tricky subject... Well maybe not trick or hard but I sure haven't seen a good tutorial on it. This is the situation: I have...
    3. Got it: stretching dynamic text fields
      Someone answered in another news group: Using instance names for text areas in MX, you can use the property "autoSize". "J-Dogg"...
    4. stretching dynamic text fields
      Hi everyone, How do I make a text field dynamically fit its contents? I have a movie clip instance, called "macromedia", which holds a dynamic...
    5. Can't resize a text block
      I can't resize text blocks. If I pull a corner handle and stretch it to a new location it bounces back to it's original shape. Is there a setting...
  3. #2

    Default Re: text keeps stretching in resize of box

    don't use the drawing methods to resize, use actionscript. for example, if your textfield has instance name tbox you can use:
    tbox._width=stage.width; //to resize without distorting fonts
    kglad Guest

  4. #3

    Default Re: text keeps stretching in resize of box

    USe the handles on the textbox to resize the textfield; NOT the
    transformtool.

    John

    --
    ----------------------------------------------------------------------------
    -----------
    RESOURCES
    [url]http://groups.google.com/advanced_group_search?hl=en&as_ugroup=*flash[/url]
    ----------------------------------------------------------------------------
    -----------
    TUTORIALS at
    [url]www.laiverd.com[/url]
    Flash & PHP Emailform
    Using textfiles in Flash
    ----------------------------------------------------------------------------
    -----------


    Laiverd.COM Guest

  5. #4

    Default Re: text keeps stretching in resize of box

    i was using the size properties

    thanks guys

    natebell 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