HELP! SOS! Some list boxe issue...i guess

[FONT=Times New Roman][SIZE=3]Hi there![/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]I am working in a map right now where u have different options. Like move the map up and down and display, using list boxes, places that u want to check.[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]The map can be moved nicely up and down, the PROBLEMO comes when u choose a topic on any of the list boxes and then try to move again the map. For some reason, u just cant. Tried changing the code but didn’t work neither. Checked about 100 times, and nothing.[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]I am uploading an example with the same logic and code that I am using, something very basic.[/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]Try to move the block around, then choose anything in the listboxes, try to move the box around u not gonna be able to anymore. [/FONT][FONT=Wingdings][FONT=Wingdings]L[/FONT][/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Why?[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Please help![/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Anyone?[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Thanks.[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Leo.[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Here is the code for the list boxes.[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]

[/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]mc_nc._alpha = 0;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]mc_drag_area.onRollOver = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]{[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            //trace("over");[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            Mouse.hide();[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            mc_nc._alpha = 100;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            mc_drag_area.onMouseMove = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]                                    {[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]                                    //trace("moved");[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]                                    mc_nc._x = _xmouse;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]                                    mc_nc._y = _ymouse;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]                                    };[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]};[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]mc_drag_area.onRollOut = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]{[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            //trace("out");[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            Mouse.show();[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            mc_nc._alpha = 0;[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]};[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]//list boxes[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]var cb_nclubs:Object = new Object();[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]m_u_nclubs.addEventListener("change", cb_nclubs);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]cb_nclubs.change = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]{[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            m_op= m_u_nclubs.value;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            trace(m_op);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]};[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]var cb_transport:Object = new Object();[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]m_u_transport.addEventListener("change", cb_transport);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]cb_transport.change = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]{[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            m_op= m_u_transport.value;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            trace(m_op);    [/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]};[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[SIZE=3][FONT=Times New Roman]var cb_serv:Object = new Object();[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]m_u_services.addEventListener("change", cb_serv);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]cb_serv.change = function()[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]{[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            [/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            m_op= m_u_services.value;[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]            trace(m_op);[/FONT][/SIZE]
[SIZE=3][FONT=Times New Roman]};[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3]stop();[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]

[/SIZE][/FONT]