首頁 > 專家說

flash鼠標拖動MC的代碼,AS高手進

來源:新能源網
時間:2024-08-17 10:05:47
熱度:

flash鼠標拖動MC的代碼,AS高手進【專家解說】:aa_mc.onPress = function() {if (aa_mc._width<=800 && aa_mc._hei

【專家解說】:aa_mc.onPress = function() { if (aa_mc._width<=800 && aa_mc._height<=600) { return; } this.startDrag(); }; function onMouseUp() { stopDrag(); } aa_mc.onEnterframe = function() { if ((this._x<800-this._width)) { this._x = 800-this._width; } if ((this._x>0)) { this._x = 0; } if ((this._y<600-this._height)) { this._y = 600-this._height; } if ((this._y>0)) { this._y = 0; } }; 但是必須保證MC的坐標原點在左上角