From: Michael on
I have an application where I would like to initialize and update an 'implay' video player from matlab code. Thus far, I have the following code for initializing the movie player:

implay1 = implay
set(implay1.DataSource.LoadExpression,'mlvar','dat1')
implay1.DataSource.LoadExpression.importBtnClicked

The problem is that when this code is executed, the movie player does not update. Instead, I must physically go to the File menu of the implay window and click on "import from workspace", then click on the variable and click 'update'. Once I do this once, I can use the above lines of code and they work well for updating the player if the 'dat1' variable changes. What must I change in the initial creation of the window to have the data load automatically?