Errors loading Captivate 6 swf files into Flash swf
Need some help here since it seems there is no answer out there. Any swf generated from Captivate 6 that I try to load from a Flash swf gives me this error upon publish:
"TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Function/<anonymous>()"
Does anyone out there have a solution for this? My loader code is pretty simple
function launchExam(e:Event):void {
try {
var ld:Loader = new Loader();
ld.load(new URLRequest("captivat6file.swf"));
addChild(ld);
beginTestBtn.visible=false;
} catch(e:Error) {
}
}
I don't know what else to do. I tried exporting the captivate to Flash CS6. but half of the functionality is stripped out. Is there anything that can be done to bypass the errors or something?