I think, I´ve got the same issue with some 3ds- files. Everything seems to be fine in IE and Chrome but in Firefox the application crashes.
Firebug Flash output says:
at ominds.mouseinspect::MouseInspector/onTmd3dModuleLoaded()
at global/flash.utils::getDefinitionByName()
ReferenceError: Error #1065: Variable Transform3DController ist nicht definiert. (Var Transform3DController not defined)
Error #2044: IOErrorEvent unverarbeitet. text=Error #2124: Die geladene Datei weist einen unbekannten Typ auf.
(IOErrorEvent not catched. Loaded File has got unknown Filetype )
Warnung: Kein bekannter Player-Download-Typ,
listeners complete
initobjects complete
initengine complete
Debug Console of Flash only prompts:
Error #2044: IOErrorEvent unverarbeitet. text=Error #2124: Die geladene Datei weist einen unbekannten Typ auf.
(Unknown filetype)
Best regards,
Constantin
Edit: In my case the problem was in the model. It referres to a texture at mydomain/3ds.textures\image_01.png
So I guess the backslash makes it crash. Maybe IE and Chrome are able to handle them and firefox cant.
Does anyone know where exactly I can catch the dependency-urls in the process of loading a model?
Edit 2:
adding
_req.url = _req.url.replace(/\\/g, "/");
in SingleFileLoader.as Line 98, 150 did it for me.
Best regards,
Constantin