function text_auslesen()
{
plt_datei = file_open_read("test1.plt");
for(temp_1=0; temp_1 <= file_length(plt_datei); temp_1++)
{
temp = file_asc_read(plt_datei);
zeichen = temp;
if(temp == zeichen)
{
temp_2 = "A"; //Anzeige in Panel
}
wait(-1);
}
file_close(plt_datei);
}