Startseite › Foren › Deutsches LiveCode-Forum › Variable in App nach Beendigung speichern › Antwort auf: Variable in App nach Beendigung speichern
Januar 26, 2020 um 15:41 Uhr
#18445
Du kannst Dir auch einfach einen Button erstellen:
on mouseup
put specialfolderpath("documents") & "/code.txt" into tFile
if there is a file tFile then
delete file tFile
end if
end mouseup
🙂