10
Modifying the User Interface
Using Adobe Dialog Manager (ADM) in Acrobat JavaScript
// Dialog object descriptor (root node)
description:
{
name: "Sample Dialog",
elements:
[
{
type: "view",
align_children: "align_left",
elements:
[
{
type: "cluster",
name: "Item Cluster",
elements:
[
{
type: "static_text",
name: "Select Item",
font: "default"
},
{
type: "list_box",
item_id: "sub1",
width: 200,
height: 100
},
{
type: "button",
item_id: "butn",
name: "Press Me"
}
]
},
{
type: "ok_cancel"
}
]
}
]
}
};
168
Acrobat JavaScript Scripting Guide