Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Version of Adobe Flash by CFFORM in CF 8

0 views
Skip to first unread message

SherlockTicklesquire

unread,
Nov 3, 2008, 2:35:31 PM11/3/08
to
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.

BKBK

unread,
Nov 13, 2008, 1:40:43 AM11/13/08
to
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('testFlashForm.swf'));
decoder = createObject("java", "macromedia.swf.TagDecoder").init(fis);
header = decoder.decodeHeader();
fis.close();
</cfscript>
<cfdump var="#header#">

SherlockTicklesquire

unread,
Nov 13, 2008, 9:27:32 AM11/13/08
to
Thank you! Will try this.
0 new messages