URGENT!!! Contents of dynamic text box does not show

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

  1. #1

    Default URGENT!!! Contents of dynamic text box does not show

    I have a dynamic text box that gets its content from an external text file. I
    have set the dynamic text box to render its content as HTML. Anyway, everything
    works fine when i run it from within flash, or when I run it's output swf file.
    The problem occurs when I load this swf file into another movieclip. Everything
    else shows except for the content of the dynamic text box.. please please
    please.. I really need help on this one ASAP.. Thanks in advance!!

    cash118 Guest

  2. Similar Questions and Discussions

    1. only show part of a dynamic text field
      ok i have this description field put in dynamically on my site but i only wnat the first 120 chars to show and thne ill put a link saying click here...
    2. setting the contents of a dynamic text box
      Hi I am new to this so please bare with me ,, I am trying to set the contents of a textbox to the selected value of a listbox the contents of the...
    3. Can This be done? Dynamic jump menus listing folder contents!
      Hello all, We have: MS Advanced server2000 ASP MS SQL latest stable: PHP Active Perl
    4. until browser refresh dynamic text from external txtfile dont show up
      I was having the same trouble for a while. I beleive the problem is that you are trying to load the variables and load them at the same time. The...
    5. Preloader dynamic text don't show
      What could be the reasons that make the dynamic text (bytesLoaded/bytesTotal/etc...) in the preloader disappear when viewed form the web? But appear...
  3. #2

    Default Re: URGENT!!! Contents of dynamic text box does not show

    It may be a path problem. When you reference the external txt file is it in the
    right place for your SWF to grab it?

    Or maybe this URL helps:
    [url]http://www.peachpit.com/articles/article.asp?p=174349&seqNum=7&rl=1[/url]

    chaos58 Guest

  4. #3

    Default Re: URGENT!!! Contents of dynamic text box does not show

    Yes, the problem is path related. When you load a movie1 into another movie2,
    the path contained in movie1 will now need to be relative to movie2 not movie1.
    So you need to make the path be relative to the final movie container.

    Here's what I do in my project. I use classes to store my code outside of the
    fla's. It adds a bit more permanance to relative paths. What I do is I have a
    directory called ProjectX. At the root level of ProjectX I have a directory
    called SWFS where all the fla files go. Then I have another directory in the
    root level of ProjectX called DataFiles. It is in this folder that you would
    put the datafile needed by your text field. All of my fla's import my classes
    when needed, so my custom classes specific to this project can contain the
    relative paths needed.

    I hope this helps. The simplest thing to do is change the path to be relative
    to the outermost movieclip.

    Matthew The Programmer 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