cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

launch a descriptor (HTML, REF) by script?

llevert
New Contributor

Hi everybody,

we use descriptors control,

by right-clicking application -> control -> control description -> selection of a control. (cf. PJ)

 

generation control is going perfectly.

 

However, we would like to automate this kind of control, by launching the script.

Can you tell me if this is possible? can launch a descriptor (HTML, RTF, ...) by script?

Thx in advance for your response!

1 Reply

jhorber
MEGA
MEGA

Hello Liogan

 

There is an _operator 'ExecuteDescriptor' that extends the API functions and enables to run a descriptor

It has been designed for RTF descriptors. I cannot garantee it works in all cases.

 

Example (VB script):

' get descriptor

Set oDesc = GetObjectFromID("~pIzdHCQX0PS0[Comment/Drawing of a diagram]")
' get described object

Set oObj = GetObjectFromID("~Ynif47yx8jH6[Technology Standard Repository - Data Diagram] ")
' run descriptor

oDesc.ExecuteDescriptor oObj,"C:\_StandardData\725_cp07_Demonstration\db\Adventure\USER\MIS\mega.rtf"

Jerome