I'm afraid I don't know the answer to your second question, i'm not sure if this is any help to you but there is a utility class called MainFrame, if you supply the name of the class which starts your applet and the desired height and width of the frame to the MainFrame constructor then use the instantiation of the MainFrame class as the main of your application, you can run the applet as an application.

i.e.
import com.sun.j3d.utils.applet.MainFrame;

public static void main (String[] args){
    MainFrame frame = new MainFrame(new myApplet(), 400, 400);
    }

where myApplet is the name of your applet.

I don't know if this is what you meant but I hope it's of some assistance.

J

Tan Dongquan wrote:

Hi, everyone. I don't know if here is right place to ask these questions.
Anyway, please help me and thanks a lot in advance.
Question 1:
I want to transfer some applets to standalone applications. Is there have
any general way to do?
Question 2:
After I install IE5 (with Platium World Viewer), I can not view some VRML
files, which worked fine on my IE4+Cosmo before. Should I need to re-install
Cosmo Viewer again? And How to view Java3D Applet in IE5? I always get
"xxxxx class not initialized"

Thanks a lot.

===========================================================================
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".

-- 
x
 


Reply via email to