<< Back to
AcrobatUsers.com
These forums are now Read Only. If you have an Acrobat question,
ask questions and get help
from one of our experts.
desactivate a 3D_annotation
Forum Index
>
3D
>
desactivate a 3D_annotation
2011-11-19 13:21:27
fran33
Registered:
Aug 24 2011
Posts:
19
Answered
Hi,
What is the javascript instruction to desactivate a 3d annotation?
thanks in advance.
My Product Information:
Acrobat Pro Extended 9.0, Windows
2011-11-19 21:51:00
#1
UVSAR
Registered:
Oct 29 2008
Posts:
1357
Accepted Answer
Just set the .activated property to false. For example if the annotation is the first on page 1, you would call
getAnnots3D(0)[0].activated = false;
2011-11-20 09:36:19
#2
fran33
Registered:
Aug 24 2011
Posts:
19
thank you very much.
It works great
getAnnots3D(0)[0].activated = false;