How to use windowkeypressfcn

24 views (last 30 days)
Brenda FOCHIVÉ
Brenda FOCHIVÉ on 9 May 2019
Commented: Brenda FOCHIVÉ on 10 May 2019
I have written a 5code that draws a graph. I want that each time the user clicks on escape the graph comes back to its original state. This is my code:
Figure('windowkeypressfcn',@keyP)
Function keyP(source, event)
KeyPressed=eventData.key;
If strcmp(KeyPressed,'escape')
View (3)
end
end
When I run it shows errors. It says The class "eventdata" is undefined. Perhaps java is not running

Answers (1)

Kevin Phung
Kevin Phung on 9 May 2019
Edited: Kevin Phung on 9 May 2019
function keyP(source, event)
KeyPressed=event.Key;
if strcmp(KeyPressed,'escape')
view(3)
end
end
It's as the error says. You never defined a variable eventData. Your input is 'event'
  1 Comment
Brenda FOCHIVÉ
Brenda FOCHIVÉ on 10 May 2019
I have edited it but when I click on escape key the function do not run. I instead see the command window pop up. It's like the figure do not have the focus again.

Sign in to comment.

Categories

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

Community Treasure Hunt

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

Start Hunting!