Ignacio Burgueño

Results 68 comments of Ignacio Burgueño

But the call to 'client.network.write' adds data to _requests_ If I'm not mistaken: ``` lua local reply = cmd(client, ...)

Do you have a test case to reproduce the error?

Can we split the code to see where it is failing? ``` local luacom = require "luacom" local talk = luacom.CreateObject("SAPI.SpVoice") local voices = talk:GetVoices() local voice = voices:Item(0) talk.Voice...

Great. Voice is a property. When you read the value of a property, one method is called. When you assign something to it, a different method is called. This is...

By the way, which LuaCOM version are you using? Anyway, I feel that propputref is not supported by luacom. Does this work? `talk.Rate = 10`

It's great to hear that it worked :relieved: From what I understand from the code (it's been years since I looked at it, though) is that the "set" in "setVoice"...

Have you tried enabling the debug log of LuaCOM (IIRC it is stated in the docs how to do that). I would have thought that this would work. Seems like...

You're probably using the makefile. Please don't, it is not working. It uses some libraries that are not available. You have to use CMake to build, following the instructions on...

Oh, sorry. I forgot about those VS solutions. Again, the preferred way to build is using CMake. Those project files has some defaults (libraries and paths) that are not readily...