Home > Archive > Java Help > May 2006 > Applet not initialized in Mac
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Applet not initialized in Mac
|
|
| abrol.akash@gmail.com 2006-05-26, 4:11 am |
| Hi,
I have an applet that works fine in Safari but gives an error saying
"applet not initialized" when i try to run it on IE 5.2. I am working
on a Mac machine.. My applet runs fine on all browsers in Windows.
Can anyone help me with this.
Here is my applet tag:
<APPLET code="com/interrait/requesttracker/chat/client/ChatClient"
WIDTH="605" HEIGHT="275" >
<PARAM NAME="username" VALUE="man1">
<PARAM NAME="level" VALUE="admin">
<PARAM NAME="groupID" VALUE="1">
</APPLET>
Note: class 'ChatClient' is in package:
'com.interrait.requesttracker.chat.client'. If I try to a simple applet
which is not in any package, it runs fine even on IE.
Plz help.
Thanks,
Akash.
| |
| Oliver Wong 2006-05-26, 7:07 pm |
|
<abrol.akash@gmail.com> wrote in message
news:1148623457.990185.140370@y43g2000cwc.googlegroups.com...
> Hi,
>
> I have an applet that works fine in Safari but gives an error saying
> "applet not initialized" when i try to run it on IE 5.2. I am working
> on a Mac machine.. My applet runs fine on all browsers in Windows.
>
> Can anyone help me with this.
>
> Here is my applet tag:
>
> <APPLET code="com/interrait/requesttracker/chat/client/ChatClient"
> WIDTH="605" HEIGHT="275" >
>
> <PARAM NAME="username" VALUE="man1">
> <PARAM NAME="level" VALUE="admin">
> <PARAM NAME="groupID" VALUE="1">
>
> </APPLET>
>
> Note: class 'ChatClient' is in package:
> 'com.interrait.requesttracker.chat.client'. If I try to a simple applet
> which is not in any package, it runs fine even on IE.
Looks like you're missing the ".class" extension. Try
"com/interrait/requesttracker/chat/client/ChatClient.class"
- Oliver
| |
| Steve W. Jackson 2006-05-30, 7:11 pm |
| In article <pJEdg.35382$Qq.20084@clgrps12>,
"Oliver Wong" <owong@castortech.com> wrote:
> <abrol.akash@gmail.com> wrote in message
> news:1148623457.990185.140370@y43g2000cwc.googlegroups.com...
>
> Looks like you're missing the ".class" extension. Try
> "com/interrait/requesttracker/chat/client/ChatClient.class"
>
> - Oliver
I can tell you that MSIE for the Mac is dead. MS wised up and decided
not to compete with Apple's Safari on its own OS. I'm pretty sure that
they don't even offer download links for it any longer.
--
Steve W. Jackson
Montgomery, Alabama
|
|
|
|
|