Startseite › Foren › Deutsches LiveCode-Forum › Soucecode anzeigen › Antwort auf: Soucecode anzeigen
März 24, 2019 um 15:33 Uhr
#13728
Ach ja, der Link:
https://major-k.de/xtalk.html
Du wirst sehen, das benötigt eigentlich nur einen repeat loop über alle Karten und deren Objekte:
...
put empty into alle_infos
repeat with i = 1 to the num of cds
put the name of cd i & CR & the script of cd i & CR & CR after alle_infos
put the num of controls of cd i into tAnzahlObjekte
repeat with k = 1 to tAnzahlObjekte
put the name of control k of cd i & CR & the script of control k of cd i & CR & CR after alle_infos
end repeat
end repeat
put alle_infos into fld "alle infos, ne"
...