in reply to Re: Re: Tcl, Tcl::Tk now much better, but need documentation improvements
in thread Tcl, Tcl::Tk now much better, but need documentation improvements

actually its tcl::0.72 (not tcl::tk) perl 5.8 tcl 8.4 ... i started with $interp->evalfile("source $fileName") but changed to Eval because this was happening ... also it happens of i to $interp->Eval("set fh open $fileName").... basically what is happening is that wimdows os throwing a protection error when the Tcl process is trying to open a file
  • Comment on Re: Re: Re: Tcl, Tcl::Tk now much better, but need documentation improvements

Replies are listed 'Best First'.
Re: Re: Re: Re: Tcl, Tcl::Tk now much better, but need documentation improvements
by Courage (Parson) on Aug 28, 2003 at 15:09 UTC
    odd.

    But please discover your $fileName variable.

    Of course there should be no protection error.
    May be backslashes backslashed once again in Tcl interpreter?
    You may need

    $interp->Eval("source {$fileName}");
    Note curly braces,.
    If there will be still problems, then show output of $interp->Eval("puts {$fileName}");

    Courage, the Cowardly Dog