I have the following multiplication Manipulate:
Manipulate[
x*y,
{x, 1, 10},
{y, 5, 15}
];
When you run this Manipulate, the X and Y sliders should not be visible to the user. But, The question: What is your X value between 1 and 10? should pop up with an empty box for entering a number for X between 1 and 10. After entering an X value, then the second question: What is your Y value between 5 and 15? should pop up with another empty box for entering a Y value. After answering both questions, the answer should be visible in Manipulate pane. Every time you run this Manipulate, the same steps should be evoked.
Can we do that in Mathematica?




Manipulatewindow. – Tugrul Temel Jul 25 '20 at 09:34Manipulatecodes involving heavy computations, I would like to stick to those instead of revising them with your proposal. It is a kind ofpath dependencyproblem. In your edited answer above, would it be possible to see the final productX*Ywithin the originalManipulatepane showing X and Y sliders for the user to continue choosing new values from the sliders, instead of running the code again? – Tugrul Temel Jul 27 '20 at 13:05menu? After the first question, aPopupmenu comes and the choice is made. Then, the second question comes with aPopupmenu. After both choices are made, theManipulatebecomes visible. Just like you did above, only difference is to use thePopup` menu. I hope I am not asking too much. Thank you very much. – Tugrul Temel Jul 27 '20 at 18:16SetterBarchange both instances ofSetterBartoPopupMenu. However, both questions must be answered in the input fields before theManipulatewill appear. If you only wantPopupMenus, then use a straightforwardManipulateas in the original extended comment. – Bob Hanlon Jul 27 '20 at 18:49