Whatever message this page gives is out now! Go check it out!
<cfclient>
<cfset myvar = "Hello World">
<cfoutput>#myvar#</cfoutput>
</cfclient><cfclient>
<cfscript>
function launchCamera()
{
// Capture the image from the device comera
var opt = cfclient.camera.getOptions();
var resp = cfclient.camera.getPicture(opt);
var fileContent = cfclient.file.readFileURIAsBase64(resp);
// Process the image
return;
}
</cfscript>
</cfclient>