Notifications
Clear all

[Closed] Dialog Menu's

[size=2]I have a question about Dialog Menu’s. Is there a call i can use that is created everytime the menu is selected? For example, in the code below, i need an event to be triggered when a user selects the submenu “test”. The only even i see that i can use is “on menu picked, and on menu open”, neither of which are what i’m looking for.

rcMenu testmenu
  (
  	submenu "test"
  	(
  		menuitem testItem "test"
  	)
  	
 
 
  )
 
  rollout TestRollout "" width:162 height:300
  (
  	button btn1 "Button" pos:[19,130] width:121 height:70
  )
  createDialog TestRollout menu:testmenu
  

[/size][size=2]
Can this be done?

Thanks
[/size]

2 Replies

I’m afraid the opening of a subMenu doesn’t call any event.

Martijn

oh well.

Thanks for confirming that Martijn.