Blurry image Problem

Well to put it simple the Table wont appear


i followed this btw

Screenshot 2025-08-18 202724
heres mine, am i missing a crucial step or am i just that stupid

This works here:

image

You need make sure your "data" is a list of lists.

1 Like

Thanks alot!

Sorry, But last question, is there a way i can color the boxes like this?

Something like this:

image

image

2 Likes

Whha yess ! :sunglasses:

Any way For the Table to just appear without having to click a button??


1.2
Copied what you sent in the picture you showed and when i click the button the table doesnt appear, is there something wrong in my blocks?

im now getting a new error which is this everytime i try to click the button
Screenshot 2025-08-19 171946

Do you see the red X on the init global variable block?

The text blocks probably are missing trailing \n end of line markers necessary for CSV table encoding.

It's easier to type up the cav data into a text file, upload it into the Media folder, and load the table from there at app startup.

Search this board for Wordle In a Day for a sample table load sequence (single column, but the file access is the same.)

So at the End of my Things i Put in the Text block in the CSV table thing thing i just put /n?


how to fix this error?

Check your table for errors
Remove that double quote
A correct csv table also needs new line characters \n at the end of each row

a,b,c\n
d,e,f\n
g,h,i

Also usually you do not use the list from csv table block during initialization

Taifun

This aia project may answer most of your recent queries

TVDemo.aia (28.5 KB)

Not /n
\n

See the difference?

i've managed to figure that out now But i have a visual problem now, When the table appears the bottomest part of the table glitches out and starts to flicker

I'm not an expert on the extension(s) you use for the display.

However, there is a possibility that you ended the last row of the csv table text with \n, adding an empty row at the bottom?

CSV tables only need \n between rows.

1 Like

Show your relevant blocks and the data you are using

Hi! I rechecked it and you ere right my string block code or whatever it is had an extra /n at the end (must have not noticed) And the glitchy thing doesn't appear anymore Thanks!