Re: cfform Flash and value

2009-09-10 Thread Cutter (ColdFusion)
Phillip, To prepopulate the form elements of the Flash Form, you'd have to use the 'value' attribute of your various form tags: cfinput type=text name=FirstName value=#REQUEST.myQuery.FirstName# / You cannot use JavaScript to populate or validate a Flash Form. You can use ActionScript to

Re: cfform Flash and value

2009-09-10 Thread Phillip Vector
On Thu, Sep 10, 2009 at 6:57 AM, Cutter (ColdFusion) cold.fus...@cutterscrossing.com wrote: To prepopulate the form elements of the Flash Form, you'd have to use the 'value' attribute of your various form tags: cfinput type=text name=FirstName value=#REQUEST.myQuery.FirstName# / Umm.. How is

Re: cfform Flash and value

2009-09-10 Thread Cutter (ColdFusion)
Hmmm. Yeah, I missed that part of your email. Sorry about that. If the query has a record, then I would think your use case would work. Did you dump it prior to the form? Is the form in a cfoutput statement? I'd like to help, but honestly I never use cfform in anything other than rapid

Re: cfform Flash and value

2009-09-10 Thread Cutter (ColdFusion)
One other thing. Did you view source for the page? Are your values getting passed in to the call to create the Flash movie? Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer Co-Author of Learning Ext JS http://www.packtpub.com/learning-ext-js/book

Re: cfform Flash and value

2009-09-10 Thread Phillip Vector
On Thu, Sep 10, 2009 at 7:08 AM, Cutter (ColdFusion) cold.fus...@cutterscrossing.com wrote: Hmmm. Yeah, I missed that part of your email. Sorry about that. No worries. :) I appreciate the help. If the query has a record, then I would think your use case would work. That's what I would think

Re: cfform Flash and value

2009-09-10 Thread Phillip Vector
I'm not sure.. It just shows the flash player being loaded in the source. On Thu, Sep 10, 2009 at 7:10 AM, Cutter (ColdFusion) cold.fus...@cutterscrossing.com wrote: One other thing. Did you view source for the page? Are your values getting passed in to the call to create the Flash movie?

Re: cfform Flash and value

2009-09-10 Thread Cutter (ColdFusion)
If you don't see something like name/value pairs, for the fields and your values, in the source as flashvars in the object creation call, then I can't see how it would ever load your data. UPDATE: I just checked cfquickdocs, and discovered the following information regarding the 'value'

Re: cfform Flash and value

2009-09-10 Thread Phillip Vector
I've noticed that as well. The thing is, I've seen flash form do this. So how do they do it? On Thu, Sep 10, 2009 at 7:54 AM, Cutter (ColdFusion) cold.fus...@cutterscrossing.com wrote: UPDATE: I just checked cfquickdocs, and discovered the following information regarding the 'value'