Notifications
Clear all
[Closed] pickObject() doesn't work inside the altExecute event
Aug 21, 2007 6:11 pm
Hi to everybody
I was creating a new macroscript for placing it in a quad menu ad using the execute and altExecute events
the macroscript uses the pickObject function ad if I use it with the execute event it’s all ok but if I use it in the altExecute event it doesn’t work.
here an example:
fn excecutingAction =(
myObj=pickObject()
if myObj!=undefined then
format"And the object name is...... %
" myObj.name
else
format"No object
"
)
macroscript testing_pickObject_macro
category:"myTestingTools"
(
on execute do excecutingAction()
on AltExecute type do excecutingAction()
)
if you evaluate and place the macro in the quad menu you can see the problem.
With the altExecute the viewport is blocked and you can’t pick objects press esc to block the pickObject function.
is it possible to solve the problem without using a pickButton(now I use this, but if it’s possible I prefer not using a rollout)?
I’m italian so sorry for my english
thanks to everybody