getting the ID of the line which just has been clicked on

hi,
I have a varying set of lines which shall be displayed. Clicking on one of the lines some actions have to be performed which are specific for that line, i.e every line has its own set of actions. The lines are painted by h(i) = imline(parent, pos(i)); Now I need one callback function which is called whenevery one of the lines has been clicked on. And this callback function should tell me which of the lines has been clicked on. With this information I would be happy and could program the necesary specific actions.
How can I do that?
Nikolaus

Antworten (1)

Jeremy
Jeremy am 18 Okt. 2013
I don't use the IP toolbox but I assuming you would be able to use a "line" instead of imline since I don't think imline has callback, or maybe this could be adapted to imline.
function []=xxx;
figure;
line([1 0], [1 0], 'ButtonDownFcn',{@line_click,1});
line([0 1], [1 0], 'ButtonDownFcn',{@line_click,2});
function line_click(src,evnt,l)
msgbox(num2str(l));

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 18 Okt. 2013

Kommentiert:

am 18 Okt. 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by