vote up 0 vote down star

I want to get the top-right corner of an image in flex .... so far i can just get the x and y which are top-left by default .... sorry im a noob and if this is a dumb question

flag

3 Answers

vote up 1 vote down

Have you tried adding the image width to x?

link|flag
vote up 0 vote down

Flex supports three coordinate systems as you will find here:

  • global
  • local
  • content

Depending on how your image is laid-out you will have to use the image.x and width values and an appropriate conversion function.

link|flag
vote up 0 vote down

I'm not very involved in Flex but for flash AS2 I would do:

var top:Number
var right:Number

top = myImageObj._y
right = myImageObj._x + myImageObj._width

There might be a bit different in AS3 I think they have changed "._y" to ".Y" but I'm not sure.

Anyway the principle is the same. Use the top left and then just add the width to get the right edge

link|flag
Using AS3 syntax it would be like: top = myImageObj.y; right = myImageObj.x + myImageObj.width; – rhtx Jun 17 at 16:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.