dropdownList の Selected ハンドラを関数として呼び出す方法はありますか。

MAXScript に関する質問と回答 > スクリプト UI の操作 > dropdownList の Selected ハンドラを関数として呼び出す方法はありますか。

質問:

ユーザ インタフェース コントロールのイベント ハンドラは、関数として呼び出すことができます。たとえば、myButton.pressed()、mySpinner.changed 10.0 といった具合です。ただし、dropdownlist コントロールの on selected ()イベント ハンドラでは、この関数を「隠す」、.selected という名前のプロパティが既に存在するため、関数として呼び出すことはできません。

このメソッドを呼び出す方法はあるでしょうか。

回答:

直接は呼び出せません。 これは既知の制限事項ですが、後方互換性の問題からおそらく今後も修正されません。

回避策として、ハンドラが行う処理を実行する関数を定義し、このカスタム関数を、ハンドラとこのハンドラを呼び出したいその他のコードの両方から呼び出します。

例:

rollout testddl_rollout "Dropdownlist Handler"
(
  dropdownlist ddl_someList items:#("1","2","3")--this is the dropdownlist
  button btn_select1 "Select 1"--these buttons will set the list
  button btn_select2 "Select 2"--by calling the custom function that
  button btn_select3 "Select 3"--replaces the on selected() handler
 
  --this is the custom function that performs the operations normally done
  --inside the on selected() event handler:
  fn ddl_someList_Selected itm =--we pass the argument passed to the handler
  (
    format "You selected %\n" itm--and do something inside
  )
  --now we can call this custom function from the event hander itself
  on ddl_someList selected itm do ddl_someList_Selected itm
  --and from any other event handlers that want to affect the dropdownlist
  on btn_select1 pressed do ddl_someList_Selected (ddl_someList.selection = 1)
  on btn_select2 pressed do ddl_someList_Selected (ddl_someList.selection = 2)
  on btn_select3 pressed do ddl_someList_Selected (ddl_someList.selection = 3)
)
createDialog testddl_rollout

関連事項