Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

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

by Anonymous Monk
on Nov 08, 2013 at 20:25 UTC ( [id://1061767]=note: print w/replies, xml ) Need Help??


in reply to How to use Tk::Text->SetCursor

Hmm,

nope -- perldoc Tk |grep -in position

nope -- grep SetPosition -r Tk-804.031

*brains* -- I remember its http://search.cpan.org/dist/Tk/pod/Text.pod#INDICES you want

$text->SetCursor( "$line.$char" ); $text->SetCursor( "+ $count chars" ); $text->SetCursor( "- $count chars" ); $text->SetCursor( "+ $count lines" ); $text->SetCursor( "- $count lines" ); $text->SetCursor( "wordstart" ); $text->SetCursor( "wordend" ); $text->SetCursor( "linestart" ); $text->SetCursor( "lineend" ); $text->SetCursor( "imageName" ); $text->SetCursor( $widget ); $text->SetCursor( "tag.first" ); $text->SetCursor( "tag.last" ); $text->SetCursor( "mark" ); $text->SetCursor( "othermark" ); $text->SetCursor( "end" ); $text->SetCursor( "@30,50" ); ## pixels

Replies are listed 'Best First'.
Re^2: How to use Tk::Text->SetCursor (INDICES/INDEX)
by Yu Chen (Initiate) on Nov 08, 2013 at 20:50 UTC
    Thanks man.
    But I still cannot understand.
    For example, How to move the insert cursor to 3rd line?

      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!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1061767]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 17:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found