How do you specify the position of a movie clip you attach with attachMovie? My attach code is: on (release) {_root.attachMovie("mcprices", mcprices1, 0);} but it loads way off on the upper left origin and half of it is off the stage. Thanks. Alani
Printable View
How do you specify the position of a movie clip you attach with attachMovie? My attach code is: on (release) {_root.attachMovie("mcprices", mcprices1, 0);} but it loads way off on the upper left origin and half of it is off the stage. Thanks. Alani
Code:on (release) {
_root.attachMovie("mcprices", "mcprices1", 0);
_root.mcprices1._x = _root.mcprices._y = 0;
}