This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 12906 - Support for Multiple Applets
Summary: Support for Multiple Applets
Status: NEW
Alias: None
Product: obsolete
Classification: Unclassified
Component: applet (show other bugs)
Version: 3.x
Hardware: PC Windows ME/2000
: P3 blocker (vote)
Assignee: issues@obsolete
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-06-15 21:15 UTC by Paul Waldo
Modified: 2005-12-02 09:27 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Waldo 2001-06-15 21:15:32 UTC
I am working on a project that has multiple applets on a single HTML page.  The 
applets interact with each other on the page, so I need to be able to call 
appletviewer on an HTML page that is not the same name as either applet.  The 
following is an example of the HTML:

<HTML>
<APPLET
  CODEBASE = "."
  CODE     = "sliders.DoubleSliderDisplay.class"
  NAME     = "DoubleSliderDisplay"
  WIDTH    = 200
  HEIGHT   = 50
  HSPACE   = 10
  VSPACE   = 10
  ALIGN    = top
>
</APPLET>
<HR>
<APPLET
  CODEBASE = "."
  CODE     = "sliders.DoubleSlider.class"
  NAME     = "DoubleSlider"
  WIDTH    = 300
  HEIGHT   = 35
  HSPACE   = 0
  VSPACE   = 0
  ALIGN    = top
>
</APPLET>
</BODY>
</HTML>
Comment 1 _ rkubacki 2001-07-31 09:31:21 UTC
Probably this need to add possibility to execute and debug html pages
using either appletviewer or HTML browser. Another way is to add
property 'Embedding HTML Page' to your applet.

I hope we can do it for NB4.0
Comment 2 Marek Grummich 2002-07-19 16:44:50 UTC
Target milestone was changed from not determined to TBD