GEOFFREY THOMPSON | >>>I am trying to start coding some custom java elements, and I would like to use a text editor to code instead of call studio.
Good idea. I use Apache Ant to help with the compilation and always code by hand. Tip: get a decent editor like GVIM or Notepad++.
Here’s a bit of the Ant build file
<property name="audium" value="C:\Cisco\CallStudio\eclipse\plugins\com.audiumcorp.studio.library.framework_8.5.1" /> <path id="classpath"> <fileset dir="${audium}" includes="framework.jar" /> </path>
So you can see how it works. Your java classpath has to include that JAR.
Regards, Geoff |
| Please sign in to flag this as inappropriate. |