HELP me see dybamic variables

My cfm script pulls the contents of database fine. (a cfoutput reveals variables) In flash however i cannot see my dynamic variables. I don’t know why?
I am new so its probably simple.

What am I doing wrong in syntax?

// In the flash mainframe I have.
loadVariables(“LoadVars.cfm”,0,“GET”);

// Ive also tried this:
myLoadVars = new LoadVars();
myLoadVars.load(“LoadVars.cfm”);

// In the LoadVars.cfm I have.
<CFQUERY NAME=“ElfVars” DATASOURCE=“ElfQuest”>
SELECT * FROM Stats
</CFQUERY>

I have a dynamic text field named “Name”. Why doesn’t it display the Name in the database.

I can see my variable hardcoding cfoutput in the page. SQL is working. Why can’t I see them in Flash?

Im new to flash. Thanks so much, been a problem 4 me.