Antwort auf: http-Request, Auswertung und Trace

Startseite Foren Deutsches LiveCode-Forum http-Request, Auswertung und Trace Antwort auf: http-Request, Auswertung und Trace

#13442
Klaus Major
Administrator

    Füge mal diesen Check hinzu und berichte, ob Du was gezeigt bekommst:

    on mouseUp
      put url("https://192.168.178.88/app_about") into tServerAntwort
      if the result <> EMPTY then
        answer "Fehler:" && the result
        exit mouseup
      end if
    ...