How to store items in array of IMGTAGs, so I can sort, find ana delete items in this array? First i define the bitmaps: bm_blue = bitmap 4 50 color:blue bm_white = bitmap 4 50 color:white then the ImgTags and the array: imgtag b1 "imgtag" bitmap:bm_white imgtag b2 "imgtag" bitmap:bm_white imgtag b3 "imgtag" bitmap:bm_white…
Hi, if I get it right you're looking for the imgTag name. FindItem looks for the elements not their properties. You need to write a custom function to do that, which runs through the whole image tag array. Here is a working code sample. rollout rolTest "test"( local bm_blue = bitmap 4 50 color:blue local bm_white = bitmap…