Hi,
could someone point me how can i move my bitmap, to for example x:100, y:100 ? i tried everything, and i cant do such an easy thing my head hurts from thinking and searchingā¦
my code:
ActionScript Code:
[LEFT][COLOR=#000000]**var**[/COLOR] Bmp:BitmapData = [COLOR=#000000]**new**[/COLOR] BitmapData[COLOR=#000000]([/COLOR][COLOR=#000080]390[/COLOR], [COLOR=#000080]540[/COLOR], [COLOR=#000000]**true**[/COLOR], 0xFF000000[COLOR=#000000])[/COLOR];
[COLOR=#000000]var[/COLOR] clip = [COLOR=#0000FF]this[/COLOR].[COLOR=#0000FF]createEmptyMovieClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#FF0000]āpā[/COLOR], [COLOR=#000080]1[/COLOR][COLOR=#000000])[/COLOR];
clip.[COLOR=#0000FF]_x[/COLOR]=[COLOR=#000080]92[/COLOR];
clip.[COLOR=#0000FF]_y[/COLOR]=[COLOR=#000080]80[/COLOR];
clip.[COLOR=#000080]attachBitmap[/COLOR][COLOR=#000000]([/COLOR]Bmp, [COLOR=#000080]clip[/COLOR].[COLOR=#0000FF]getNextHighestDepth[/COLOR]COLOR=#000000[/COLOR], auto, [COLOR=#000000]true[/COLOR][COLOR=#000000])[/COLOR];
Bmp.[COLOR=#000080]draw[/COLOR]COLOR=#000000[/COLOR];
[/LEFT]
i have tried many things, like draw(mc, mymatrix) with translate properity, clip._x /_y, but everything dont want to work, always some wierd clipping occursā¦
please help and sorry for my poor english.