I used to use function handles extensively until lite-C. I have tried every way possible and have read every piece of documentation and still can't resolve my issue. The handle function appears to give me the SAME value regardless of what function or action I give it. Here is an example of what I am trying to do:

action pAction();//pointer to an action

action myAction()
{
beep();
}

var hMyAction = handle(myAction);//This will return the SAME value regardless of what function or action it receives.

pAction = ptr_for_handle(myAction);

pAction();//Crashes here and I believe it's because of the handle


Chaos is a paradox consistently inconsistent.