Hi!
I’m still a Java evangelist… I try to convince several French webmasters to include a bbcode markup to insert applets and webstart applications (a simple link is not enough, I have to indicate the mime type). I have only found this:
http://startrekguide.com/community/viewtopic.php?f=82&t=2732
However, I prefer using the markup. I have never deployed an applet with it. I have found this example:
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
width="150" height="80">
<param name="archive" value="JitterText.jar">
<param name="codebase" value="data">
<param name="code" value="JitterText">
<param name="BGCOLOR" value="000000">
<param name="TEXTCOLOR" value="FF0000">
<param name="TEXT" value="OJITesting!">
<param name="SPEED" value="250">
<param name="RANDOMCOLOR" value="1">
<!--[if gte IE 7]> <!-->
<object type="application/x-java-applet"
classid="java:JitterText.class"
archive="JitterText.jar"
codebase="data"
width="150" height="80">
<!-- Konqueror browser needs the following param -->
<param name="archive" value="JitterText.jar">
<param name="code" value="JitterText">
<!-- Safari browser needs the following param -->
<param name="JAVA_CODEBASE" value="data">
<param name="BGCOLOR" value="000000">
<param name="TEXTCOLOR" value="FF0000">
<param name="TEXT" value="OJITesting!">
<param name="SPEED" value="250">
<param name="RANDOMCOLOR" value="1">
alt : <a href="data/JitterText.jar">JitterText.jar</a>
</object>
<!--<![endif]-->
<!--[if lt IE 7]>
alt : <a href="data/JitterText.jar">JitterText.jar</a>
<![endif]-->
</object>
But does someone have a more simple example that works on most of the main browsers? I don’t know which parameters are really required and which ones are not in the example above.
Does someone already have a working example of bbcode for applets?
