You can solve this in two ways.
A, create a new instance of Menu:
Code:
var menu1:Menu = new Menu();
trace(menu1.itemNum);
B, make the property "itemNum" static, meaning only one instance of it is ever created, and all accessed properties will point to this one value:
Code:
package {
public class Menu extends MovieClip {
//...
public static var itemNum:int = 10;
//...
public function Menu() {
//Do whatever here
}
}
}
//Now, access that property from anywhere like before
trace(Menu.itemNum);