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
März 15, 2019 um 22:10 Uhr
#13575
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.