Hi, > I have next task: in the yandex map layer I need to show tooltip for > yandex map object (placemark) if mouse cursor is over the icon of the object > (mouseover event). For this I need to know where have I to move tooltip > window. But listener of this event is a yandex map object event > (internal event). And I cannot use addListener method. > > Tell me please, how to get mouse coordinate in this situation? Is this internal event a mouse event? If so you can use the coordinates given from this native event and use the "placeToPoint" method of the "qx.ui.tooltip.Tooltip" class.
Another solution would be to add a second listener to the target element using the "addListener" method of the "qx.event.Registration" class. There can be multiple listener to a DOM element without a problem. Regards, Alex ------------------------------------------------------------------------------ Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly Flex(R) Builder(TM)) enable the development of rich applications that run across multiple browsers and platforms. Download your free trials today! http://p.sf.net/sfu/adobe-dev2dev _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
