Within a GUI created with App Designer can I call a function associated with one button inside the code for a different button?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Stuart Smith
le 18 Oct 2022
Commenté : Kevin Holly
le 19 Oct 2022
I have the code below associated with the EXIT button of my GUI. Can I call this function inside the code for a different button? If so, how?
% Button pushed function: EXITButton
function EXIT(app, event)
if isfile( '_TEMP_.jpg' )
delete( '_TEMP_.jpg' )
end
if isfile( '_PREV_.jpg' )
delete( '_PREV_.jpg' )
end
if isfile( '_CURR_.jpg' )
delete( '_CURR_.jpg' )
end
close all
app.delete
end
0 commentaires
Réponse acceptée
Kevin Holly
le 18 Oct 2022
Modifié(e) : Kevin Holly
le 18 Oct 2022
When you create a new function, you can just call that function.
function differentButton(app, event)
EXIT(app)
end
5 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!