app designer mouse events (position and clicks) on axes component

113 views (last 30 days)
I am working on an app with that i want to move drawn objects on an axes element. Something like in this video.
As a first step i want to know the coordinates of the mouse on the axes and want to detect the mouse clicks the user does on this field. Ive been reading the forums for a while but i had no success so far creating a working program.
For testing purposes I created an application in App designer with an axes, two edit fields(numeric) and one lamp components.
The Edit Fields are supposed to show the actual coordinates of the mouse while the lamp lights up when the button is pressed. The main window looks like this:
I have collected some information about how im supposed to do but altogether im still lost.
First part of the code im trying to use:
function mouseMove(objectHandle, eventData)
cursorPoint = get(objectHandle.axes1, 'CurrentPoint');
app.xCoord.Value = cursorPoint(1,1);
app.yCoord.Value = cursorPoint(1,2);
end
Second part:
set(gca, 'WindowButtonMotionFcn', @mouseMove);
Since i havent seen a working application with mouse events, only some code parts from similar projects on the forums, im not sure if it could work at all, or where im supposed to put this code lines in the App Designer code.
I uploaded the app if someone would look into that. Any information on where to start with mouse events/ written or video guides / a working code for my test application would be greatly appreciated.
  2 Comments
Adam
Adam on 16 Aug 2018
Unfortunately I don't think mouse interactivity is supported yet by App designer - one of the many reasons I do not use it yet.
gives details of what is not yet supported, with links to help for earlier versions too to show what they supported.
Lucas Acuna Scafati
Lucas Acuna Scafati on 8 May 2020
Were you able to find a solution to this issue? I currently working with 2017b and have the same problem.

Sign in to comment.

Answers (1)

Sampath Rachumallu
Sampath Rachumallu on 28 Apr 2020
Edited: Sampath Rachumallu on 28 Apr 2020
Create a function called 'mouseMove' inside app in your case. Refer
for creating a function inside an app.Next, Create a Startup function for the app. Refer the below link on how to add startup function for the app:
Finally set the mouse motion function callback to function 'mouseMove' inside startup function
Note: I am using 2019a and Mouse callbacks are supported in this version.
%In startup function
function startupFcn(app)
%set WindowButtonMotionFcn as mouse move function
set(app.UIFigure, 'WindowButtonMotionFcn', @mouseMove);
end

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!