Hello, I need to get a text from a "RichEdit20W" textarea. The internal Macro Scheduler function "GetWindowTextEx" does not fulfill my needs because it only gets the text which can be seen on top but the textarea has got a scrollbar and I want to get all of the text (even from the bottom of the textarea).
In C++ I did this with the following statement:
Code: Select all
SendMessage(handle, WM_GETTEXT, 25000, (LPARAM) buffer);
In MacroScheduler I tried it with:
Code: Select all
LibFunc>User32,FindWindowExA,handle,hwnd,0,RichEdit20W,0
LibFunc>User32,SendMessageA,result,handle,13,25000,0
My problem is, that I do not know how to set the
(LPARAM) buffer when using SendMessageA in MacroScheduler. Therefore I passed a "0" for it but this does not work. Can anyone tell me how to set (LPARAM) buffer in MacroScheduler? This would be nice.
Greetings
Benny