Questions tagged [tcldevkit]

8 questions
3
votes
1 answer

Using TclApp to wrap program, issue with bitmap in Tcl/Tk

I am using TclApp to wrap my program and all of its files in a stand-alone executable - and it's working fine for 99% of the files. However, it doesn't seem to be wrapping or recognizing my .ico file... I am writing a program in Tcl/Tk and I am…
Vee
  • 729
  • 10
  • 27
2
votes
0 answers

Installing a Tcl application as a Windows Service error

I'm trying to install a Tcl program as a service on my Windows machine using the TclDevKit's TclServiceManager. I'm following the guide here step by step and yet I am experiencing a lot of issues. If I try to use my raw .tcl file to create the…
Vee
  • 729
  • 10
  • 27
1
vote
1 answer

Tcl Dev Kit: can't find package starkit

I am not able to wrap the most simple TCL application using TclDevKit5.2. I on 64 bit CentOS, and here wat uname -a returns: Linux hp1 2.6.18-194.11.1.el5 #1 SMP Tue Aug 10 19:05:06 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux When…
Vahagn
  • 4,670
  • 9
  • 43
  • 72
0
votes
1 answer

How to build a custom TclDevKit prefix file?

I want to use a custom TCL interpreter as the prefix file of TclDevKit's tclapp. I have a TCL interpreter built from the following file: // file main.cpp #include int Tcl_AppInit( Tcl_Interp* interp ) { if (…
Vahagn
  • 4,670
  • 9
  • 43
  • 72
0
votes
2 answers

TclDevKit-5.2 prefix file doesn't exist

I am trying to use the trial version of ActiveState's TclDevKit-5.2. I am getting an error message like this: -prefix "/opt/TclDevKit-5.2/bin/tdkbase" does not exist when trying to wrap a simple tcl file with command like…
Vahagn
  • 4,670
  • 9
  • 43
  • 72
0
votes
1 answer

How to wrap an interactive tclsh session with TclDevKit?

How can I wrap an interactive tclsh session with TclDevKit? With TclPro this: prowrap -out shell -uses tclsh -startup "" some.tcl wraps some.tcl, and when I call ./shell it launches an interactive tclsh session. When typing source some.tcl from…
Vahagn
  • 4,670
  • 9
  • 43
  • 72
0
votes
0 answers

tk_getSaveFile Will not open dialogue in specified directory? (Tcl/Tk)

I must preface this question with the following information: This problem only occurs when my application is wrapped with TclApp I understand that when wrapping a Tcl program, one must lappend to the auto_path the location of the directory the…
Vee
  • 729
  • 10
  • 27
0
votes
1 answer

Tcl/Tk - can't read "UserArray": variable is array

I am using ActiveState's TclDevKit debugger to look through my code but at one point in the execution of the program I get the following error: can't read "UserArray": variable is array while executing "set UserArray" ("uplevel" body line…
Vee
  • 729
  • 10
  • 27