Click to See Complete Forum and Search --> : Need help redirecting


Merlena
04-13-2005, 09:17 AM
I am trying to use the AnLake.class...I have to store it at one site and design my page at another. I need to tell it to look for the class at the other site but nothing I am doing is working.
<script src="jscript/http://www.geocities.com/jazzy_lady71/AnLake.class">
I used this in my <head> and I have tried using it in the body it's self
<applet code=script src="http://www.geocities.com/jazzy_lady71/AnLake.class" width="342" height="688"> Can anyone help me with this problem? :D

buntine
04-13-2005, 09:25 AM
Try:

<applet code="http://www.geocities.com/jazzy_lady71/AnLake.class" width="342" height="688"></applet>

The <script> element is only for client-side script -- you cannot use it to invoke a Java program. (as far as I know).

Regards.