In case (B) is possible but not also (A):
While selecting additional items, the FIRST-selected item's title, etc. will stay to be displayed in UR window's caption, but perhaps retrieval of the icc of the LAST-selected item will be easiest? In the meanwhile:
wingettext, s, A
if ( strlen(s) < 200 AND instr(s, "items selected") ) ; should be fastest this way
{
; icc currently not available
; code for multi-selection here, or just to verify:
msgbox, Multiple items.
}
else
{
; code for single-selection, incl. trigger the icc to begin with, or just:
msgbox, Just one item.
}
|