Getting RGB of a MC in Actionsrcipt

Allright, Ive been Searching and Searching about how to find the RGB or HEX or something of a Movieclip, that I have use “setRGB” on. I dont want to find the Objects RGB I want to get the MC’s RGB. I need it for an IF Statement. If this is possible please tell me. Ive searched everywhere.

Just to Make my Question even more clearer, this is whats in the Flash Help File:

var my_color:Color = new Color(my_mc);
// set the color
my_color.setRGB(0xff9933);
var myValue:String = my_color.getRGB().toString(16);
// trace the color value
trace(myValue);
// traces ff9933

this traces my_color, which is the Object, I dont want that I want my_mc’s RGB, Whenever I try this I Get “undefined”.

Please Help, and Thanks in Advance!!