Manual Matching (LETTRAGE) screen - actions are not being called?

SOLVED

Hello,

I want to make a simple specific script modification for the manual matching screen (SPELTR) however, it seems that actions do not work on the screen. The code is as follows:

$ACTION
 Case ACTION
  When "AVANTBOUT" : gosub ZSOLCPT
  When default
 Endcase
Return

$ZSOLCPT
Case BOUT
 When "V" : infbox 'test'
Endcase
Return

However, the result is nothing. When clicking button V ("Search") it should display the infbox with value test.

Since this didn't work, I tried something more simple.

$ACTION
Infbox ACTION
Return

Normally, doing this will cause a popup any time any action occurs. A real pain to click OK 20 times in row. But for screen LETTRAGE (SPELTR) the result of this code is nothing. There are no actions, or at least the SPELTR script is not being called until later. Is there a workaround for this?

Thank you,

Zoey

Top Replies

  •  the AVANTBOUT label is only called when the action associated with the function is type "Object management". Function LETTRAGE is associated with action MTC which is type "Window entry", and…