Size limitation in Flash forms?

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

  1. #1

    Default Size limitation in Flash forms?

    Soon as I have over 599 lines of code the form will not display and an error
    occurs. Does anyone know a work around to this size limitation? I'm assuming
    that it is a file size limitation and not specifically the amount of lines of
    code. I'm trying to get one more page in the form. Any help would be
    appreciated.

    bigdaddyyoda Guest

  2. Similar Questions and Discussions

    1. PRINT SIZE LIMITATION
      I can't print any file which is bigger than 490mm wide. The error I get says the limit is 490mm. Has anyone come across this before. Adobe support...
    2. ASPupload size limitation
      i have a script using ASPupload, which is currently installed on my host's servers. When i go to upload a file, i cant upload and big file. I was...
    3. Verity collection size limitation
      In Verity's document about how to incorporate searching in ColdFusion (http://www.verity.com/webex/2004/09/ult_cf_qa_092404.pdf) they mention that...
    4. Flash error - form size limitation
      I am getting the following error when trying to load a flash form I have: Error Branch between 34578 and 67383 around line 0 exceeds 32K span. If...
    5. File size limitation for QT movie
      I am having trouble with an QT movie playing in Director. The file sizes are 39MB to 541MB. Does anyone know of a problem with this? I have already...
  3. #2

    Default Re: Size limitation in Flash forms?

    There is a 64k file limit that the flash compiler can understand.
    Unfortunately this doesn't map directly to CF, so I can't tell you how much
    you can write in CF. This 64k is the file limit size of the generated .as
    file (we convert the CF to mxml and then mxml to as). Every attribute and
    style attribute you use can affect size. So if you are close, try removing
    some of the style attribute and you may be able to get it down under 64k. If
    not you'll need to break up the form, if it's possible.

    hth,
    ---nimer



    "bigdaddyyoda" <webforumsuser@macromedia.com> wrote in message
    news:d094ne$p87$1@forums.macromedia.com...
    > Soon as I have over 599 lines of code the form will not display and an
    > error
    > occurs. Does anyone know a work around to this size limitation? I'm
    > assuming
    > that it is a file size limitation and not specifically the amount of lines
    > of
    > code. I'm trying to get one more page in the form. Any help would be
    > appreciated.
    >

    Mike Nimer 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