home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global glInstallList, gbInstallEinkauf
- set glInstallList to list()
- set nLines to the number of lines in field "InstallFont"
- if line 1 of field "InstallFont" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallFont" <> EMPTY then
- append(glInstallList, "font" & line n of field "InstallFont")
- end if
- end repeat
- set nLines to the number of lines in field "InstallGame"
- if line 1 of field "InstallGame" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallGame" <> EMPTY then
- append(glInstallList, "game" & line n of field "InstallGame")
- end if
- end repeat
- set nLines to the number of lines in field "InstallClip"
- if line 1 of field "InstallClip" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallClip" <> EMPTY then
- append(glInstallList, "clip" & line n of field "InstallClip")
- end if
- end repeat
- set nLines to the number of lines in field "Installfaxe"
- if line 1 of field "Installfaxe" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallFaxe" <> EMPTY then
- append(glInstallList, "faxe" & line n of field "Installfaxe")
- end if
- end repeat
- set nLines to the number of lines in field "Installdesi"
- if line 1 of field "Installdesi" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallDesi" <> EMPTY then
- append(glInstallList, "desi" & line n of field "Installdesi")
- end if
- end repeat
- set nLines to the number of lines in field "InstallUtil"
- if line 1 of field "InstallUtil" contains "keine Daten gewählt" then
- set nLines to 0
- end if
- repeat with n = 1 to nLines
- if line n of field "InstallUtil" <> EMPTY then
- append(glInstallList, "Util" & line n of field "InstallUtil")
- end if
- end repeat
- put glInstallList
- if count(glInstallList) < 1 then
- exit
- end if
- InitWaitWindow()
- StartMrMore(EMPTY, "more wait")
- ResetKorb()
- set gbInstallEinkauf to 1
- end
-