Following on from this question here
I have a custom ActiveX control which raises an event "BeforePageValidated" which has a parameter "args" which is an object which contains a boolean. The purpose of this is to allow the client to override the validation and force it fail by setting the boolean value to true.
I can catch the event in IE using the following
<script for="objInterviewNOW" event="BeforePageValidated(args)">
However I can't access the property of the args object.
How should I be doing this?