Version of Adobe Flash by CFFORM in CF 8

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

  1. #1

    Default Version of Adobe Flash by CFFORM in CF 8

    What's the version of the .swf produced by the CFFORM tag in CF 8,0,1,195765? Is there any way I can determine this (e.g., via the \ColdFusion8 installation)? Thanks.
    SherlockTicklesquire Guest

  2. Similar Questions and Discussions

    1. Adobe Shockwave Player version 11.0.3.472
      Adobe Shockwave Player version 11.0.3.472 Adobe Shockwave Player version 11.0.3.472 released January 27, 2009 Windows | English | 4.38 MB...
    2. Get the Adobe Acrobat version
      Hello, For my next plugin I need to support Acrobat 8 and 9. The plugin will be installed in the correct installation path (in Adobe 8 or 9)...
    3. Steps to insert a clickTag in a Flash Banner with FlashMX 6 & Adobe CS3 Version
      Hi Folks I am very new to this forum + having a basic level of understanding with Flash Software (like Flash MX & Adobe CS3). By profession i am...
    4. cfform type=flash flash version compatibility
      I am using cfform type="flash" - What flash version must the client have for this to work? Is there any url where I can find this compatibility docs?
    5. Error Reading PDF Version 1.2(Acrobat 3.X) in Adobe 6
      We receive the following error message in Adobe 6 Professional when loading a file from PDF Version 1.2 (Acrobat 3.x). Error - "There was a problem...
  3. #2

    Default Re: Version of Adobe Flash by CFFORM in CF 8

    I'll assume you know how to open the cfform and save it as testFlashForm.swf.
    Then the following code will tell you the flash version among others.

    <cfscript>
    fis = createObject("java",
    "java.io.FileInputStream").init(expandpath('testFl ashForm.swf'));
    decoder = createObject("java", "macromedia.swf.TagDecoder").init(fis);
    header = decoder.decodeHeader();
    fis.close();
    </cfscript>
    <cfdump var="#header#">

    BKBK Guest

  4. #3

    Default Re: Version of Adobe Flash by CFFORM in CF 8

    Thank you! Will try this.
    SherlockTicklesquire 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