Message Boards Message Boards

0
|
2016 Views
|
2 Replies
|
0 Total Likes
View groups...
Share
Share this post:

Autorun and popup menus in Manipulate

Posted 1 year ago

I have a notebook running a manipulate structure of which two controls are popup menus that a user can select a row of data from a large list. It works well.

My problem and question if I engage the the autorun feature the variable updated by the popup menu becomes blank at times. This causes a program crash. Can I remove a control from autorun or should the popup menu be removed from the manipulate?

Gerry

POSTED BY: Gerald Proteau
2 Replies
Posted 1 year ago

Can I remove a control from autorun

Yes you can, by using the option AutorunSequencing. The example below excludes the b control from autorun.

Manipulate[
  Column@{a,b,c},
  {a,10,19,1},
  {b,Range[20,29]},
  {c,Range[30,39]},
  AutorunSequencing->{1,3}
]
POSTED BY: Hans Milton

Welcome to Wolfram Community!
Please provide your efforts in the form of the Wolfram Language code. This will make it easier for other members to help you. Check several methods available to include your code in the rules http://wolfr.am/READ-1ST

POSTED BY: EDITORIAL BOARD
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract