Notifications
Clear all
[Closed] Get the parameter that has changed in Change Handlers
Jan 14, 2008 12:18 am
Hello:
Is there a way to know what’s the parameter that has changed in a change handler construct?
For example if I do
when #($Spot01.baseobject,$Omni01.baseobject) changes owner do
(
--I want to get here the changed parameter information
--and act based on that
)
It would be something like callbacks.notificationParam()
Thank you so much
4 Replies
Jan 14, 2008 12:18 am
Also, I don’t think it can be done, the way you want it…
One way I can think of doing is to store the properties of the objects you are watching in a seperate container/array and when the change event occurs, do a check on the values…About the only thing I can think off…
Shane
Jan 14, 2008 12:18 am
That doesn’t work… And that annoyed me deeply as Topo, Geo and Prop all changed many time as I just translate a mesh. No way to know what the user actually did.
So, store variable of what you want to watch…
Jan 14, 2008 12:18 am
I was afraid of that. Well… nobody said life was easy haha
Thanks a lot:)