CF/Flash Question

2004-09-15 Thread Andrew Dixon
Hi Everyone. I'm about to create some flash navigation within a website that I'll need to have pass out the CFID and CFTOKEN session variables, does anyone know of an easy way to get these variables from within Flash or would i have to have them passed to the flash movie to start with? Andrew.

Re: CF/Flash Question

2004-09-15 Thread dave
just have a cfm page set them as variables then deliver them to flash by any of the available means depends on how ur going about it one of the easiest ways is to set the variables as normal in flash the output them with an $ infront of each, the do a loadvar in your flash movie --

Re: CF/Flash Question

2004-09-15 Thread Andrew Dixon
: CF/Flash Question To: CF-Talk [EMAIL PROTECTED] just have a cfm page set them as variables then deliver them to flash by any of the available means depends on how ur going about it one of the easiest ways is to set the variables as normal in flash the output them with an $ infront of each

Re: CF/Flash Question

2004-09-15 Thread dave
try this cfm page ex: cfmvariables.cfm - !--- set uuid and cftoken variables --- //set these how ever ur getting them (cookie, session, whatever) cfset uuid = #youruuidstring# cfset cftoken = #cftoken# !--- set output to flash variables --- cfoutput

Re: CF/Flash Question

2004-09-15 Thread Andrew Dixon
I will give it a try and let you know. Thanks. Andrew. On Wed, 15 Sep 2004 06:57:05 -0400, dave [EMAIL PROTECTED] wrote: try this cfm page ex: cfmvariables.cfm - !--- set uuid and cftoken variables --- //set these how ever ur getting them (cookie,

Re: CF / Flash Question

2003-01-09 Thread Jason Miller
] * -Original Message- From: Jason Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 11:47 PM To: CF-Talk Subject: Re: CF / Flash Question Well I bet it can be done using the GetURL

RE: CF / Flash Question

2003-01-09 Thread Samuel R. Neff
At 10:03 PM 1/8/2003, you wrote: here is the url to the flash wish form: http://www.macromedia.com/support/email/wishform/?6213=9 as far as the table, you could achieve something similar using the DataGrid component on DRK 1. It would involve using some custom cell renderers (there is an example

CF / Flash Question

2003-01-08 Thread Joshua Miller
Anyone know if something like this is possible with FlashMX ? function respond(){ goToAndPlay(My Scene,1); stop(); } function upload(){ dtsVars = new LoadVars(); dtsVars.myfile=c:\test.txt; dtsVars.onLoad = respond; dtsVars.contentType = multipart/form-data;

RE: CF / Flash Question

2003-01-08 Thread Matt Liotta
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 5:07 PM To: CF-Talk Subject: CF / Flash Question Anyone know if something like this is possible with FlashMX ? function respond(){ goToAndPlay(My Scene,1); stop(); } function upload(){ dtsVars = new LoadVars

Re: CF / Flash Question

2003-01-08 Thread Jason Miller
Simulate input field? Why don't you just use the dynamic text field - check the borders. set it's property to dtsVars.myfile - so it pops in c:\test.txt so it looks like you are actually submitting the form perhaps I am missing what you intend. Also on teh SendAndLoad - you don't need both

RE: CF / Flash Question

2003-01-08 Thread Joshua Miller
] * -Original Message- From: Jason Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 8:25 PM To: CF-Talk Subject: Re: CF / Flash Question Simulate input field? Why don't you just use the dynamic text field - check the borders. set it's property to dtsVars.myfile - so it pops in c

Re: CF / Flash Question

2003-01-08 Thread Christian Cantrell
] *** * * -Original Message- From: Jason Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 8:25 PM To: CF-Talk Subject: Re: CF / Flash Question Simulate input field? Why don't you just use

Re: CF / Flash Question

2003-01-08 Thread Jason Miller
PROTECTED] *** * * -Original Message- From: Jason Miller [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Wednesday, January 08, 2003 8:25 PM To: CF-Talk Subject: Re: CF / Flash Question

RE: CF / Flash Question

2003-01-08 Thread Joshua Miller
us by return e-mail to [EMAIL PROTECTED] * -Original Message- From: Jason Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 11:47 PM To: CF-Talk Subject: Re: CF / Flash Question Well I

RE: CF / Flash Question

2003-01-08 Thread Todd Rafferty
One other thing that would be cool is a table object for outputting data into table format without using HTML inside of Flash. You can simulate data fields with movie clips, but it's unnecessarily complicated. Isn't that what the data grid is for? ~Todd -- Todd Rafferty ([EMAIL

RE: CF / Flash Question

2003-01-08 Thread Mike Chambers
is the url to the DRK: http://www.macromedia.com/software/drk/ mike chambers [EMAIL PROTECTED] -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:31 PM To: CF-Talk Subject: RE: CF / Flash Question Thanks Jason, I'll check it out

RE: CF / Flash Question

2003-01-08 Thread Joshua Miller
] * -Original Message- From: Todd Rafferty [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:47 PM To: CF-Talk Subject: RE: CF / Flash Question One other thing that would be cool is a table object for outputting data into table format without