Skip to main content
chenjil43641795
Legend
January 8, 2021
Answered

How to combine movie clip names and call them(H5)

  • January 8, 2021
  • 2 replies
  • 310 views

 

var data = new Array();
for(var i = 0; i < 8; i++) {
data[i] = new Array();
for(var j = 0; j < 8; j++) {
data[i][j] = "axa"+i+j;
}

}

 

this.data[1][1].x=0

There is a clip of the movie named axa11 on the canvas.

But I can't control it

    This topic has been closed for replies.
    Correct answer chenjil43641795

    I've found the answer myself.

    this[data[1][1]]x=0   

     

     

    2 replies

    Legend
    January 8, 2021

    "H5"? What?

    chenjil43641795
    chenjil43641795AuthorCorrect answer
    Legend
    January 8, 2021

    I've found the answer myself.

    this[data[1][1]]x=0