These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

How does an RMA work as a resource of 3D-Area?

floG23
Registered: Apr 21 2010
Posts: 14

Hi,
i got a question, where i get really desperated, cause it won´t work...
 
I want to embedd a Navigation which is created with ActionScript 3 (without FLEX), to embedd in into the 3D-Content as a swf-resource. If i do that, the Console says that getAnnots3D(0) is not defined...
 
E.G.
AS: (on relaease)
 
import flash.external.*
ExternalInterface.call("eval", "getAnnots3D(0)[0].context3D.runtime.setView(0, true);");
  
In PDF, it should make a JavaScript-implemented View-Change...But like i wrote it above, the Annotation isnot defined...Is there a way to get it work? It seems, that i forgot something...
 
I am thankful for every help...
 
Greeting
floG23

My Product Information:
Acrobat Pro Extended 9.4.3, Windows
UVSAR
Expert
Registered: Oct 29 2008
Posts: 1357
Whenever a SWF file is attached to a 3D annotation, the annotation becomes a Rich Media subtype - so you must use "getAnnotsRichMedia" to refer to it.
floG23
Registered: Apr 21 2010
Posts: 14
Does the functions, which i programm for 3D-Annotation work by replace getAnnts3D to getAnnotsRichMedia?

like:

getAnnotsRichMedia(0)[0].context3D.runtime.setView(0,true);


?
UVSAR
Expert
Registered: Oct 29 2008
Posts: 1357
Yes.