RE: [EXTERNAL] Re: Problem with Release 0.9.9 and 0.9.10-SNAPSHOT

2022-04-19 Thread Brian Raymes
Updated and working well so far. Thank you Greg. -Original Message- From: Greg Dove Sent: Monday, April 18, 2022 8:31 PM To: Apache Royale Development Subject: Re: [EXTERNAL] Re: Problem with Release 0.9.9 and 0.9.10-SNAPSHOT I pushed some updates for events a couple of hours back. Ho

Re: ToolTip bead only if overflowing

2022-04-19 Thread Harbs
It looks like it should work. Some things to consider: 1. Do you want the tooltip class to be swappable? i.e. what about warm-up and warm-down? Posiiton bahavior? etc. 2. Do you need/want the measuring to happen on every roll-over? It’s a pretty expensive operation. My implementation only measu

RE: ToolTip bead only if overflowing

2022-04-19 Thread Maria Jose Esteve
My implementation is a little different, but it is an extension of Jewel's control and I don't know if it is the right thing to do: public class ToolTipJwExt extends org.apache.royale.jewel.beads.controls.ToolTip { public function ToolTipJwExt()

Re: ToolTip bead only if overflowing

2022-04-19 Thread Harbs
FYI, in case it’s useful here’s the implementation I have in one of my apps: private var toolTipBead:AdaptiveToolTipBead; public function get toolTip():String { return toolTipBead.toolTip; } p

RE: ToolTip bead only if overflowing

2022-04-19 Thread Yishay Weiss
Sounds good to me. From: Maria Jose Esteve Sent: Tuesday, April 19, 2022 12:54 AM To: dev@royale.apache.org Subject: ToolTip bead only if overflowing Hello, do you think a ToolTip bead that only appears if the text really overflows would be