Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] Re: RE: Re: RE: AspectJ with Applet

It works here in IE or appletviewer.

 

The following is the output by appliletviewer in Dos Console Window

mouse action event: java.awt.event.MouseEvent[MOUSE_MOVED,(80,18),button=0,click

Count=0] on panel0

 

I use aspectj1.5.

 

Please try again by change the following line:

<PARAM NAME="ARCHIVE" VALUE="aspectj1.2/lib/aspectjrt.jar">


From: aspectj-users-bounces@xxxxxxxxxxx [mailto:aspectj-users-bounces@xxxxxxxxxxx] On Behalf Of Joanne (sent by Nabble.com)
Sent: Wednesday, September 28, 2005 4:21 PM
To: aspectj-users@xxxxxxxxxxx
Subject: [aspectj-users] Re: RE: Re: RE: AspectJ with Applet

 

Actually I put System.out.println in my Applet class and I do see the standard output being printed on my shell window using appletviewer, so I don't think it's output problem...  But the System.out.println defined in my aspect doesn't have any effect on the applet.......... deeply puzzled.....
I wonder if it's html problem, this is my html code:

<HTML>
<HEAD>
<TITLE>The Hello World Applet</TITLE>
</HEAD>
<BODY>
<APPLET
   CODE="HelloWorldApplet"
   WIDTH=150
   HEIGHT=25>
      <PARAM NAME="ARCHIVE" VALUE="/aspectj1.2/lib/aspectjrt.jar">
      <PARAM NAME="type" VALUE="application/x-java-applet;version=1.5">
      <PARAM NAME="scriptable" VALUE="false">
</APPLET>
</BODY>
</HTML>

Thanks so much in advance!!


Sent from the AspectJ - users forum at Nabble.com.


Back to the top