Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Dreamweaver From Applet or JSP?

Status
Not open for further replies.

msharoff

Technical User
Jul 13, 2002
3
US
Does anyone know if there is a way to run Dreamweaver from within a java applet?

We have a contact management system (Gauss) and it has been customized and is running a WYSIWYG editor (Edit-On-Pro) from within a form. It is an applet that is called by a .jsp file. I want to make Dreamweaver the edtior that gets called.

Thanks,

Mitch
 
I am only guessing here, but if the default editor for whatever file extension is DW then that will be called. The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
Here is the current applet from the .jsp file. This is where the default web editor is called:

<applet name=&quot;HTMLEditor&quot; code=&quot;EditorApplet&quot; archive=&quot;edit-on-pro.jar&quot; height=&quot;250&quot; width=&quot;550&quot; id=&quot;HTMLEditor&quot;>
<param name=&quot;CODEBASE&quot; value=&quot; <% String cabbase = /*VIPURL*/&quot; %>
<param name=&quot;CABBASE&quot; value=&quot;edit-on-pro-signed.cab&quot;>
<param name=&quot;LOCALE&quot; value=&quot;en_US&quot;>
<param name=&quot;TOOLBARURL&quot; value=&quot;toolbar-sample.xml&quot;>
<param name=&quot;BODYONLY&quot; value=&quot;TRUE&quot;>
<param name=&quot;TEXTMODE&quot; value=&quot;FALSE&quot;>
<param name=&quot;SOURCEVIEW&quot; value=&quot;TRUE&quot;>
<param name=&quot;DEFAULTBACKGROUNDCOLOR&quot; value=&quot;white&quot;>
</applet>

Any thoughts?

Thanks again,

Mitch
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top