function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Deepakn12Deepakn12 

Using Applet in Scontrol

Hi,
Actually i want use applet in my scontrol.
Can anyone tell me how can i do that. I mean where should i put the class files and what should be the codebase value
for applet tag in HTML.
thx in advance.
Deepak.
sfdcfoxsfdcfox
Upload the file on the S-Control itself as a JAR file (edit the S-Control and choose the Browse... option near the bottom). You can merge the archive and the codebase parameters using the merge fields below:
 
{!Scontrol.JavaArchive}
{!Scontrol.JavaCodebase}
 
Example:
 
Code:
Code:
<applet codebase="{!SControl.JavaCodebase}" code="MyApp"
 archive="{!Scontrol.JavaArchive}" width=400 height=75>

 
Deepakn12Deepakn12
Thx a lot for ur valuable help.
Deepak.