Na verdade não está correto não. Se você ler direito o que diz a documentação do comando vai ver: my_mc.loadMovie(url:String [,variables:String]) : Void variables An optional parameter specifying an HTTP method for sending or loading variables. The parameter must be the string GET or POST. If there are no variables to be sent, omit this parameter. The GET method appends the variables to the end of the URL and is used for small numbers of variables. The POST method sends the variables in a separate HTTP header and is used for long strings of variables. Ou seja, esse parâmetro serve para passar variáveis por get ou post. Da maneira como o Espartaco usou esse parâmetro... loadMovie("produtos/"+imagem, carregador); ...ele estava colocando alí o target do loadMovie. Ou seja, my_mc.loadMovie(url:String [,variables:String]) : Void é diferente de loadMovie(url:String, my_mc:MovieClip) : Void