Antwort auf: Buttongruppe auf Handy – anderes Verhalten als in der IDE

Startseite Foren Deutsches LiveCode-Forum Buttongruppe auf Handy – anderes Verhalten als in der IDE Antwort auf: Buttongruppe auf Handy – anderes Verhalten als in der IDE

#13575
Klaus Major
Administrator

    OK, fangen wir mal hier an:

    ...
    if the environment is "mobile" then
          put specialFolderPath("engine") into thisAppPath
       else
          put the filename of this stack into thisAppPath
          set the itemDelimiter to "/"
          delete the last item of thisAppPath
       end if
       put thisAppPath&"/wav/" into preRecPath
    ...

    Wenn Du die Sounddateien über “Copy files” im “Standalone Application Settings” Dialog hinziugefügt hast, findest Du sie hier -> specialfolderpath(“resources”)
    Dieser specialfolderpath() funktioniert auch in der IDE und zeigt dort auf den Ordner, in dem sich er aktuelle Stack befindet.
    Diese Zeile sollte daher für alle Platformen reichen, ohne IF THEN:

    ...
    put specialfolderpath("resources") & "/wav/" into preRecPath
    ...

    Also bitte mal korrigieren und testen.