Returning specific parameters passed from FlashVars in an html doc

Hi,

Please bear with me as I am very new to flash and as3.

I am sending variables from my html page:


 
 <param name="FlashVars" value="nameCheck=boo&imageCheck=image01.jpg"> 
 

…in the parameters section of the flash object code.

I know that to extract the info I need to basically use:


 
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
 

…in my as3 code but I am wondering what would be the syntax to return a text field containing the sent variable ‘boo’ and fill an image area with the file name from the variable ‘imageCheck’?

Any help MUCH apprecaited.

Spencer