ich möchte gerne einen bestimmten Wert per html „POST“ an einen Webserver senden und das was danach diese Webseite zurücksendet mir wieder in eine Variable packen.
on mouseUp
set the text of fld "Ausgabe" to ""
local was="was=Hallo%20POST" ## hier ist wichtig dass bei POST die Variable noch einmal erwähnt wird
post was to URL "https://xxyyzz.de/test.php"
put it into Antwort
put Antwort
set the text of field "Ausgabe" to Antwort
end mouseUp
set the text of fld "Ausgabe" to "" -> put empty into fld "Ausgabe"
local was="was=Hallo%20POST -> put "was=Hallo%20POST" into tPost -- das Prefix "t" markiert eine temporäre Variable
post tPOst to URL "https://xxyyzz.de/test.php"
put it into field "Ausgabe"