Re: making a tooltip (for Japanese)

2008-10-24 Thread Kenji Kojima
Hi Nicolas, go stack url http://www.kenjikojima.com/runrev/handbook/download/jpTooltip.rev -- Kenji Kojima http://www.kenjikojima.com/ On Oct 23, 2008, at 12:04 AM, Nicolas Cueto wrote: Hello List, I'd like to add a tooltip with Japanese text to objects, and am looking for suggestions

Re: making a tooltip (for Japanese)

2008-10-24 Thread Nicolas Cueto
Hi Kenji, Thank you! One question: how to set the text contained in the cJpToolTip customprop of an object? I tried directly, cut and paste, and set cJpTooltip to unicode/uniencode(field text,(Japanese)), but no luck. -- Nicolas Cueto ___

Re: making a tooltip (for Japanese)

2008-10-24 Thread Kenji Kojima
Hi NicoNico-san, Did you try set the cJpTooltip of btn shikaku to unidecode(四角いボタン, utf8) from message box? Best regards, -- Kenji Kojima http://www.kenjikojima.com/ On Oct 24, 2008, at 7:04 PM, Nicolas Cueto wrote: Hi Kenji, Thank you! One question: how to set the text contained in

Re: making a tooltip (for Japanese)

2008-10-24 Thread Devin Asay
On Oct 24, 2008, at 5:04 PM, Nicolas Cueto wrote: Hi Kenji, Thank you! One question: how to set the text contained in the cJpToolTip customprop of an object? I tried directly, cut and paste, and set cJpTooltip to unicode/uniencode(field text,(Japanese)), but no luck. Nicolas, If you want

Re: making a tooltip (for Japanese)

2008-10-24 Thread Nicolas Cueto
Thanks Kenji and Devin. That worked somewhat, but not if the custom prop contains more than one line, in which case only the first line is visible in the tooltip field. -- Nicolas Cueto ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: making a tooltip (for Japanese)

2008-10-24 Thread Kenji Kojima
Hi Nicolas, Use a text field when you set the custom property that Devin wrote. set the cJptoolTip of btn whatever to unidecode(the unicodeText of fld mytext,utf8) and change the script to on setJpTooltip put the seconds into lEnterSec set the unicodeText of fld jpTooltip to

Re: making a tooltip (for Japanese)

2008-10-24 Thread Nicolas Cueto
-- these two lines were added. Adjust -4 to any number. set the height Oops. Here's me thinking I had to do some unicode stuff with end-of-line chars. Never thought it was just a height issue. Thanks again, Kenji. -- Nicolas Cueto ___

Re: making a tooltip (for Japanese)

2008-10-23 Thread Thomas McGrath III
Nicolas, Go to the Rev Online User space mcgrath3 and look at my sample tooltips stack ToolTip Tricks. It shows many ways to play with tooltips that might help. Tom McGrath III On Oct 23, 2008, at 12:04 AM, Nicolas Cueto wrote: Hello List, I'd like to add a tooltip with Japanese text

Re: making a tooltip (for Japanese)

2008-10-23 Thread Mark Schonewille
Hi Tom, If I click the Run button on the Walkthrough pane of your stack and immediately thereafter click on the Changing Tooltips tab, I get an execution error. I think that Nicolas' problem is that Rev tooltips can't display unicode. He is probably trying to make his own tooltips and

Re: making a tooltip (for Japanese)

2008-10-23 Thread Thomas McGrath III
Mark, I just noticed that error as well. It was not there before. The second pane Walkthroughs is the one that I thought might apply to Nicolas. I thought the Unicode issue in tooltips was fixed??? Regards, Tom McGrath On Oct 23, 2008, at 9:14 AM, Mark Schonewille wrote: Hi Tom, If I

Re: making a tooltip (for Japanese)

2008-10-23 Thread Thomas McGrath III
Nicolas, You might want to look at mouseLeave as well to see if the mouse left the object. Tom McGrath On Oct 23, 2008, at 12:04 AM, Nicolas Cueto wrote: The challenge for me is how to measure whether the mouse has moved or not. All I can figure out is to add a send command to the

making a tooltip (for Japanese)

2008-10-22 Thread Nicolas Cueto
Hello List, I'd like to add a tooltip with Japanese text to objects, and am looking for suggestions on how to script it. My thought is to add a script to an object which uses both mousemove to show a field (i.e.,the tooltip) and send to trigger a hide field after a few seconds. The trigger