I was having issues centering the whole menu to be exactly to the left or right of where I wanted it on the stage. I couldn’t figure it out any other way, so here is what worked for me:
Click the “MENU” movie clip and in the script find:
holder._x += ((menuWidth -holder._width/2 + menuWidth) – holder._x)/3
add a ”+” and the amount you want to move it. For me it was: “58”
Here is what it should look like:
holder._x += ((menuWidth -holder._width/2 + menuWidth + 5
– holder._x)/3
Hope this helps anyone!
Posted 2 months ago