Re: [tcljava-user] evalFile & package require: How to execute a tcl file that starts a tcl based ap
Brought to you by:
mdejong
From: Mo D. <mo...@mo...> - 2007-04-06 19:37:44
|
Richard Shaw wrote: > Hello, > > I am trying to run a tcl script that then runs a tcl script > application. This is normally done by calling main.tcl and the > wish84.exe in the Tcl Interpreter /bin directory via a desktop > shortcut. main.tcl then calls another file which calls several more... > > This is the same file that is called in the shortcut, which has no > problem finding packages. Do I have to modify the evalFile call? The whole > purpose of this exercise is to remove the need for a seperate Tcl > interpreter installation by using the one within Jacl. I can only conclude that you are trying to run your Tcl application that loads the starkit package inside Jacl. That is not going to work since Jacl does not include support for the starkit extension. You will need to use Tcl Blend to load native C extensions inside the JVM. Mo |