0
votes
1answer
23 views
Linking Tcl/Tk to Python 2.5
Hi,
I have an existing Python 2.4 and it is working properly with tkinter as I tested it using
python
import _tkinter
import Tkinter
Tkinter._test()
…
1
vote
1answer
48 views
ITCL - How to access associative array member inside a class?
How to access associative array member of a class inside the class itself? Itcl is modeled after C++, and in C++ we would write:
SomeObject.SomePublicMember = ...
How to do the …
0
votes
0answers
8 views
Opening a Web URL with a TCL App that is Sitting on a Network Drive
Hello:
I just finished a TCL Db App that includes a featrue to open web page URLs. My code is as follows ($adr is the url):
eval exec [auto_execok start] \"\" [list $adr]
This …
0
votes
2answers
219 views
TCL Question? tcl router programming
Hi buddies,
I added a new line at the middle of two fsm definition and got error while running it via router.the newly added line is in bold
`init_ConfigVars
#------------------ …
1
vote
1answer
36 views
How do I get stdout from tcl into a python string variable when using tkinter?
Hi
I have the following python code...
import Tkinter
root = Tkinter.Tk()
root.tk.eval('puts {printed by tcl}')
It prints "printed by tcl" to the screen. How can I capture w …
0
votes
1answer
31 views
Expect/TCL telnet proc does not wait for the prompt
Hello ,
I have a Expect proc that sends command for telnet login and send commands. Inside the telnet proc I do a TFTP . The size of the file is 10MB.
But the telent prompt does …
1
vote
1answer
35 views
convert CIDR to subnet mask in tcl
Given a CIDR, how can I convert it to a subnet mask.
-1
votes
0answers
31 views
tcl script for handoff
hello everybody i am working new in NS2
so pls say me how i want to use handoff between two nodes pls send anwer to my question
0
votes
3answers
293 views
Why does string match fails in this “expect” code?
I have created the following procedure in expect to work with an Agilent Base Station Simulator:
proc get_bss_parameter_value {bss parameter_string} {
global bss_array
set bss_st …
1
vote
1answer
96 views
How do I convert integer to string with leading zeros in Tcl?
I'm learning Tcl. In Perl I can do this:
$ perl -e 'for ($i = 0; $i < 5; $i++) { printf("name%03d\n", $i) }'
name000
name001
name002
name003
name004
Can I do this in Tc …
1
vote
1answer
101 views
Tcl for getting ASCII code for every character in a string
I need to get the ASCII character for every character in a string. Actually its every character in a (small) file. The following first 3 lines successfully pull all a file's cont …
0
votes
4answers
52 views
tcl: how to use the value of a variable to create a new variable
here is an example of what I'm trying to do.
set t SNS
set ${t}_top [commands that return value]
Want to get the info stored at ${t}_top
puts “${t}_top”
SNS_top (really wan …
0
votes
2answers
260 views
Why is topdir set to its default value when rpmbuild called from tcl ?
Hi,
I have a tcl script which 'exec' rpmbuild. When doing so, the 'topdir' used by rpmbuild is wrong. I have a .rpmmacros file in my home directory and if I call manually rpmbuild …
-1
votes
1answer
31 views
Inheritance with Itcl
I don't understand different behaviour for plain variables and named arrays inherited from base class as visualised by the following example:
itcl::class A {
variable foo
…
0
votes
2answers
47 views
Expect argument handling
I'd like to create an expect script that connects to the server via telnet and does some authorisation. I have a problem with using script parameters though. Based on man I expecte …
