On 7/2/05, Johnny Le <[EMAIL PROTECTED]> wrote: > I just moved a site to production. Everything shows up fine except the flash > form. It doesn't show up at all. When I view the source code, everything is > there.
I had a similar problem. My flash form was showing up fine when I viewed it in Firefox but did not show up at all in IE. The flash form was part of an application using the Mach-II framework, so, it was common to have a general layout template in which to include the body of the page. My layout template was like this (simplified): <table> <tr><td>My header here</td></tr> <tr><td>#content#</td></tr> </table> The variable "content" contained my flash form. The above did not work in IE. So, I moved the "content" from outside the <table> tag and put it in a <div> tag like this: <table> <tr><td>My header here</td></tr> </table> <div>#content#</div> And, magically, the flash form appeared in both browsers. This was my experience with troubleshooting flash forms. I hope that will help you troubleshoot yours. -- Eddie. http://awads.net/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211064 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

