Search:

Type: Posts; User: Norm

Search: Search took 0.10 seconds.

  1. Re: Applet isn't showing up. Perhaps it's a browser fault.

    Try it and see what happens.
  2. Re: Applet isn't showing up. Perhaps it's a browser fault.

    Time for a redesign of the project.
  3. Re: Applet isn't showing up. Perhaps it's a browser fault.

    Go read up on how applets work and what their relationship with the browser is. The browser controls the GUI for the applet.
  4. Re: Applet isn't showing up. Perhaps it's a browser fault.

    You will have to write all the code for that. The browser takes care of the applet referenced in the html page by the <applet tag. If you want something more to happen with things the browser...
  5. Re: Applet isn't showing up. Perhaps it's a browser fault.

    You can have one class create an instance of another class and call its its methods using that instance.
    It can be done inside of a method like the action listener of a button.

    What do you expect...
  6. Re: Applet isn't showing up. Perhaps it's a browser fault.

    The methods I posted will get a reference to other Applets being displayed by the browser in the same html page. That reference can be used to call methods in the other applet.
  7. Re: Applet isn't showing up. Perhaps it's a browser fault.

    Look at the Applet class. It has a method to get the AppletContext that can be used to call the getApplets() method.
  8. Re: Applet isn't showing up. Perhaps it's a browser fault.

    I was talking about a java class and method. With 1500+ posts I assume that you know what they are and can read their API doc and do a search for examples.

    Try writing two simple applets that use...
  9. Re: Applet isn't showing up. Perhaps it's a browser fault.

    If the applets are being shown in the same Html page, the AppletContext's getApplets() method will return a reference to the other applets. Those references can be used to call another applet.
  10. Re: Applet isn't showing up. Perhaps it's a browser fault.

    Try making a simple test case:
    have only one <APPLET tag,
    put the html and jar file in same folder (no codebase)
Results 1 to 10 of 10