ImageIcon does not guarantee load?
i have a jlabel with an ImageIcon. seems as though imageicon uses mediatracker to track load progress and is supposed to return only when image is loaded.
however, when i use ii.getImageLoadStatus() i get MediaTracker.ABORTED. yet the image is displayed
QUESTION: how can i force to make ImageIcon (within JLAbel) to display onscreen before proceeding further into code. i tried to use imageicon.tracker.waitForAll() yet it has protected access, so i cannot use it. once again, i want jlabel with imageicon to actually display before proceeding, yet it seems as though imageicon returns BEFORE load is over and i cannot access ImageIcon's mediatracker.
any ideas?
nikita

