Open akavel opened 8 years ago
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 the correct incantation to me.
ink.CreateStroke({Value={20, 100, 30, 110}; Type="array of int4"}, {Type="variant";Value=nil})
The only thing that LuaCOM does different than the example you provided is that the lower bound of the array is 1 instead of 0. Besides that... Can you try VBScript and see if you can come up with working code?
I looked in the docs and it seems one has to rebuild the library to enable logging? I use it as a binary LuaRock, recompiling seems more involved.
As to different language, that's what I planned for debugging too, although I used LuaCOM in the first place because I quietly hoped I'll be able to prototype quickly and easily, not that I'll have to dive deep into debugging, eh...
On Fri, Mar 11, 2016 at 5:28 PM, Ignacio Burgueño notifications@github.com wrote:
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 the correct incantation to me.
ink.CreateStroke({Value={20, 100, 30, 110}; Type="array of int4"}, {Type="variant";Value=nil})
The only thing that LuaCOM does different than the example you provided is that the lower bound of the array is 1 instead of 0. Besides that... Can you try VBScript and see if you can come up with working code?
— Reply to this email directly or view it on GitHub https://github.com/davidm/luacom/issues/14#issuecomment-195439198.
I'm trying to access the MS Ink API. I'm interested in the following signature now:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms695054%28v=vs.85%29.aspx
Which also has an usage demo in MSDN at:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms704898%28v=vs.85%29.aspx#code-snippet-2
And which I found to be actually a method on an object named "msinkaut.InkObject.1" apparently (to my significant surprise). I managed to verify that a method with such name gets listed in the output of the following snippet:
I've tried then to call it in a few various ways, but none seemed to succeed (note: "Parametr jest niepoprawny" would translate as "The parameter is incorrect", code 0x80070057; I'm using luacom from luarocks, lists as v1.4-1):
Do you have, by any chance, any idea if/how may it be possible to call this successfully with luacom? I know quite well that all this COM stuff is crazy at low level (safearrays, only one error message ever, etc.), so I don't have my hopes very high here, but I just wanted to ask if you potentially could have any ideas what else I could try.
TIA!
edit: tried with
ink:
instead ofink.
too.