I'm trying to integrate Ray into ilance and I'm followingRay integration manual(http://www.boonex.com/trac/ray/wiki/RayIntegration)
I would like to know how can I add video recorder in my page? I tried the following code and when I go to the page I can see "LOADING" flash. How can I fix this? Please help.
<?php
require_once("[path_to_ray]/modules/global/inc/ header.inc.php");
require_once("[path_to_ray]/modules/global/inc/content.inc.php");
//some code
$aParamValues = array();
$aParamValues['id'] = "1";//defining user ID
$aParamValues['password'] = "12345";//defining user password
echo getApplicationContent("video", "recorder", $aParamValues, true);
//some more code
?>