KNOWLEDGE BASE
Log In    |    Knowledge Base    |    4D Home
Tech Tip: How to get the "on clicked" event to work in 4D View
PRODUCT: 4D View | VERSION: 6.8 | PLATFORM: Mac & Win
Published On: November 27, 2002

First of all, in order to get an event to work in the 4D View area, you must use the command PV ON EVENT.
Secondly, you must pass the constant "pv on clicked" instead of "on clicked."

For example:
PV ON EVENT (area;pv on clicked ;"MethodName") `Correct
PV ON EVENT (area;on clicked;"MethodName") `Incorrect