in reply to Re: How to use Tk::Text->SetCursor (INDICES/INDEX)
in thread How to use Tk::Text->SetCursor

Thanks man.
But I still cannot understand.
For example, How to move the insert cursor to 3rd line?
  • Comment on Re^2: How to use Tk::Text->SetCursor (INDICES/INDEX)

Replies are listed 'Best First'.
Re^3: How to use Tk::Text->SetCursor (INDICES/INDEX)
by Anonymous Monk on Nov 08, 2013 at 21:08 UTC

    You buy it dinner first?

    my $line = 3; my $char = 0; $text->SetCursor( "$line.$char" ); $text->SetCursor( "3.0" );
      Yes, it works well. Thank you very much!