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>
&uuid=#uuid#&cftoken=#cftoken#&
</cfoutput>
---------------------------------------------------

in flash actionscript
---------------------------------------------------
// load cfm page variables
var my_cfmVars:LoadVars = new LoadVars();
my_cfmVars. {
  if (success) {
    trace(this.toString());
  } else {
    trace("Error loading/parsing LoadVars.");
  }
};
my_cfmVars.load("http://www.yoursite.com/cfmvariables.cfm");
-----------------------------------------------------

at this point the variables will be in flash
4:30 am does that make sense?

dave

---------- Original Message ----------------------------------
From: Andrew Dixon <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Wed, 15 Sep 2004 11:25:07 +0100

>Hi Dave.
>
>Thanks for the info, but can you give me an example of how to pass the
>variables in the Flash parameters and the actionscript to pick them
>up. Bit new to Flash.
>
>Thanks.
>
>Andrew.
>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to