From: David Z. <zol...@lr...> - 2011-03-24 17:01:05
|
Le 24 mars 2011 à 17:33, Damon Courtney a écrit : > Kevin's solution so far has been to just build his own extensions to cover the shortfall in the base Tcl/Tk. You can package your own extensions fairly easily, and they don't run afoul of Apple's guidelines if they don't call into private APIs. Sure I can. In fact, I don't really understand why I should include Tcl and Tk frameworks in my app while I can just start it with a small run.sh shell script like this: #!/bin/sh # Note we have to quote paths because they might contain spaces dir=`dirname "$0"` exec /usr/bin/tclsh8.5 "$dir/MyApp.kit" "$*" That's way easier to do, and as I'm using system tclsh, it should be ok for Apple reviewers. However, I still have this problem with this "About Tcl & Tk" I can't remove from menu. :/ -- David Zolli kr...@kr... http://www.kroc.tk |