how to get id of a line from his coordonée in tkinter python?

R

Rick Johnson

how to get id of a line from his coordonée in tkinter python?

Each time you create a "canvas item", be it a rectangle, line, circle, or whatever..., the id of that object is returned as an integer. All you have to do is save the id into a variable.

rectID = canvas.create_rectangle(...)

Now you can pass that unique id into many of the methods that exist for "canvas items".

canvas.delete(rectID)
canvas.coords(rectID)
canvas.bbox(rectID)

*Sarcastic Sam quipped*: """Rick, not everybody can be as smart as you! What if we forgot to save the return value into a variable? Besides, you cannot expect us to create a variable to hold *every single* id of *every single* canvas object; that would be ridiculous!"""

Indeed it would Sam. Besides, integer tags are not easy to remember, and they are created by the canvas object (which is out of your control).

But before you throw the computer out the window, be aware that the canvas allows you to tag each "canvas item" by passing one or more strings, using the "tags=..." argument, into the "canvas.create_X(args)" methods.

py> canvas.create_rectangle(0,0,10,10, fill='red', tags='red_rect')
py> canvas.coords('red_rect')
(0,0,10,10)

PS: Hopefully you solved that other issue.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,022
Latest member
MaybelleMa

Latest Threads

Top