Call problem of a function

Hello to all of you,
I have a problem because the function that allows me to display a table is not called. However, I have the change in my layer ("Test"). Moreover when I do "Do it" on the function call "ChartMakerPlus1", the table appears on AI Companion .

Here are the blocks:

Thank for your help

ca92f771fd42024232315b515eeb437620659455_2_690x273

Patience, patience.

1 Like

Im sorry I dont understand, what im suppose to do?

In Screen2.Initialize, you issue a Web Get, but then you immediately assume the return text has arrived and you try to display it immediately.

That's wrong.

Web text takes time to come back, like snail mail.

So trying to display the returned data should moved into the other event block, the When Web1.GotText block, after the block that grabs the text into that global variable.

1 Like

Humm... I tried but I can't do it, I tried with variables like this one, but without success, can you help me more?

Like this:

image

1 Like

While loops are very fussy—avoid them if you can. While Test = True is possibly the worst type of While loop that could exist, simply because it takes up a horde of memory.

Thank you very much, I understood and it works very well

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.