Community Members As a part of a larger interface, I added a button within a Manipulate to display an specific picture. In order to explain better I have written the following code:
Manipulate[{f, name}, {{f, Graphics[Disk[]]},
ControlType -> None}, {{name, "filename"}, ControlType -> None},
Button["Imagen?", name = SystemDialogInput["FileOpen"]]]
I have initializated variables f and name with a circle and filename, respectively. At first, theses variables are display properly but filename does not updates after choosing a filename clicking on the button "Image?" I do not know why is this? Thanks for any help!
Jesus