Hello,
I’m new to Corona and Lua. I made a Parse Cloud Code function that I was able to execute successfully using develephant’s mod_parse module:
local function onRun( event ) if not event.error then print( event.response.value ) end end parse:run( "getPlayer", Params, onRun )
The code above, successfully executes my function which gets some values from a player ( not the current user ). In my Parse.com Logs, I’m able to see the “Result” from the execution. How can I display those values in Corona? Thank you