Archive: call function X fails


call function X fails
Here's my problem:

StrCpy $R2 "FDelete"
Call $R2


The function FDelete does not get called.
What's wrong?

Thanks!


Call accepts variables with an address, not a name. For example:

GetFunctionAddress $0 FDelete
Call $0

Cheers. I can't believe I overlooked that.