Antwort auf: Veränderungen in einer App speichern

Startseite Foren Deutsches LiveCode-Forum Veränderungen in einer App speichern Antwort auf: Veränderungen in einer App speichern

#9325
SashMo
Teilnehmer

    Ein kleines Bisschen weiter…

    Ich habe bis Folgendes gefunden: Save current state on mobile

    on shutdown
       --set default folder to writeable directory on mobile
       set the defaultFolder to specialFolderPath("Documents")
       --puts the name of the current card into a text file called mobiletest.txt
       put the short name of this card into URL ("file:mobiletest.txt")
       pass shutdown
    end shutdown

    und

    on openStack
       --set default folder to folder with text file in it
       set the defaultFolder to specialFolderPath("Documents")
       -- places the contents of this text file into a temp variable
       put URL ("file:mobiletest.txt") into tState
       --navigates to the card names in the temp variable
       go card tState
    end openStack

    Das bewirkt allerdings nur, dass ich beim öffnen der App wieder auf der Card lande, auf der ich mich zuletzt aufgehalten habe. So weit so gut… Nur die Buttons bleiben noch nicht gespeichert. Dafür fehlt mir wahrscheinlich irgendwas Grundlegendes. 🙂

    lg