Papervision component 1.5 SCENE_LOAD_PROGRESS

hello,

My first post:) and I’m horrible with AS3

I’m working with a component and The creator of the component created some events ( SCENE_COMPLETE, SCENE_LOAD_PROGRESS, SCENE_LOAD_ERROR ) to be able to track loading progress, but I can’t seem to figure out how to make them work. would anyone be able to enlighten me? what I’ve written is below if it helps. thanks so much.



[component_instancename].collada.addEventListener(PV3DColladaScene.SCENE_COMPLETE, handleInit);
[component_instancename].collada.addEventListener(PV3DColladaScene.SCENE_LOAD_PROGRESS, handleProgress);
[component_instancename].collada.addEventListener(PV3DColladaScene.SCENE_LOAD_ERROR, handleLoadError);
  function handleProgress()
{
    this.ppvloadtext.text = “Loading elements”;
  }
function handleInit():void
{

      this.ppvloadtext.text = “elements loaded”;
}
function handleLoadError()
{
    this.ppvloadtext.text = “error Loading”;
}