> Yes, perhaps a client-side plugin of sorts would be the > answer - an ActiveX control, something in the JVM ... > > Didn't say it would be easy, just a request. > > I read an article someone sent a link to yesterday on the > DepressedPress site about passing info back to CF using > javascript and <img> tags ... perhaps something along these > lines could be accomplished ... something written in JavaScript > that would call back to the server as other JS functions are > called and would reprocess variables? I don't know - again, > just a suggestion. You can do this now, using JavaScript to call pages on the server as needed. Typically, this requires that you use frames, and write JavaScript functions to submit forms or change location properties. We've been doing this in applications since Netscape 2! None of this has anything to do with CF, really. CF simply generates text in response to HTTP requests. It can't have any communication with the client other than through HTTP, which is very limited and simple. The only way CF can get data from JavaScript is the same way it gets any other data - as a result of an HTTP request from the browser. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

