Startseite › Foren › Deutsches LiveCode-Forum › Aktuelles Bild in globales Array speichern. › Antwort auf: Aktuelles Bild in globales Array speichern.
April 26, 2019 um 19:30 Uhr
#14353
Herrlich wie einfach das doch gehen kann, Danke vielmals Klaus.
Und wieder geht der Pokal raus an dich.
Um hier nochmal meine dilettantischen Gehversuche mit LC zu dokumentieren, meine Rangehensweise mit einem extra Textfile =)
on openCard:
global x
add 1 to x
clear URL ("file:" & specialFolderPath("documents") & "/check.txt")
Button:
on mouseUp
global gAuswahl
global x
if x = 11 then
answer "Es wurden zehn Bilder ausgewählt"
else
put filename of img id 1027 into line x of URL ("file:" & specialFolderPath("documents") & "/check.txt")
put URL ("file:" & specialFolderPath("documents") & "/check.txt") into field "fieldTest"
end if
add 1 to x
end mouseUp
Geil oder 😀
Das hat funktioniert, allerdings ist deine Variante wesentlich eleganter.
Vielen Dank nochmal
Tobias