Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

position of a movie clip 1

Status
Not open for further replies.

renartbrazil

Technical User
Dec 12, 2003
42
0
0
US
onClipEvent (data) {
this._width = 142;
this._height = 142;
}


i have several of these that will place an image here. it makes the image that size or what ever size i want but my images are not all the same size. does anyone know of a way to have this read to a "x" "y" position instead? thank you
 
Code:
onClipEvent (data) {
    this._x = 142;
    this._y = 142;
}

Hope it helps.


Wow JT that almost looked like you knew what you were doing!
 
thank you, i had this question without being able to try what i though it was, but this looks exactly right, ty
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top