From: Taguchi T. <ta...@to...> - 2003-11-21 06:21:54
|
I found another workaround. Mozilla can Drag&Drop any links in the pages. So Drag&Drop a link to tclet, then its tclet will get focus. Please do not ask me "Why?" ;-) By the way, I get other probrem. I wrote following tag: <embed type="application/x-tcl" width="400" height="400" frameborder="NO" src="http://localhost/test.tcl"> and file test.tcl is as following: #!/usr/local/bin/wish8.4 text .text .text insert 1.0 "Hello World!" pack .text I've try to execute this tclet, but I got following error message. An error occured during execution of this Tclet: invalid command name "<PRE>" while executing "<PRE>" ("uplevel" body line 1) invoked from within "upvelel #0 {<PRE> <HR>invalid command name "text" while executing "text .text"<HR> <P><B>OUTPUT BUFFER:</B></P> #!/usr/local/bin/wish8.4 text .tex..." I think this message means this tclet has evaled using tclsh rather than wish interp. Demo tclets in tclplugin demo pages are evaled normaly. but local one is no. Why? What should I do? Thanks. -- T.Taguchi. |