Filter löschen
Filter löschen

Running a mlapp file from another mlapp file via pushbutton callback

7 Ansichten (letzte 30 Tage)
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!)

Akzeptierte Antwort

Adam Danz
Adam Danz am 10 Jul. 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 Kommentare
Jason
Jason am 10 Jul. 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?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by