Azzera filtri
Azzera filtri

Running a mlapp file from another mlapp file via pushbutton callback

7 visualizzazioni (ultimi 30 giorni)
Hello, I have a mlapp file and want to run another one from a pushbutton.
Following the link below, I'm able to run my 2nd mapp file (ImageViewer.mlapp) by placing the name of the app in the pushbutton callback
i.e.
function TESTButtonPushed(app, event)
ImageViewer.mlapp
end
However, this requires I put the ImageViewer.mlapp file in the same director as my first mlapp file which I don't want to do. So my question is, how do I run a 2nd mlapp file but thats in a different directory.
Thanks
please note, I don't need to share data, so please dont just share links with how to do this (I have already read them!)

Risposta accettata

Adam Danz
Adam Danz il 10 Lug 2023
> how do I run a 2nd mlapp file but thats in a different directory?
Add the path to the 2nd app in the button callback or specify the mlapp file using the full path.
function TESTButtonPushed(app, event)
addpath(____)
ImageViewer.mlapp
end
or
function TESTButtonPushed(app, event)
\__fullpath__\ImageViewer.mlapp
end
  3 Commenti
Jason
Jason il 10 Lug 2023
How about if i compile my 2nd mlap file first as an exe. Then that will take care of all the dependencies i assume? so can i just call that exe file within my first mlap file, but have the first file compiled to an exe?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Tag

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by