in official javascript reference there's a short description on the use of "next_tab" (or first_tab) property for setting order tab. I tried it but it doesn't work.
Can i have some suggest about?
in official javascript reference there's a short description on the use of "next_tab" (or first_tab) property for setting order tab. I tried it but it doesn't work.
Can i have some suggest about?
description:{first_tab: "But2",name: "JSADM Dialog",elements:[{type: "button",item_id: "But1",name: "Button 1",next_tab: "ok",},{type: "button",item_id: "But2",name: "Button 2",next_tab: "But1",},{type: "ok_cancel",next_tab: "But1",},]
The behavior of these parameters varies a bit between versions of Acrobat. So the best way to them is to set the "first_tab" property at the top level of the "description", then set the "next_tab" for every element you want in the tab order. Make sure the oreder is correct and do not assume any default behavior. The value of these properties is the "item_id" of the element you want to tab into. For radio buttons, only the first one in the group needs the "next_tab".
Thom Parker
The source for PDF Scripting Info
[url=http://www.pdfScripting.com]pdfscripting.com[/url]
The Acrobat JavaScript Reference, Use it Early and Often
[url=http://www.adobe.com/devnet/acrobat/]http://www.adobe.com/devnet/acrobat/[/url]
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script