home *** CD-ROM | disk | FTP | other *** search
- on getlistofBitMembers j
- if j > the number of castLibs then
- return ["CASTLIB NICHT VORHANDEN!", EMPTY, EMPTY]
- exit
- end if
- set tlist to [:]
- set tselect to []
- set tProblem to [:]
- repeat with i = 1 to the number of castMembers of castLib j
- if the type of member i of castLib j = #bitmap then
- if the depth of member i of castLib j = 32 then
- setaProp(tProblem, i, the depth of member i of castLib j)
- end if
- if the palette of member i of castLib j = -1 then
- setaProp(tProblem, i, "Mac-Palette" && the depth of member i of castLib j)
- end if
- if the depth of member i of castLib j > 8 then
- setaProp(tlist, i, the depth of member i of castLib j)
- append(tselect, [i, i])
- end if
- end if
- end repeat
- if not (tProblem = [:]) then
- put "Probleme:" && tProblem
- end if
- put "Bitmaps mit einer Farbtiefe > 8 Bit:" && tlist
- set the selection of castLib j to tselect
- return [tProblem, tlist, tselect]
- end
-