Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Dynamic Text

    I have a table set up that will have a row of text drawn from a database.
    That text is very long - memo field. When I view the page the dynamic text
    forces the table to grow off the page instead of wrapping around within the
    cell.

    Can someone give me some pointers on how to get dynamic text to wrap in a
    table cell?

    I have looked everywhere and I cannot find an answer.

    Please help.

    Regards,

    Sid



    Sid Skiba Guest

  2. Similar Questions and Discussions

    1. load external text to dynamic text field in levels
      Dear Sir I found the Tech Noe Index #16238 is useful in creating dynamically loaded text from external text file. However, the method mentioned...
    2. Dynamic text box within dynamic movie clip
      I'm having a similar problem. On mine I noticed that although the text doesn't show and the border doesn't show, the cursor changes appropriately...
    3. How to center text in dynamic HTML text field ???
      In Flash MX 2004 I suddenly find myself comletely helpless trying to align all text to the center in my dynamic text field. I dont recall running...
    4. Dynamic text fields. Continuing text over columns
      Hi I'm doing a mock up news paper article over 4 columns in flash mx and the text loads in dynamically. I have 4 dynamic text boxes sitting side...
    5. Dynamic Text Loaded from Text files -> Flash 5 <-
      I was wondering how I can dynamically load text into a text box from a text file using Flash 5. I've seen plenty infos how to do it with Flash MX but...
  3. #2

    Default Re: Dynamic Text

    Have you set the width of your table cell?

    "Sid Skiba" <sidskiba@telus.net> wrote in message
    news:bh11lp$cee$1@forums.macromedia.com...
    > I have a table set up that will have a row of text drawn from a database.
    > That text is very long - memo field. When I view the page the dynamic text
    > forces the table to grow off the page instead of wrapping around within
    the
    > cell.
    >
    > Can someone give me some pointers on how to get dynamic text to wrap in a
    > table cell?
    >
    > I have looked everywhere and I cannot find an answer.
    >
    > Please help.
    >
    > Regards,
    >
    > Sid
    >
    >
    >

    Peter Kumaschow Guest

  4. #3

    Default Dynamic text

    Hi,

    I doing a french website and would like to link a text field to a text field containing special french character : é,à,è,ê, ... but it doesn't work. With html formatting the &acute; tag doesn't work either.

    Any clue ?

    Thanks.



    PieArson webforumsuser@macromedia.com Guest

  5. #4

    Default Re: Dynamic text

    You need to URL encode the text file. You can find the codes here:
    [url]http://www.macromedia.com/support/flash/ts/documents/url_encoding.htm[/url]

    Alex


    "PieArson" <webforumsuser@macromedia.com> wrote in message
    news:bkscc5$cdg$1@forums.macromedia.com...
    > Hi,
    >
    > I doing a french website and would like to link a text field to a text
    field containing special french character : é,à,è,ê, ... but it doesn't
    work. With html formatting the &acute; tag doesn't work either.
    >
    > Any clue ?
    >
    > Thanks.
    >
    >

    Alex Motzenbecker Guest

  6. #5

    Default Dynamic text




    Deshfal webforumsuser@macromedia.com Guest

  7. #6

    Default dynamic text

    how do you make dynamic text fade in and out


    Deshfal webforumsuser@macromedia.com Guest

  8. #7

    Default Re: Dynamic text

    How can you change the alpha on dynamic text




    Deshfal webforumsuser@macromedia.com Guest

  9. #8

    Default Re: Dynamic text

    Go to Charecter Options under the Properties window, and then set it to embed font outlines for all charecters.


    Kidgamez webforumsuser@macromedia.com Guest

  10. #9

    Default Re: dynamic text

    you must include the font outlines to mask or fade dynamic text.
    unfortunately this means your etxt will anti alias, unless you use a pixel
    font.

    hth

    }`¬P


    Peter Blumenthal Guest

  11. #10

    Default Dynamic Text

    I am building a wedding videography website and I have a page called package options. On that page I have a scrolling dynamic text box with a list of all the different package options, I want to make one of those options a link to a HTML page with NO toolbar, No scrollbar and set dimensions of 445px wide by 400px high. JavaScript Pop ups are easy when I am using Actionscript on a button, frame, ect. But I do no t have the option of using Actionscript in this case. I only have the URL box in the properties panel to link my text. Is it possible to have a JS popup this way. If so any help would be greatly appreciated.

    Thank You.


    brandon_haslip webforumsuser@macromedia.com Guest

  12. #11

    Default Re: Dynamic Text

    brandon_haslip,

    You should be able to set the URL in ActionScript. What version of Flash are you using?

    As a last resort you could make your individual links as movieClips. You can build a script to scroll them or put them inside a Scroll Pane component. Then you can specify a JavaScript function to call with the fsCommand, swLiveConnect, or you can use a pseudo URL like the following:

    The following function would be defined on the same page that contains your movie.

    <script>
    //javaScript
    function popUpWindow(URLStr,width,height){
    popUpWindow = open(URLStr, ?popUpWindow?, ?toolbar=no, location=no, status=no, menubar=no, scrollbar=no, resizable=no, width=?+width+?, height=?+height);
    }
    </script>

    In your ActionScript code you would put something like:

    on(press){
    getURL(?javascript:popUpWindow(\?somePage.html\?, 500, 600);?); // this is a pseudo URL
    }

    I hope that helps,

    -Ken


    Kenneth J. Toley
    Senior Technical Support Engineer
    Macromedia - Flash MX
    Hero Protagonist webforumsuser@macromedia.com Guest

  13. #12

    Default dynamic text

    hi friends

    i have some problem in flash action script, please help me.

    i have to take one dynamic text,
    dynamic text name is: txt

    i used one button. when i click the button dynamic text color is changed
    on(press){
    hi = new Color(txt);
    hi.setRGB(0xff0000);
    }
    after apply the dynamic text color.

    when i select the dynamic text content. text is not showing,

    i want when i select the text it should be show native color of that.

    so please help me.

    how to rectify this.


    bye
    prasad

    kaliki Guest

  14. #13

    Default Re: dynamic text

    if u need to change the color of text then instead of using Color object use textColor property of textbox.
    e.g.

    on(press){
    txt.textColor = "0xff0000";
    }

    Nitin

    nITiNkIlLeRmEeRuT Guest

  15. #14

    Default dynamic text

    Hi,

    I would like to transform in button
    a dynamic word
    to make it move a bit from the left to the right
    but it seem that with dynamic text there is no reaction
    when your mouse is over the word...

    someone has a method ?

    thank a lot


    Sandra Berland Guest

  16. #15

    Default Re: dynamic text

    sandra,

    simply make a button. then 'edit' your button. on the 'rollover' state
    create a keyframe (f6).

    then select your text or whatever, on the 'rollover' state and make it a
    movieclip (f8).

    now you animate your movieclip however you want and it will use the
    animation from the movieclip when you rollover the button.

    // k



    "Sandra Berland" <sandra.berland@club-internet.fr> wrote in message
    news:410f5ffb$0$306$7a628cd7@news.club-internet.fr...
    > Hi,
    >
    > I would like to transform in button
    > a dynamic word
    > to make it move a bit from the left to the right
    > but it seem that with dynamic text there is no reaction
    > when your mouse is over the word...
    >
    > someone has a method ?
    >
    > thank a lot
    >
    >

    BLATANT! Self Promotions Guest

  17. #16

    Default Dynamic Text

    Using a mySql database and php to create a makeshift cms for creating html for
    a mass email application. Everything works perfectly except if I type the text
    that I am editing normally (without hitting the enter key) on the update record
    form the text goes into the database in a single line and is displayed on the
    (web page with the dynamic text) on one line as well. Have tried using tables
    css styles and font tags and the fields in the database are set to varchar 255.
    If anyone has any suggestions I would appreciate them. Thanks.

    AImacro Guest

  18. #17

    Default Dynamic Text

    I am using a multiple line text field form to update a record in a mySql
    database. When I just type freely (mutiple lines of text) the text is viewed
    as a single line on the page with the dynamic text. I need the text to be
    multiple lines like the update record form.

    AImacro Guest

  19. #18

    Default Dynamic text

    hai friends

    in Flash file i take dynamic text field,
    dynamic text field retrieving the content from xml file,
    xml file having the paragraphs,
    when we retrieve the content in dynamic text field.
    i want the clickable events for few words in that paragraphs.

    how to do that without using the buttons and movieclips,

    regards
    K.Durga Prasad



    kaliki Guest

  20. #19

    Default Re: Dynamic text

    Hi
    In xml you can give like this
    otherwise search a specified String from the xml and replace with the
    asfunction

    <a href='asfunction:_root.clickHandler,0'>"+str_urs+" </a>

    and in the root or where you movie is located write function for the
    clickHandler, you can pass parameters to the method also

    in the below case "0" is the parameter
    asfunction:_root.clickHandler,0

    Anand

    [email]madhav110@hotmail.com[/email]

    tomeanand@hotmail.com Guest

  21. #20

    Default Dynamic Text

    Hi

    Is ther any way that when you place recordet information in a table so as to
    display dynamic reults. You can add an event to the results saying on mouse
    over stop,, and on mouse out start.

    When i look at the behaviors when trying to do this they are all greyed out.

    Cheers

    John

    pepps 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