Dani,

You should not be using this form in an applet.  Unless you've bypassed
applet security an applet can't load files.  You should use a URL
instead:
  URL url = new URL("models/testfile.3ds");
  Scene s = loader.load(url);

- John Wright
Starfire Research

Daniel Moscoso wrote:
>
> Hi all !!
>
> I'm trying to load 3ds models from applets using the Starfire 3ds loader. They are 
>loaded fine from Netscape, but I have a problem with IE. If I try to load them like 
>this:
>           Loader3ds loader = new Loader3ds();
>           Scene s = loader.load("models/testfile.3ds");
>
> It woks in Netscape, but gives an IOException (file not found) in IE.
> Is there any way to solve it ?
>
> Thanks in advanced !!
>
> Dani
>
> --
>
> Diese E-Mail enth�lt vertrauliche und/oder rechtlich gesch�tzte Informationen. Wenn 
>Sie nicht der richtige Adressat sind oder diese E-Mail irrt�mlich erhalten haben, 
>informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das 
>unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
>
> This e-mail may contain confidential and/or privileged information. If you are not 
>the intended recipient (or have received this e-mail in error) please notify the 
>sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
>distribution of the material in this e-mail is strictly forbidden.
>
> ===========================================================================
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff JAVA3D-INTEREST".  For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to