I'm scripting a simple modifier. When picking an object i want to display the name of the picked object on the pickbutton.
on pcbSourceObj picked obj do doesn't work. same for (button,spinner,..) Also i want to update the modifier when changing a value.
Is there a way? Thank you
plugin simpleMod test
name:"test"
classID:#(0x7e4dd50a, 0x2577a8c0)
version:1
(
parameters main rollout:params
(
spinnerval type:#radiobtnindex ui:spnTest
sourceObj type:#node ui:pcbTest
)
rollout params "Mirror Parameters"
(
pickbutton pcbTest "pick" width:150 height:30 align:#center
button btnTest "Test" height:30 align:#center
spinner spnTest range:[0,100,1]
)
on btnUpdate pressed do print "btnUpdate pressed"
on pcbSourceObj picked obj do print "pcbSourceObj picked"
on spnTest changed val do print val
on map i p do
(
)
)
By jos · 2012-04-24
barigazy · 2012-04-24
kilad · 2012-04-24