On Fri, Jan 16, 2009 at 9:21 AM, Kay C Lan <lan.kc.macm...@gmail.com> wrote:

>
>     answer merge("[[value(tNewFunction)]]")
>
> What am I doing???

Merge isn't necessary!

answer value(tNewFunction)

will do just fine. Sorry, spending far too much time with 'merge' at the
moment.

ON mouseUp
    put "hello" into pData1
    put "world" into pData2
    put "shout" into test
    put test & "(pData1,pData2)" into tNewFunction
    answer value(tNewFunction)
END mouseUp

FUNCTION shout pData1,pData2
    return pData1 && pData2
END shout

HTH
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to