A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: [ HELP]how can i change the cordiantes of a MC?

  1. #1
    Junior Member
    Join Date
    Apr 2003
    Posts
    17

    [ HELP]how can i change the cordiantes of a MC?

    [ HELP]how can i change the cordiantes of a MC?

    ok i have this code on a button.....

    ----------

    on (release) {
    _root.createEmptyMovieClip("myMC1",0);
    myMC1._x = 275;
    myMC1._y = 200;
    loadMovie("dw1.swf", myMC1);
    }

    ----------


    and i keep on changing the cordnates to many diff. numbers but it always stays in the same place what do i do????

    on the attached file -

    click on artists
    then click on H2boss

    im trying to get that loadedmovieclip in the box.

    HELP!!!!!!!! thank you!!

  2. #2
    Senior Member
    Join Date
    Aug 2002
    Location
    Ireland
    Posts
    194
    try:
    on (release) {
    _root.createEmptyMovieClip("myMC1",0);
    loadMovie("dw1.swf", myMC1);
    myMC1._x = 275;
    myMC1._y = 200;
    }

    i.e: load the mc into it, then move it.
    not sure if it'll work tho

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center