Re: New to Java - quick question on embedding in browser
On Mar 29, 9:12 pm, "Noname" <noname @ x x x .x x x> wrote:
(Java versioning using applets)
..not within an APPLET element, so much as an
OBJECT element.
...
I am thinking we just need to get that combined
object/classid/codebase correct to get it to work,
...
Can anyone suggest a object/classid/codebase set?
I just ran test1.html through Sun's HTMLconverter,
and specified 1.6+ and 'IE only' (the gets longer
if you specify 'all browsers - all OS').
Deleting the part where it put the original applet
element in an HTML 'comment', it produced this..
__________________________________________
<html>
<head>
<title>Test 1 using OBJECT element</title>
</head>
<body>
<!--"CONVERTED_APPLET"-->
<!-- HTML CONVERTER -->
<object
classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase = "http://java.sun.com/update/1.6.0/jinstall-6-windows-
i586.cab#Version=6,0,0,105"
WIDTH = "290" HEIGHT = "290" NAME = "Rad Upload Plus" ALIGN =
"middle" VSPACE = "0" HSPACE = "0" >
<PARAM NAME = CODE VALUE = "com.radinks.dnd.DNDAppletPlus" >
<PARAM NAME = CODEBASE VALUE = "http://java.sun.com/update/1.5.0/
jinstall-1_5_0_04-windows-i586.cab" >
<PARAM NAME = ARCHIVE VALUE = "dndplus.jar" >
<PARAM NAME = NAME VALUE = "Rad Upload Plus" >
<PARAM NAME = MAYSCRIPT VALUE = "yes" >
<param name = "type" value = "application/x-java-
applet;version=1.6">
<param name = "scriptable" value = "false">
<PARAM NAME = "archive" VALUE="dndplus.jar">
<PARAM NAME = "code" VALUE="com.radinks.dnd.DNDAppletPlus">
<PARAM NAME = "url" VALUE = "http://www.seemethroughcollege.com/
cgi-bin/upload.cgi?session_id=XidX">
<PARAM NAME = "message" VALUE="http://www.seemethroughcollege.com/
applet_init.html">
<PARAM NAME = "name" VALUE="Rad Upload Plus">
<PARAM NAME = "encode_path" VALUE="yes">
<PARAM NAME = "external_redir" VALUE="http://
www.seemethroughcollege.com/success_redirect.php">
<PARAM NAME = "external_target" VALUE="_top">
<PARAM NAME = "translate_path" VALUE="yes">
<PARAM NAME = "full_path" VALUE="yes">
<PARAM NAME = "show_thumb" VALUE="yes">
<PARAM NAME = "browse" VALUE="yes">
<PARAM NAME = "browse_button" VALUE="yes">
</object>
<!--"END_CONVERTED_APPLET"-->
</body>
</html>
__________________________________________
The reason I was asking about the MAYSCRIPT
attribute and JS, is that if this applet
does *not* require JS, it will probably be
easier to launch it using 'web start'.
Andrew T.