Quote:
The attached small app uses "RegisterEventHandlers" for mouse over and mouse move functioanlity.
I do not have time to check the attached file, but can point you to some things to try or check.
It seems Flash/Flex
handles scripted functions differently. Check out this section of the (Opuscript) Help file:
Quote:
Using OpusScript with Flex
Opus Flex does support a limited sub-set of the OpusScript functions. However, it is strongly recommended that you begin with new scripts for Flex publications, as few existing scripts are likely to work without alteration. Please note, there are several limitations that are described below.
Functions all return immediately. In OpusScript many functions do not return a value until the action they perform has completed (such as the Move() function). It is not possible to replicate this behaviour in Flash, therefore all functions return immediately.
The help info
goes on to mention CASE sensitive and other details to pay attention to.
So I think if you structured your Event Handler routine to call a function you wrote in Opusscript -- you need to check the logic flow and that above issue about "immediately" returning a result. Maybe you could use Custom Trigger and TriggerComponentEvent() creatively... reaching back into Standard Actions for the Move of the mouse cursor. I have not done much with Flex, so I am just talking off the top-of-my-head here.