Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
bribas1 #1
Flash Form - "Movie Not Loaded"
I have the same code loading a flash form in IE on a CF 7 local machine. But,
when I take that same code and run it in CF 7 on my ISP the movie will not
load. I have also tried Firefox but it will not load there either.
Here is the code, straight out of the CF Documentation:
<cfif IsDefined("Form.fieldnames")>
<cfdump var="#form#" label="form scope">
<br><br>
</cfif>
<cfscript>
q1 = queryNew("id,firstname,lastname");
queryAddRow(q1);
querySetCell(q1, "id", "1");
querySetCell(q1, "firstname", "Rob");
querySetCell(q1, "lastname", "Smith");
queryAddRow(q1);
querySetCell(q1, "id", "2");
querySetCell(q1, "firstname", "John");
querySetCell(q1, "lastname", "Doe");
queryAddRow(q1);
querySetCell(q1, "id", "3");
querySetCell(q1, "firstname", "Jane");
querySetCell(q1, "lastname", "Doe");
queryAddRow(q1);
querySetCell(q1, "id", "4");
querySetCell(q1, "firstname", "Erik");
querySetCell(q1, "lastname", "Pramenter");
</cfscript>
<cfform name="form1" format="flash" height="220" width="450">
<cfselect label="select a teacher" name="sel1" query="q1" value="id"
display="firstname" width="100" />
<cfformgroup type="repeater" query="q1">
<cfformgroup type="horizontal" label="name">
<cfinput type="Text" name="fname" bind="{q1.currentItem.firstname}">
<cfinput type="Text" name="lname" bind="{q1.currentItem.lastname}">
</cfformgroup>
</cfformgroup>
<cfinput type="submit" name="submitBtn" value="Send Data" width="100">
</cfform>
When I right click on the movie area it states "Movie not loaded..."
Thanks everyone!
bribas1 Guest
-
Flash movie freezes after "scene" in IEv.6
Hello, I made a flash movie with scenes linking photos from one another with transitions. For some odd reason it works fine in Firefox, and the... -
Flash "movie" in CFMX7
Please - Would like information onsubit to bring up a flash or other animation during a long query that would go away once the data loads in a... -
Cannot get "Insert Flash Movie" from Dreamweaver tostream
I have FMS2 installed. I have Dreamweaver 8. My path to the Applications folder in FMS is the default. My webserver has a folder that I am... -
"Freedom Underground - Pentagon, Evidence a Boeing 757 did not hit on 911 (flash movie, flovie).swf" (1/6) 3.1 MBytes yEnc
On Sat, 6 Nov 2004 10:58:01 GMT, pleasegoto@infowars.com wrote more amazing garbage from the conspiracy kooks -
#25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug...



Reply With Quote

