HTML

To use CCF in a HTML page just add the applet code:

<applet id="ccfWP" name="ccfWP" code="pintexx.framework.ccf.client.desktop.CCFWordProcessorApplet.class" width="100%" height="100%" archive="ccf.jar,ccf1.jar,ccf2.jar" mayscript>
<param name="java_arguments" value="-Dsun.java2d.noddraw=true" />";
<param name="name" value="Pintexx Cloud Component Framework" />";
<param name="gatewayurl" value="http://www.cloud-components.com/ccf/ccfgateway.aspx" />
<param name="cctype" value="wp1" />
</applet>

The methods of the component can now be accessed by:

function onBold() {
  var wp = document.getElementById("ccfWP");
  wp.bold();
}

This should work in all browsers if a Java VM is supported and available.
This interface can also be used in all other technogies that are not directly supported like JSP, JSF, PHP etc.