Page 1 of 1

Displaying images without stopping

Posted: Thu Apr 05, 2018 7:14 am
by Eugene Lutsenko
I output images using the function:

Code: Select all

@ 2,1 DCSTATIC TYPE XBPSTATIC_TYPE_RECESSEDBOX SIZE X_MaxW, Y_MaxW PIXEL OBJECT oStatic
       DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic )} ;
       TITLE L('4.2.2.3. Агломеративная древовидная кластеризация классов.   (C) Универсальная когнитивная аналитическая система "ЭЙДОС-X++"')
the Disadvantage is that after each image is output, you have to click on the Esc to continue. The images a lot. Is there no way to output images non-stop without having to press a key?

Re: Displaying images without stopping

Posted: Thu Apr 05, 2018 9:31 am
by rdonnay
Is there no way to output images non-stop without having to press a key?
What do you mean by output?

Try this:

DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic ), DC_ReadGuiEvent(DCGUI_EXIT_ABORT,GetList)} ;

Re: Displaying images without stopping

Posted: Thu Apr 05, 2018 1:02 pm
by Eugene Lutsenko
I would like to not have to press ESC to continue

Re: Displaying images without stopping

Posted: Thu Apr 05, 2018 2:59 pm
by rdonnay
DCREAD GUI FIT EVAL {||_PresSpace4223(oStatic ), DC_ReadGuiEvent(DCGUI_EXIT_ABORT,GetList)} ;

or

DCREAD GUI FIT EVAL {|oDlg|_PresSpace4223(oStatic ), PostAppEvent(xbeP_Keyboard,xbeK_ESC,,oDlg)} ;

Re: Displaying images without stopping

Posted: Mon Apr 30, 2018 10:59 pm
by Eugene Lutsenko
Thanks, Roger!

I did everything like in your graphics test where you demonstrated GetPixel() and other features. Everything turned out well. Many thanks! Well, when you helps master!